Searched refs:u128 (Results 1 - 17 of 17) sorted by relevance

/external/valgrind/memcheck/tests/vbit-test/
H A Dvbits.c79 fprintf(fp, "%016"PRIx64, v.bits.u128[1]);
80 fprintf(fp, "%016"PRIx64, v.bits.u128[0]);
82 fprintf(fp, "%016"PRIx64, v.bits.u128[0]);
83 fprintf(fp, "%016"PRIx64, v.bits.u128[1]);
117 case 128: new.bits.u128[0] = ~0ull;
118 new.bits.u128[1] = ~0ull;
144 case 128: new.bits.u128[0] = 0x0;
145 new.bits.u128[1] = 0x0;
171 case 128: return v1.bits.u128[0] == v2.bits.u128[
[all...]
H A Dvbits.h44 uint128_t u128; member in union:__anon20662::__anon20663
58 uint128_t u128; member in union:__anon20664
H A Dutil.c92 fprintf(fp, "%016"PRIx64, val.u128[1]);
93 fprintf(fp, "%016"PRIx64, val.u128[0]);
95 fprintf(fp, "%016"PRIx64, val.u128[0]);
96 fprintf(fp, "%016"PRIx64, val.u128[1]);
/external/elfutils/libdw/
H A Dlibdw_form.c47 Dwarf_Word u128; local
89 get_uleb128 (u128, valp, endp);
90 result = u128 + (valp - startp);
106 get_uleb128 (u128, valp, endp);
111 get_uleb128 (u128, valp, endp);
113 result = __libdw_form_val_len (cu, u128, valp);
H A Ddwarf_getsrclines.c436 unsigned int u128; local
617 get_uleb128 (u128, linep, lineendp);
618 advance_pc (u128);
640 get_uleb128 (u128, linep, lineendp);
641 state.file = u128;
651 get_uleb128 (u128, linep, lineendp);
652 state.column = u128;
729 get_uleb128 (u128, linep, lineendp);
/external/clang/test/Sema/
H A D128bitint.c6 typedef unsigned u128 __attribute__((__mode__(TI))); typedef
9 int a[(u128)-1 > 1LL ? 1 : -1];
/external/valgrind/none/tests/ppc32/
H A Dtest_dfp5.c41 } u128; member in union:stuff
425 test_val.u128.valu = dfp128_vals[i * 2];
426 test_val.u128.vall = dfp128_vals[(i * 2) + 1];
443 test_val.u128.valu, test_val.u128.vall,
444 result.u128.valu, result.u128.vall);
495 test_val.u128.valu = bcd128_vals[i * 2];
496 test_val.u128.vall = bcd128_vals[(i * 2) + 1];
510 test_val.u128
[all...]
H A Dtest_dfp4.c41 } u128; member in union:stuff
502 test_val.u128.valu = dfp128_vals[i * 2];
503 test_val.u128.vall = dfp128_vals[(i * 2) + 1];
525 printf("%016llx %016llx", test_val.u128.valu, test_val.u128.vall);
578 test_val1.u128.valu = dfp128_vals[test_def.targs[i].fra_idx * 2];
579 test_val1.u128.vall = dfp128_vals[(test_def.targs[i].fra_idx * 2) + 1];
580 test_val2.u128.valu = dfp128_vals[test_def.targs[i].frb_idx * 2];
581 test_val2.u128.vall = dfp128_vals[(test_def.targs[i].frb_idx * 2) + 1];
601 test_val1.u128
[all...]
/external/valgrind/none/tests/ppc64/
H A Dtest_dfp5.c41 } u128; member in union:stuff
425 test_val.u128.valu = dfp128_vals[i * 2];
426 test_val.u128.vall = dfp128_vals[(i * 2) + 1];
443 test_val.u128.valu, test_val.u128.vall,
444 result.u128.valu, result.u128.vall);
495 test_val.u128.valu = bcd128_vals[i * 2];
496 test_val.u128.vall = bcd128_vals[(i * 2) + 1];
510 test_val.u128
[all...]
H A Dtest_dfp4.c41 } u128; member in union:stuff
502 test_val.u128.valu = dfp128_vals[i * 2];
503 test_val.u128.vall = dfp128_vals[(i * 2) + 1];
525 printf("%016llx %016llx", test_val.u128.valu, test_val.u128.vall);
578 test_val1.u128.valu = dfp128_vals[test_def.targs[i].fra_idx * 2];
579 test_val1.u128.vall = dfp128_vals[(test_def.targs[i].fra_idx * 2) + 1];
580 test_val2.u128.valu = dfp128_vals[test_def.targs[i].frb_idx * 2];
581 test_val2.u128.vall = dfp128_vals[(test_def.targs[i].frb_idx * 2) + 1];
601 test_val1.u128
[all...]
/external/boringssl/src/crypto/modes/
H A Dgcm.c92 static void gcm_init_4bit(u128 Htable[16], uint64_t H[2]) {
93 u128 V;
154 static void gcm_gmult_4bit(uint64_t Xi[2], const u128 Htable[16]) {
155 u128 Z;
231 static void gcm_ghash_4bit(uint64_t Xi[2], const u128 Htable[16], const uint8_t *inp,
233 u128 Z;
309 void gcm_gmult_4bit(uint64_t Xi[2], const u128 Htable[16]);
310 void gcm_ghash_4bit(uint64_t Xi[2], const u128 Htable[16], const uint8_t *inp,
328 void gcm_init_clmul(u128 Htable[16], const uint64_t Xi[2]);
329 void gcm_gmult_clmul(uint64_t Xi[2], const u128 Htabl
[all...]
H A Dinternal.h157 typedef struct { uint64_t hi,lo; } u128; typedef in typeref:struct:__anon733
173 u128 Htable[16];
174 void (*gmult)(uint64_t Xi[2], const u128 Htable[16]);
175 void (*ghash)(uint64_t Xi[2], const u128 Htable[16], const uint8_t *inp,
/external/compiler-rt/lib/ubsan/
H A Dubsan_value.h23 __extension__ typedef unsigned __int128 u128; typedef
34 typedef u128 UIntMax;
H A Dubsan_value.cc52 return *reinterpret_cast<u128*>(Val);
/external/opencv3/3rdparty/libwebp/dsp/
H A Dupsampling_neon.c104 int16x8_t uu = vreinterpretq_s16_u16(vsubl_u8(u, u128)); \
105 int16x8_t vv = vreinterpretq_s16_u16(vsubl_u8(v, u128)); \
231 const uint8x8_t u128 = vmov_n_u8(128); \
/external/elfutils/src/
H A Dreadelf.c6705 unsigned int u128; local
6821 get_uleb128 (u128, linep, lineendp);
6822 printf (gettext (" set discriminator to %u\n"), u128);
6845 get_uleb128 (u128, linep, lineendp);
6846 advance_pc (u128);
6872 get_uleb128 (u128, linep, lineendp);
6874 (uint64_t) u128);
6882 get_uleb128 (u128, linep, lineendp);
6884 (uint64_t) u128);
6926 u128
7192 unsigned int u128; local
7442 unsigned int u128; local
[all...]
/external/boringssl/src/crypto/cipher/
H A De_aes.c265 void gcm_ghash_avx(uint64_t Xi[2], const u128 Htable[16], const uint8_t *in,

Completed in 689 milliseconds