/external/bluetooth/bluez/test/ |
D | uuidtest.c | 46 bt_uuid_t u, u2, u3, u4, u5, ub, u128; in main() local 74 if (memcmp(&u.value.u128, &i, 16) != 0) { in main() 79 if (memcmp(&ub.value.u128, &i, 16) != 0) { in main() 84 if (memcmp(&ub.value.u128, &u.value.u128, 16) != 0) { in main() 106 bt_uuid_to_uuid128(&u, &u128); in main() 130 if (u128.type != 128) { in main() 200 if (bt_uuid_cmp(&u, &u128) != 0) { in main() 205 if (bt_uuid_cmp(&ub, &u128) == 0) { in main() 214 bt_uuid_to_uuid128(&u, &u128); in main() 236 if (u128.type != 128) { in main() [all …]
|
/external/elfutils/libdw/ |
D | libdw_form.c | 67 Dwarf_Word u128; in __libdw_form_val_len() local 98 get_uleb128 (u128, valp); in __libdw_form_val_len() 99 result = u128 + (valp - saved); in __libdw_form_val_len() 131 get_uleb128 (u128, valp); in __libdw_form_val_len() 137 get_uleb128 (u128, valp); in __libdw_form_val_len() 139 result = __libdw_form_val_len (dbg, cu, u128, valp); in __libdw_form_val_len()
|
D | dwarf_getmacros.c | 92 unsigned int u128; local 107 get_uleb128 (u128, readp); 119 get_uleb128 (u128, readp); 125 u128 = 0; 138 mac.param1 = u128;
|
D | dwarf_tag.c | 101 unsigned int u128; local 103 get_uleb128 (u128, addr); 106 die->abbrev = __libdw_findabbrev (die->cu, u128);
|
D | dwarf_getattrs.c | 68 unsigned int u128; in dwarf_getattrs() local 69 get_uleb128 (u128, die_addr); in dwarf_getattrs() 73 die->abbrev = __libdw_findabbrev (die->cu, u128); in dwarf_getattrs()
|
D | dwarf_getsrclines.c | 362 unsigned int u128; in dwarf_getsrclines() local 519 get_uleb128 (u128, linep); in dwarf_getsrclines() 520 address += minimum_instr_len * u128; in dwarf_getsrclines() 538 get_uleb128 (u128, linep); in dwarf_getsrclines() 539 file = u128; in dwarf_getsrclines() 547 get_uleb128 (u128, linep); in dwarf_getsrclines() 548 column = u128; in dwarf_getsrclines() 608 get_uleb128 (u128, linep); in dwarf_getsrclines()
|
/external/bluetooth/bluez/lib/ |
D | uuid.c | 57 dst->value.u128 = bluetooth_base_uuid; in bt_uuid16_to_uuid128() 60 memcpy(&dst->value.u128.data[BASE_UUID16_OFFSET], in bt_uuid16_to_uuid128() 66 dst->value.u128 = bluetooth_base_uuid; in bt_uuid32_to_uuid128() 69 memcpy(&dst->value.u128.data[BASE_UUID32_OFFSET], in bt_uuid32_to_uuid128() 92 return memcmp(&u1->value.u128, &u2->value.u128, sizeof(uint128_t)); in bt_uuid128_cmp() 117 btuuid->value.u128 = value; in bt_uuid128_create() 160 hton128(&uuid->value.u128, &nvalue); in bt_uuid_to_string() 234 uint128_t n128, u128; in bt_string_to_uuid128() local 256 ntoh128(&n128, &u128); in bt_string_to_uuid128() 258 bt_uuid128_create(uuid, u128); in bt_string_to_uuid128()
|
D | sdp.c | 817 uint128_t u128; in sdp_gen_pdu() local 842 hton128(&d->val.uint128, &u128); in sdp_gen_pdu() 843 src = (unsigned char *) &u128; in sdp_gen_pdu() 862 hton128(&d->val.int128, &u128); in sdp_gen_pdu() 863 src = (unsigned char *) &u128; in sdp_gen_pdu()
|
/external/openssl/crypto/modes/ |
D | modes_lcl.h | 91 typedef struct { u64 hi,lo; } u128; typedef 109 u128 Htable[256]; 111 u128 Htable[16]; 112 void (*gmult)(u64 Xi[2],const u128 Htable[16]); 113 void (*ghash)(u64 Xi[2],const u128 Htable[16],const u8 *inp,size_t len);
|
D | gcm128.c | 121 static void gcm_init_8bit(u128 Htable[256], u64 H[2]) in gcm_init_8bit() 124 u128 V; in gcm_init_8bit() 137 u128 *Hi = Htable+i, H0 = *Hi; in gcm_init_8bit() 145 static void gcm_gmult_8bit(u64 Xi[2], const u128 Htable[256]) in gcm_gmult_8bit() 147 u128 Z = { 0, 0}; in gcm_gmult_8bit() 256 static void gcm_init_4bit(u128 Htable[16], u64 H[2]) in gcm_init_4bit() 258 u128 V; in gcm_init_4bit() 275 u128 *Hi = Htable+i; in gcm_init_4bit() 335 static void gcm_gmult_4bit(u64 Xi[2], const u128 Htable[16]) in gcm_gmult_4bit() 337 u128 Z; in gcm_gmult_4bit() [all …]
|
/external/clang/test/Sema/ |
D | 128bitint.c | 3 typedef unsigned u128 __attribute__((__mode__(TI))); typedef 6 int a[(u128)-1 > 1LL ? 1 : -1];
|
/external/bluetooth/bluez/lib/bluetooth/ |
D | uuid.h | 45 uint128_t u128; member
|
/external/bluetooth/bluez/attrib/ |
D | gatt.c | 82 uint128_t u128; in encode_discover_primary() local 93 htob128(&uuid->value.u128, &u128); in encode_discover_primary() 94 value = &u128; in encode_discover_primary() 95 vlen = sizeof(u128); in encode_discover_primary()
|
D | att.h | 218 att_put_u128(src.value.u128, dst); in att_put_uuid128()
|
/external/elfutils/src/ |
D | readelf.c | 4715 unsigned int u128; in print_debug_line_section() local 4829 get_uleb128 (u128, linep); in print_debug_line_section() 4830 address += minimum_instr_len * u128; in print_debug_line_section() 4834 u128, a); in print_debug_line_section() 4851 get_uleb128 (u128, linep); in print_debug_line_section() 4853 (uint64_t) u128); in print_debug_line_section() 4861 get_uleb128 (u128, linep); in print_debug_line_section() 4863 (uint64_t) u128); in print_debug_line_section() 4880 u128 = (minimum_instr_len in print_debug_line_section() 4882 address += u128; in print_debug_line_section() [all …]
|