Home
last modified time | relevance | path

Searched refs:u32 (Results 1 – 25 of 660) sorted by relevance

12345678910>>...27

/external/wpa_supplicant_8/src/pae/
Dieee802_1x_kay_i.h41 u32 mn;
47 u32 mn;
76 u32 next_pn;
107 u32 next_pn; /* PN nextPN (read only) */
138 u32 next_pn; /* PN nextPN (read only) */
139 u32 lowest_pn; /* PN lowestPN (read only) */
155 u32 index;
223 u32 mn;
237 u32 retry_count;
244 u32 type:8;
[all …]
Dieee802_1x_kay.h30 u32 kn;
63 int (*set_replay_protect)(void *ctx, Boolean enabled, u32 window);
66 int (*get_receive_lowest_pn)(void *ctx, u32 channel, u8 an,
67 u32 *lowest_pn);
68 int (*get_transmit_next_pn)(void *ctx, u32 channel, u8 an,
69 u32 *next_pn);
70 int (*set_transmit_next_pn)(void *ctx, u32 channel, u8 an, u32 next_pn);
71 int (*get_available_receive_sc)(void *ctx, u32 *channel);
72 int (*create_receive_sc)(void *ctx, u32 channel,
76 int (*delete_receive_sc)(void *ctx, u32 channel);
[all …]
/external/f2fs-tools/fsck/
Dfsck.h18 u32 nr_inodes;
19 u32 *ino_list;
28 u32 valid_nat_entry_cnt;
29 u32 valid_node_cnt;
30 u32 valid_inode_cnt;
31 u32 multi_hard_link_files;
33 u32 sit_free_segs;
34 u32 free_segs;
45 u32 nat_area_bitmap_sz;
46 u32 sit_area_bitmap_sz;
[all …]
/external/blktrace/
Djhash.h58 static inline u32 jhash(const void *key, u32 length, u32 initval) in jhash()
60 u32 a,b,c; in jhash()
68 a += (k[0] + ((u32)k[1]<<8) + ((u32)k[2]<<16) + ((u32)k[3]<<24)); in jhash()
69 b += (k[4] + ((u32)k[5]<<8) + ((u32)k[6]<<16) + ((u32)k[7]<<24)); in jhash()
70 c += (k[8] + ((u32)k[9]<<8) + ((u32)k[10]<<16) + ((u32)k[11]<<24)); in jhash()
79 case 12: c += (u32)k[11]<<24; in jhash()
80 case 11: c += (u32)k[10]<<16; in jhash()
81 case 10: c += (u32)k[9]<<8; in jhash()
83 case 8 : b += (u32)k[7]<<24; in jhash()
84 case 7 : b += (u32)k[6]<<16; in jhash()
[all …]
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_thread_registry.h36 explicit ThreadContextBase(u32 tid);
39 const u32 tid; // Thread ID. Main thread should have tid = 0.
41 u32 reuse_count; // Number of times this tid was reused.
49 u32 parent_tid;
59 u32 _parent_tid, void *arg);
74 typedef ThreadContextBase* (*ThreadContextFactory)(u32 tid);
78 static const u32 kUnknownTid;
80 ThreadRegistry(ThreadContextFactory factory, u32 max_threads,
81 u32 thread_quarantine_size, u32 max_reuse = 0);
91 ThreadContextBase *GetThreadLocked(u32 tid) { in GetThreadLocked()
[all …]
Dsanitizer_stackdepot.cc23 u32 id;
25 u32 size;
26 u32 tag;
29 static const u32 kTabSizeLog = 20;
32 static const u32 kUseCountBits = kTabSizeLog;
33 static const u32 kMaxUseCount = 1 << kUseCountBits;
34 static const u32 kUseCountMask = (1 << kUseCountBits) - 1;
35 static const u32 kHashMask = ~kUseCountMask;
38 bool eq(u32 hash, const args_type &args) const { in eq()
39 u32 hash_bits = in eq()
[all …]
/external/llvm/test/CodeGen/NVPTX/
Dlocal-stack-frame.ll6 ; PTX32: mov.u32 %SPL, __local_depot{{[0-9]+}};
7 ; PTX32: cvta.local.u32 %SP, %SPL;
8 ; PTX32: ld.param.u32 %r{{[0-9]+}}, [foo_param_0];
9 ; PTX32: st.volatile.u32 [%SP+0], %r{{[0-9]+}};
12 ; PTX64: ld.param.u32 %r{{[0-9]+}}, [foo_param_0];
13 ; PTX64: st.volatile.u32 [%SP+0], %r{{[0-9]+}};
20 ; PTX32: mov.u32 %SPL, __local_depot{{[0-9]+}};
21 ; PTX32: cvta.local.u32 %SP, %SPL;
22 ; PTX32: ld.param.u32 %r{{[0-9]+}}, [foo2_param_0];
23 ; PTX32: add.u32 %r[[SP_REG:[0-9]+]], %SPL, 0;
[all …]
Daddrspacecast.ll7 ; PTX32: cvta.global.u32
8 ; PTX32: ld.u32
11 ; PTX64: ld.u32
19 ; PTX32: cvta.shared.u32
20 ; PTX32: ld.u32
23 ; PTX64: ld.u32
31 ; PTX32: cvta.const.u32
32 ; PTX32: ld.u32
35 ; PTX64: ld.u32
43 ; PTX32: cvta.local.u32
[all …]
/external/compiler-rt/lib/msan/
Dmsan_chained_origin_depot.cc20 u32 here_id;
21 u32 prev_id;
26 u32 id;
27 u32 here_id;
28 u32 prev_id;
32 bool eq(u32 hash, const args_type &args) const { in eq()
53 static u32 hash(const args_type &args) { in hash()
54 const u32 m = 0x5bd1e995; in hash()
55 const u32 seed = 0x9747b28c; in hash()
56 const u32 r = 24; in hash()
[all …]
Dmsan_origin.h57 static bool isValidId(u32 id) { return id != 0 && id != (u32)-1; } in isValidId()
59 u32 raw_id() const { return raw_id_; } in raw_id()
72 u32 getChainedId() const { in getChainedId()
76 u32 getStackId() const { in getStackId()
80 u32 getHeapId() const { in getHeapId()
88 u32 prev_id; in getNextChainedOrigin()
89 u32 stack_id = ChainedOriginDepotGet(getChainedId(), &prev_id); in getNextChainedOrigin()
98 static Origin CreateStackOrigin(u32 id) { in CreateStackOrigin()
104 u32 stack_id = StackDepotPut(*stack); in CreateHeapOrigin()
131 u32 chained_id; in CreateChainedOrigin()
[all …]
Dmsan_interface_internal.h41 void __msan_maybe_warning_1(u8 s, u32 o);
43 void __msan_maybe_warning_2(u16 s, u32 o);
45 void __msan_maybe_warning_4(u32 s, u32 o);
47 void __msan_maybe_warning_8(u64 s, u32 o);
50 void __msan_maybe_store_origin_1(u8 s, void *p, u32 o);
52 void __msan_maybe_store_origin_2(u16 s, void *p, u32 o);
54 void __msan_maybe_store_origin_4(u32 s, void *p, u32 o);
56 void __msan_maybe_store_origin_8(u64 s, void *p, u32 o);
89 void __msan_set_origin(const void *a, uptr size, u32 origin);
95 u32 __msan_chain_origin(u32 id);
[all …]
Dmsan_poisoning.cc26 u32 GetOriginIfPoisoned(uptr addr, uptr size) { in GetOriginIfPoisoned()
29 if (s[i]) return *(u32 *)SHADOW_TO_ORIGIN(((uptr)s + i) & ~3UL); in GetOriginIfPoisoned()
34 u32 src_origin) { in SetOriginIfPoisoned()
40 if (*(u8 *)src_s) *(u32 *)SHADOW_TO_ORIGIN(dst_s & ~3UL) = src_origin; in SetOriginIfPoisoned()
51 u32 o = GetOriginIfPoisoned((uptr)src, d - beg); in CopyOrigin()
54 *(u32 *)MEM_TO_ORIGIN(beg) = o; in CopyOrigin()
65 u32 o = GetOriginIfPoisoned((uptr)src + (end - d), (d + size) - end); in CopyOrigin()
68 *(u32 *)MEM_TO_ORIGIN(end) = o; in CopyOrigin()
77 u32 *src = (u32 *)MEM_TO_ORIGIN(s); in CopyOrigin()
78 u32 *src_s = (u32 *)MEM_TO_SHADOW(s); in CopyOrigin()
[all …]
/external/llvm/test/MC/ARM/
Dneon-convert-encoding.s5 @ CHECK: vcvt.u32.f32 d16, d16 @ encoding: [0xa0,0x07,0xfb,0xf3]
6 vcvt.u32.f32 d16, d16
9 @ CHECK: vcvt.f32.u32 d16, d16 @ encoding: [0xa0,0x06,0xfb,0xf3]
10 vcvt.f32.u32 d16, d16
13 @ CHECK: vcvt.u32.f32 q8, q8 @ encoding: [0xe0,0x07,0xfb,0xf3]
14 vcvt.u32.f32 q8, q8
17 @ CHECK: vcvt.f32.u32 q8, q8 @ encoding: [0xe0,0x06,0xfb,0xf3]
18 vcvt.f32.u32 q8, q8
23 @ CHECK: vcvt.u32.f32 d16, d16, #1 @ encoding: [0x30,0x0f,0xff,0xf3]
24 vcvt.u32.f32 d16, d16, #1
[all …]
Dneont2-cmp-encoding.s7 @ CHECK: vcvt.u32.f32 d16, d16 @ encoding: [0xfb,0xff,0xa0,0x07]
8 vcvt.u32.f32 d16, d16
11 @ CHECK: vcvt.f32.u32 d16, d16 @ encoding: [0xfb,0xff,0xa0,0x06]
12 vcvt.f32.u32 d16, d16
15 @ CHECK: vcvt.u32.f32 q8, q8 @ encoding: [0xfb,0xff,0xe0,0x07]
16 vcvt.u32.f32 q8, q8
19 @ CHECK: vcvt.f32.u32 q8, q8 @ encoding: [0xfb,0xff,0xe0,0x06]
20 vcvt.f32.u32 q8, q8
23 @ CHECK: vcvt.u32.f32 d16, d16, #1 @ encoding: [0xff,0xff,0x30,0x0f]
24 vcvt.u32.f32 d16, d16, #1
[all …]
Dneont2-convert-encoding.s7 @ CHECK: vcvt.u32.f32 d16, d16 @ encoding: [0xfb,0xff,0xa0,0x07]
8 vcvt.u32.f32 d16, d16
11 @ CHECK: vcvt.f32.u32 d16, d16 @ encoding: [0xfb,0xff,0xa0,0x06]
12 vcvt.f32.u32 d16, d16
15 @ CHECK: vcvt.u32.f32 q8, q8 @ encoding: [0xfb,0xff,0xe0,0x07]
16 vcvt.u32.f32 q8, q8
19 @ CHECK: vcvt.f32.u32 q8, q8 @ encoding: [0xfb,0xff,0xe0,0x06]
20 vcvt.f32.u32 q8, q8
23 @ CHECK: vcvt.u32.f32 d16, d16, #1 @ encoding: [0xff,0xff,0x30,0x0f]
24 vcvt.u32.f32 d16, d16, #1
[all …]
/external/wpa_supplicant_8/src/crypto/
Ddes-internal.c49 static const u32 bytebit[8] =
54 static const u32 bigbyte[24] =
88 static const u32 SP1[64] =
108 static const u32 SP2[64] =
128 static const u32 SP3[64] =
148 static const u32 SP4[64] =
168 static const u32 SP5[64] =
188 static const u32 SP6[64] =
208 static const u32 SP7[64] =
228 static const u32 SP8[64] =
[all …]
Daes_i.h17 extern const u32 Te0[256];
18 extern const u32 Te1[256];
19 extern const u32 Te2[256];
20 extern const u32 Te3[256];
21 extern const u32 Te4[256];
22 extern const u32 Td0[256];
23 extern const u32 Td1[256];
24 extern const u32 Td2[256];
25 extern const u32 Td3[256];
26 extern const u32 Td4[256];
[all …]
Daes-internal.c64 const u32 Te0[256] = {
131 const u32 Te1[256] = {
197 const u32 Te2[256] = {
263 const u32 Te3[256] = {
330 const u32 Te4[256] = {
397 const u32 Td0[256] = {
464 const u32 Td1[256] = {
530 const u32 Td2[256] = {
597 const u32 Td3[256] = {
663 const u32 Td4[256] = {
[all …]
/external/boringssl/src/crypto/poly1305/
Dpoly1305_arm_asm.S463 # asm 1: vmlal.u32 <r4=reg128#16,<x01=reg128#9%bot,<z34=reg128#6%top
464 # asm 2: vmlal.u32 <r4=q15,<x01=d16,<z34=d11
465 vmlal.u32 q15,d16,d11
478 # asm 1: vmlal.u32 <r4=reg128#16,<x01=reg128#9%top,<z34=reg128#6%bot
479 # asm 2: vmlal.u32 <r4=q15,<x01=d17,<z34=d10
480 vmlal.u32 q15,d17,d10
493 # asm 1: vmlal.u32 <r4=reg128#16,<x23=reg128#10%bot,<z12=reg128#3%top
494 # asm 2: vmlal.u32 <r4=q15,<x23=d18,<z12=d5
495 vmlal.u32 q15,d18,d5
503 # asm 1: vmlal.u32 <r4=reg128#16,<x23=reg128#10%top,<z12=reg128#3%bot
[all …]
/external/libnfc-nci/src/hal/include/
Dnfc_types.h54 … UINT32_TO_STREAM(p, u32) {*(p)++ = (UINT8)(u32); *(p)++ = (UINT8)((u32) >> 8); *(p)++ = (UINT8)(( argument
70 #define STREAM_TO_UINT24(u32, p) {u32 = (((UINT32)(*(p))) + ((((UINT32)(*((p) + 1)))) << 8) + ((((U… argument
71 #define STREAM_TO_UINT32(u32, p) {u32 = (((UINT32)(*(p))) + ((((UINT32)(*((p) + 1)))) << 8) + ((((U… argument
86u32) {*(UINT8 *)(p) = (UINT8)(u32); *((UINT8 *)(p)+1) = (UINT8)((u32) >> 8); *((UINT8 *)(p)+2) = … argument
96 …_TO_BE_STREAM(p, u32) {*(p)++ = (UINT8)((u32) >> 24); *(p)++ = (UINT8)((u32) >> 16); *(p)++ = (UI… argument
104 #define BE_STREAM_TO_UINT24(u32, p) {u32 = (((UINT32)(*((p) + 2))) + ((UINT32)(*((p) + 1)) << 8) + … argument
105 #define BE_STREAM_TO_UINT32(u32, p) {u32 = ((UINT32)(*((p) + 3)) + ((UINT32)(*((p) + 2)) << 8) + ((… argument
114u32) {*(UINT8 *)(p) = (UINT8)((u32) >> 24); *((UINT8 *)(p)+1) = (UINT8)((u32) >> 16); *((UINT8 *)… argument
/external/neven/FaceRecEm/common/src/b_FDSDK/
DDCR.h64 u32 reserved;
90 u32 widthA,
91 u32 heightA );
97 u32 widthA,
98 u32 heightA );
104 u32 widthA,
105 u32 heightA,
114 u32 widthA,
115 u32 heightA,
125 u32 btk_DCR_nodeCount( btk_HDCR hdcrA );
[all …]
/external/libhevc/common/arm/
Dihevc_inter_pred_chroma_horz.s161 vld1.u32 {q0},[r12],r11 @vector load pu1_src
163 vld1.u32 {q1},[r12],r11 @vector load pu1_src
165 vld1.u32 {q2},[r12],r11 @vector load pu1_src
167 vld1.u32 {q3},[r12],r9 @vector load pu1_src
171 vld1.u32 {q4},[r4],r11 @vector load pu1_src
173 vld1.u32 {q5},[r4],r11 @vector load pu1_src
175 vld1.u32 {q6},[r4],r11 @vector load pu1_src
177 vld1.u32 {q7},[r4],r9 @vector load pu1_src
218 vld1.u32 {q0},[r12],r11 @vector load pu1_src
222 vld1.u32 {q1},[r12],r11 @vector load pu1_src
[all …]
Dihevc_inter_pred_chroma_horz_w16out.s178 vld1.u32 {q0},[r12],r11 @vector load pu1_src
181 vld1.u32 {q1},[r12],r11 @vector load pu1_src
184 vld1.u32 {q2},[r12],r11 @vector load pu1_src
187 vld1.u32 {q3},[r12],r9 @vector load pu1_src
191 vld1.u32 {q4},[r4],r11 @vector load pu1_src
193 vld1.u32 {q5},[r4],r11 @vector load pu1_src
195 vld1.u32 {q6},[r4],r11 @vector load pu1_src
197 vld1.u32 {q7},[r4],r9 @vector load pu1_src
238 vld1.u32 {q0},[r12],r11 @vector load pu1_src
244 vld1.u32 {q1},[r12],r11 @vector load pu1_src
[all …]
/external/wpa_supplicant_8/src/radius/
Dradius_client.h64 u32 requests;
69 u32 retransmissions;
74 u32 access_accepts;
79 u32 access_rejects;
84 u32 access_challenges;
89 u32 responses;
94 u32 malformed_responses;
99 u32 bad_authenticators;
104 u32 timeouts;
109 u32 unknown_types;
[all …]
/external/libavc/common/arm/
Dih264_inter_pred_luma_vert_qpel_a9q.s129 vld1.u32 {q0}, [r0], r2 @ Vector load from src[0_0]
130 vld1.u32 {q1}, [r0], r2 @ Vector load from src[1_0]
131 vld1.u32 {q2}, [r0], r2 @ Vector load from src[2_0]
132 vld1.u32 {q3}, [r0], r2 @ Vector load from src[3_0]
133 vld1.u32 {q4}, [r0], r2 @ Vector load from src[4_0]
135 vld1.u32 {q5}, [r0], r2 @ Vector load from src[5_0]
142 vld1.u32 {q0}, [r0], r2
154 vld1.u32 {q1}, [r0], r2
158 vld1.u32 {q10}, [r7], r2 @ Load for interpolation row 0
163 vst1.u32 {q15}, [r1], r3 @ Vector store to dst[0_0]
[all …]

12345678910>>...27