Searched defs:round (Results 1 - 6 of 6) sorted by relevance
/system/bt/stack/smp/ |
H A D | smp_cmac.c | 39 UINT16 round; member in struct:__anon1274 144 while (i <= cmac_cb.round) 146 smp_xor_128(&cmac_cb.text[(cmac_cb.round - i)*BT_OCTET16_LEN], x); /* Mi' := Mi (+) X */ 148 if (!SMP_Encrypt(key, BT_OCTET16_LEN, &cmac_cb.text[(cmac_cb.round - i)*BT_OCTET16_LEN], BT_OCTET16_LEN, &output)) 194 SMP_TRACE_WARNING("flag = %d round = %d", flag, cmac_cb.round); 310 cmac_cb.round = n;
|
H A D | smp_utils.c | 1321 ** (if bit["round"] in "random" array == 1 then returns 0x81 1327 UINT8 smp_calculate_random_input(UINT8 *random, UINT8 round) argument 1329 UINT8 i = round/8; 1330 UINT8 j = round%8; 1333 SMP_TRACE_DEBUG("random: 0x%02x, round: %d, i: %d, j: %d", random[i], round, i, j);
|
H A D | smp_int.h | 317 UINT8 round; /* authentication stage 1 round for passkey association model */ member in struct:__anon1282 491 extern UINT8 smp_calculate_random_input(UINT8 *random, UINT8 round);
|
/system/core/libpixelflinger/include/private/pixelflinger/ |
H A D | ggl_fixed.h | 468 GGLfixed round; local 470 asm("mov %x[round], #1 \n" 471 "lsl %x[round], %x[round], %x[shift] \n" 472 "lsr %x[round], %x[round], #1 \n" 473 "smaddl %x[result], %w[x], %w[y],%x[round] \n" 475 : [round]"=&r"(round), [result]"=&r"(result) \
|
/system/core/libpixelflinger/codeflinger/ |
H A D | texturing.cpp | 800 const int round = 0; local 833 if (round) 848 if (round) 862 if (round) 894 const int round = 0; local 922 if (round) 938 if (round) 953 if (round)
|
/system/core/libpixelflinger/ |
H A D | pixelflinger.cpp | 230 // it is very important to round the iterated value here because 234 const int32_t round = 0x8000; local 235 c->shade.r0 = grad[ 0] + round; 238 c->shade.g0 = grad[ 3] + round; 241 c->shade.b0 = grad[ 6] + round; 244 c->shade.a0 = grad[ 9] + round; 254 const uint32_t round = 0x8000; local 255 c->shade.z0 = grad[0] + round;
|
Completed in 196 milliseconds