Symbol: get_u8
crypto/aria_generic.c
225
reg0 = key[rkidx][0] ^ make_u32((u8)(x1[get_u8(reg0, 0)]),
crypto/aria_generic.c
226
(u8)(x2[get_u8(reg0, 1)] >> 8),
crypto/aria_generic.c
227
(u8)(s1[get_u8(reg0, 2)]),
crypto/aria_generic.c
228
(u8)(s2[get_u8(reg0, 3)]));
crypto/aria_generic.c
229
reg1 = key[rkidx][1] ^ make_u32((u8)(x1[get_u8(reg1, 0)]),
crypto/aria_generic.c
230
(u8)(x2[get_u8(reg1, 1)] >> 8),
crypto/aria_generic.c
231
(u8)(s1[get_u8(reg1, 2)]),
crypto/aria_generic.c
232
(u8)(s2[get_u8(reg1, 3)]));
crypto/aria_generic.c
233
reg2 = key[rkidx][2] ^ make_u32((u8)(x1[get_u8(reg2, 0)]),
crypto/aria_generic.c
234
(u8)(x2[get_u8(reg2, 1)] >> 8),
crypto/aria_generic.c
235
(u8)(s1[get_u8(reg2, 2)]),
crypto/aria_generic.c
236
(u8)(s2[get_u8(reg2, 3)]));
crypto/aria_generic.c
237
reg3 = key[rkidx][3] ^ make_u32((u8)(x1[get_u8(reg3, 0)]),
crypto/aria_generic.c
238
(u8)(x2[get_u8(reg3, 1)] >> 8),
crypto/aria_generic.c
239
(u8)(s1[get_u8(reg3, 2)]),
crypto/aria_generic.c
240
(u8)(s2[get_u8(reg3, 3)]));
drivers/gpu/drm/amd/include/atom-bits.h
32
#define U8(ptr) get_u8(ctx->ctx->bios, (ptr))
drivers/gpu/drm/amd/include/atom-bits.h
33
#define CU8(ptr) get_u8(ctx->bios, (ptr))
drivers/gpu/drm/amd/include/atom-bits.h
36
return get_u8(bios, ptr)|(((uint16_t)get_u8(bios, ptr+1))<<8);
drivers/gpu/drm/radeon/atom-bits.h
32
#define U8(ptr) get_u8(ctx->ctx->bios, (ptr))
drivers/gpu/drm/radeon/atom-bits.h
33
#define CU8(ptr) get_u8(ctx->bios, (ptr))
drivers/gpu/drm/radeon/atom-bits.h
36
return get_u8(bios, ptr)|(((uint16_t)get_u8(bios, ptr+1))<<8);
drivers/hid/bpf/progs/Wacom__ArtPen.bpf.c
124
tip_switch = get_u8(data, params.offsets.tip_switch);
include/crypto/aria.h
346
*t0 = s1[get_u8(*t0, 0)] ^
include/crypto/aria.h
347
s2[get_u8(*t0, 1)] ^
include/crypto/aria.h
348
x1[get_u8(*t0, 2)] ^
include/crypto/aria.h
349
x2[get_u8(*t0, 3)];
include/crypto/aria.h
350
*t1 = s1[get_u8(*t1, 0)] ^
include/crypto/aria.h
351
s2[get_u8(*t1, 1)] ^
include/crypto/aria.h
352
x1[get_u8(*t1, 2)] ^
include/crypto/aria.h
353
x2[get_u8(*t1, 3)];
include/crypto/aria.h
354
*t2 = s1[get_u8(*t2, 0)] ^
include/crypto/aria.h
355
s2[get_u8(*t2, 1)] ^
include/crypto/aria.h
356
x1[get_u8(*t2, 2)] ^
include/crypto/aria.h
357
x2[get_u8(*t2, 3)];
include/crypto/aria.h
358
*t3 = s1[get_u8(*t3, 0)] ^
include/crypto/aria.h
359
s2[get_u8(*t3, 1)] ^
include/crypto/aria.h
360
x1[get_u8(*t3, 2)] ^
include/crypto/aria.h
361
x2[get_u8(*t3, 3)];
include/crypto/aria.h
368
*t0 = x1[get_u8(*t0, 0)] ^
include/crypto/aria.h
369
x2[get_u8(*t0, 1)] ^
include/crypto/aria.h
370
s1[get_u8(*t0, 2)] ^
include/crypto/aria.h
371
s2[get_u8(*t0, 3)];
include/crypto/aria.h
372
*t1 = x1[get_u8(*t1, 0)] ^
include/crypto/aria.h
373
x2[get_u8(*t1, 1)] ^
include/crypto/aria.h
374
s1[get_u8(*t1, 2)] ^
include/crypto/aria.h
375
s2[get_u8(*t1, 3)];
include/crypto/aria.h
376
*t2 = x1[get_u8(*t2, 0)] ^
include/crypto/aria.h
377
x2[get_u8(*t2, 1)] ^
include/crypto/aria.h
378
s1[get_u8(*t2, 2)] ^
include/crypto/aria.h
379
s2[get_u8(*t2, 3)];
include/crypto/aria.h
380
*t3 = x1[get_u8(*t3, 0)] ^
include/crypto/aria.h
381
x2[get_u8(*t3, 1)] ^
include/crypto/aria.h
382
s1[get_u8(*t3, 2)] ^
include/crypto/aria.h
383
s2[get_u8(*t3, 3)];
tools/testing/selftests/net/ioam6_parser.c
1025
get_u8(&tr_size, argv[6], 0) ||