Home
last modified time | relevance | path

Searched refs:used (Results 1 - 25 of 783) sorted by relevance

12345678910>>...32

/third_party/wpa_supplicant/wpa_supplicant-2.9/src/tls/
H A Dlibtommath.c127 int used, alloc, sign; member
133 #define mp_iszero(a) (((a)->used == 0) ? MP_YES : MP_NO)
134 #define mp_iseven(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 0)) ? MP_YES : MP_NO)
135 #define mp_isodd(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 1)) ? MP_YES : MP_NO)
139 #define s_mp_mul(a, b, c) s_mp_mul_digs(a, b, c, (a)->used + (b)->used + 1)
201 /* reverse an array, used for radix code */
228 if (a->used > b->used) { in s_mp_add()
229 min = b->used; in s_mp_add()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/tls/
H A Dlibtommath.c127 int used, alloc, sign; member
133 #define mp_iszero(a) (((a)->used == 0) ? MP_YES : MP_NO)
134 #define mp_iseven(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 0)) ? MP_YES : MP_NO)
135 #define mp_isodd(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 1)) ? MP_YES : MP_NO)
139 #define s_mp_mul(a, b, c) s_mp_mul_digs(a, b, c, (a)->used + (b)->used + 1)
201 /* reverse an array, used for radix code */
228 if (a->used > b->used) { in s_mp_add()
229 min = b->used; in s_mp_add()
[all...]
/third_party/lwip/test/unit/core/
H A Dtest_mem.c40 fail_unless(lwip_stats.mem.used == 0); in START_TEST()
44 fail_unless(lwip_stats.mem.used >= SIZE1); in START_TEST()
45 s1 = lwip_stats.mem.used; in START_TEST()
49 fail_unless(lwip_stats.mem.used >= SIZE2 + s1); in START_TEST()
50 s2 = lwip_stats.mem.used; in START_TEST()
55 fail_unless(lwip_stats.mem.used <= s2 - SIZE2); in START_TEST()
58 fail_unless(lwip_stats.mem.used == 0); in START_TEST()
100 fail_unless(lwip_stats.mem.used == 0); in START_TEST()
105 fail_unless(lwip_stats.mem.used == 0); in START_TEST()
107 fail_unless(lwip_stats.mem.used in START_TEST()
[all...]
/third_party/mesa3d/src/mesa/main/
H A Dglthread.c51 unsigned used = batch->used; in glthread_unmarshal_batch() local
53 const uint64_t *last = &buffer[used]; in glthread_unmarshal_batch()
62 while (pos < used) { in glthread_unmarshal_batch()
74 assert(pos == used); in glthread_unmarshal_batch()
75 batch->used = 0; in glthread_unmarshal_batch()
124 glthread->used = 0; in _mesa_glthread_init()
200 if (!glthread->used) in _mesa_glthread_flush_batch()
238 p_atomic_add(&glthread->stats.num_offloaded_items, glthread->used); in _mesa_glthread_flush_batch()
239 next->used in _mesa_glthread_flush_batch()
[all...]
/third_party/lwip/test/unit/arch/
H A Dsys_arch.c13 * 3. The name of the author may not be used to endorse or promote products
221 mbox->used = 0; in sys_mbox_new()
255 LWIP_ASSERT("q->used >= 0", q->used >= 0); in sys_mbox_post()
258 LWIP_ASSERT("mbox already full", q->used < q->size); in sys_mbox_post()
266 q->used++; in sys_mbox_post()
275 LWIP_ASSERT("q->used >= 0", q->used >= 0); in sys_mbox_trypost()
277 LWIP_ASSERT("q->used <= q->size", q->used < in sys_mbox_trypost()
[all...]
/third_party/lwip/src/core/
H A Dmem.c35 * 3. The name of the author may not be used to endorse or promote products
156 /** mem_init is not used when using pools instead of a heap or using
164 /** mem_trim is not used when using pools instead of a heap or using
217 MEM_STATS_INC_USED_LOCKED(used, size); in mem_malloc()
234 MEM_STATS_DEC_USED_LOCKED(used, *(mem_size_t *)rmem); in mem_free()
291 MEM_STATS_INC_USED_LOCKED(used, element->size); in mem_malloc()
323 MEM_STATS_DEC_USED_LOCKED(used, hmem->size); in mem_free()
354 /** 1: this area is used; 0: this area is unused */
355 u8_t used; member
420 /** pointer to the lowest free block, this is used fo
[all...]
/third_party/toybox/toys/pending/
H A Dklogd.c62 * "used" amount to track next read to start.
66 int prio, size, used = 0; in klogd_main() local
83 start = msg_buffer + used; //start updated for re-read. in klogd_main()
85 size = klogctl(2, start, sizeof(msg_buffer) - used - 1); in klogd_main()
87 size = xread(TT.fd, start, sizeof(msg_buffer) - used - 1); in klogd_main()
91 if (used) start = msg_buffer; in klogd_main()
93 if ((line_start = strsep(&start, "\n")) != NULL && start != NULL) used = 0; in klogd_main()
95 used = strlen(line_start); in klogd_main()
97 if (used < (sizeof(msg_buffer) - 1)) break; in klogd_main()
98 used in klogd_main()
[all...]
/third_party/libsnd/src/
H A Dchunk.c48 idx = pchk->used > 0 ? 0 : -1 ; in psf_get_chunk_iterator()
95 { for (k = iterator->current ; k < pchk->used ; k++) in psf_next_chunk_iterator()
101 else if (iterator->current < pchk->used) in psf_next_chunk_iterator()
112 { pchk->used = 0 ; in psf_store_read_chunk()
119 else if (pchk->used > pchk->count) in psf_store_read_chunk()
121 else if (pchk->used == pchk->count) in psf_store_read_chunk()
133 pchk->chunks [pchk->used] = *rchunk ; in psf_store_read_chunk()
135 pchk->used ++ ; in psf_store_read_chunk()
170 for (k = 0 ; k < pchk->used ; k++) in psf_find_read_chunk_str()
181 for (k = 0 ; k < pchk->used ; in psf_find_read_chunk_m32()
[all...]
/third_party/mesa3d/src/gallium/auxiliary/pipebuffer/
H A Dpb_validate.c59 unsigned used; member
95 if(vl->used == vl->size) { in pb_validate_add_buffer()
115 assert(!vl->entries[vl->used].buf); in pb_validate_add_buffer()
116 pb_reference(&vl->entries[vl->used].buf, buf); in pb_validate_add_buffer()
117 vl->entries[vl->used].flags = flags; in pb_validate_add_buffer()
118 ++vl->used; in pb_validate_add_buffer()
121 _mesa_hash_table_insert(ht, buf, (void *) (uintptr_t) vl->used); in pb_validate_add_buffer()
133 for(i = 0; i < vl->used; ++i) { in pb_validate_foreach()
148 for(i = 0; i < vl->used; ++i) { in pb_validate_validate()
167 for(i = 0; i < vl->used; in pb_validate_fence()
[all...]
/third_party/typescript/tests/baselines/reference/
H A DunusedLocalsinConstructor2.js5 var used = "dummy"; variable
6 used = used + "second part";
14 var used = "dummy";
15 used = used + "second part";
/third_party/mesa3d/src/gallium/winsys/svga/drm/
H A Dvmw_context.c110 uint32_t used; member
117 uint32_t used; member
125 uint32_t used; member
133 uint32_t used; member
217 for(i = 0; i < vswc->region.used; ++i) { in vmw_swc_flush()
238 if (vswc->command.used || pfence != NULL) in vmw_swc_flush()
243 vswc->command.used, in vmw_swc_flush()
254 vswc->command.used = 0; in vmw_swc_flush()
257 for(i = 0; i < vswc->surface.used + vswc->surface.staged; ++i) { in vmw_swc_flush()
265 vswc->surface.used in vmw_swc_flush()
[all...]
/third_party/node/deps/openssl/openssl/crypto/bn/
H A Dbn_ctx.c35 unsigned used, size; member
69 unsigned int used; member
90 while (bnidx < ctx->used) { in ctxdbg()
188 else if (!BN_STACK_push(&ctx->stack, ctx->used)) { in BN_CTX_start()
205 if (fp < ctx->used) in BN_CTX_end()
206 BN_POOL_release(&ctx->pool, ctx->used - fp); in BN_CTX_end()
207 ctx->used = fp; in BN_CTX_end()
234 ctx->used++; in BN_CTX_get()
297 p->used = p->size = 0; in BN_POOL_init()
322 if (p->used in BN_POOL_get()
[all...]
/third_party/openssl/crypto/bn/
H A Dbn_ctx.c35 unsigned used, size; member
69 unsigned int used; member
90 while (bnidx < ctx->used) { in ctxdbg()
188 else if (!BN_STACK_push(&ctx->stack, ctx->used)) { in BN_CTX_start()
205 if (fp < ctx->used) in BN_CTX_end()
206 BN_POOL_release(&ctx->pool, ctx->used - fp); in BN_CTX_end()
207 ctx->used = fp; in BN_CTX_end()
234 ctx->used++; in BN_CTX_get()
297 p->used = p->size = 0; in BN_POOL_init()
322 if (p->used in BN_POOL_get()
[all...]
/third_party/rust/crates/bindgen/bindgen/ir/analysis/
H A Dtemplate_params.rs1 //! Discover which template type parameters are actually used.
39 //! Given that we have to properly track which template parameters ended up used
44 //! ### How do we determine which template parameters are used?
46 //! Determining which template parameters are actually used is a trickier
57 //! It gets harder when determining if one template parameter is used depends on
58 //! determining if another template parameter is used. In this example, whether
59 //! `U` is used depends on whether `T` is used.
73 //! We can express the set of used template parameters as a constraint solving
74 //! problem (where the set of template parameters used b
380 let mut used = HashMap::default(); new() variables
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/
H A Dwpabuf.c39 wpa_printf(MSG_ERROR, "wpabuf %p (size=%lu used=%lu) overflow len=%lu", in wpabuf_overflow()
40 buf, (unsigned long) buf->size, (unsigned long) buf->used, in wpabuf_overflow()
69 if (buf->used + add_len > buf->size) { in wpabuf_resize()
72 nbuf = os_realloc(buf->buf, buf->used + add_len); in wpabuf_resize()
75 os_memset(nbuf + buf->used, 0, add_len); in wpabuf_resize()
81 buf->used + add_len); in wpabuf_resize()
87 sizeof(struct wpabuf) + buf->used, 0, in wpabuf_resize()
91 buf->used + add_len); in wpabuf_resize()
95 os_memset(nbuf + sizeof(struct wpabuf) + buf->used, 0, in wpabuf_resize()
101 buf->size = buf->used in wpabuf_resize()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/
H A Dwpabuf.c39 wpa_printf(MSG_ERROR, "wpabuf %p (size=%lu used=%lu) overflow len=%lu", in wpabuf_overflow()
40 buf, (unsigned long) buf->size, (unsigned long) buf->used, in wpabuf_overflow()
69 if (buf->used + add_len > buf->size) { in wpabuf_resize()
72 nbuf = os_realloc(buf->buf, buf->used + add_len); in wpabuf_resize()
75 os_memset(nbuf + buf->used, 0, add_len); in wpabuf_resize()
81 buf->used + add_len); in wpabuf_resize()
87 sizeof(struct wpabuf) + buf->used, 0, in wpabuf_resize()
91 buf->used + add_len); in wpabuf_resize()
95 os_memset(nbuf + sizeof(struct wpabuf) + buf->used, 0, in wpabuf_resize()
101 buf->size = buf->used in wpabuf_resize()
[all...]
/third_party/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_program.c98 * This function fills in the parameter 'used' with a writemask that
99 * represent which components of each temporary register are used by the
102 * @param used The function does not initialize this parameter.
106 unsigned char * used, in rc_get_used_temporaries()
111 d.Used = used; in rc_get_used_temporaries()
122 /* Search a list of used temporaries for a free one
124 * @note If this functions finds a free temporary, it will mark it as used
125 * in the used temporary list (param 'used')
126 * @param used lis
104 rc_get_used_temporaries( struct radeon_compiler * c, unsigned char * used, unsigned int used_length) rc_get_used_temporaries() argument
134 rc_find_free_temporary_list( struct radeon_compiler * c, unsigned char * used, unsigned int used_length, unsigned int mask) rc_find_free_temporary_list() argument
152 unsigned char used[RC_REGISTER_MAX_INDEX]; rc_find_free_temporary() local
[all...]
/third_party/openssl/test/testutil/
H A Doptions.c16 static int used[100] = { 0 }; variable
43 OPENSSL_assert(n < sizeof(used)); in test_get_argument()
46 used[n] = 1; in test_get_argument()
56 if (arg_count > (int)OSSL_NELEM(used)) in opt_check_usage()
57 n = (int)OSSL_NELEM(used); in opt_check_usage()
61 if (used[i] == 0) in opt_check_usage()
/third_party/elfutils/backends/
H A Dia64_retval.c138 case 10: /* x86-style long double, not really used */ in hfa_type()
189 int used = hfa_type (child_typedie, child_size, in hfa_type() local
191 if (used < 0 || used > 8) in hfa_type()
192 return used; in hfa_type()
193 if (used > max_used) in hfa_type()
194 max_used = used; in hfa_type()
224 int used = hfa_type (base_typedie, base_size, locp, 0); in hfa_type() local
225 if (used < 0 || used > in hfa_type()
[all...]
/third_party/toybox/toys/posix/
H A Ddf.c15 The "disk free" command shows total/used/available disk space for
100 unsigned long long size, used, avail, percent, block; in show_mt() local
119 // Figure out how much total/used/free space this filesystem has, in show_mt()
123 used = mt->statvfs.f_files - mt->statvfs.f_ffree; in show_mt()
128 used = (block * (mt->statvfs.f_blocks-mt->statvfs.f_bfree)) / TT.units; in show_mt()
131 if (!(used+avail)) percent = 0; in show_mt()
133 percent = (used*100)/(used+avail); in show_mt()
134 if (used*100 != percent*(used in show_mt()
[all...]
/third_party/node/deps/v8/third_party/zlib/
H A Dinftrees.c24 lens shorts, which is used as a work area. type is the type of code
47 unsigned used; /* code entries in table used */ local
99 The length counts are used for other purposes as well, i.e. finding
151 filled is at next and has curr index bits. The code being used is huff
165 counts are used for this, and so count[] is decremented as codes are
168 used keeps track of how many table entries have been allocated from the
183 base = extra = work; /* dummy value--not used */
205 used = 1U << root; /* use root table entries */
206 mask = used
[all...]
/third_party/node/deps/zlib/
H A Dinftrees.c24 lens shorts, which is used as a work area. type is the type of code
42 unsigned used; /* code entries in table used */ in inflate_table() local
94 The length counts are used for other purposes as well, i.e. finding in inflate_table()
146 filled is at next and has curr index bits. The code being used is huff in inflate_table()
160 counts are used for this, and so count[] is decremented as codes are in inflate_table()
163 used keeps track of how many table entries have been allocated from the in inflate_table()
178 base = extra = work; /* dummy value--not used */ in inflate_table()
200 used = 1U << root; /* use root table entries */ in inflate_table()
201 mask = used in inflate_table()
[all...]
/third_party/lwip/src/netif/
H A Dbridgeif_fdb.c18 * 3. The name of the author may not be used to endorse or promote products
55 u8_t used; member
84 if (e->used && e->ts) { in bridgeif_fdb_update_src()
101 if (!e->used || !e->ts) { in bridgeif_fdb_update_src()
104 if (!e->used || !e->ts) { in bridgeif_fdb_update_src()
111 e->used = 1; in bridgeif_fdb_update_src()
136 if (e->used && e->ts) { in bridgeif_fdb_get_dst_ports()
164 if (e->used && e->ts) { in bridgeif_fdb_age_one_second()
167 if (e->used && e->ts) { in bridgeif_fdb_age_one_second()
169 e->used in bridgeif_fdb_age_one_second()
[all...]
/third_party/skia/third_party/externals/zlib/
H A Dinftrees.c24 lens shorts, which is used as a work area. type is the type of code
47 unsigned used; /* code entries in table used */ local
99 The length counts are used for other purposes as well, i.e. finding
151 filled is at next and has curr index bits. The code being used is huff
165 counts are used for this, and so count[] is decremented as codes are
168 used keeps track of how many table entries have been allocated from the
183 base = extra = work; /* dummy value--not used */
205 used = 1U << root; /* use root table entries */
206 mask = used
[all...]
/third_party/zlib/contrib/infback9/
H A Dinftree9.c24 lens shorts, which is used as a work area. type is the type of code
42 unsigned used; /* code entries in table used */ in inflate_table9() local
96 The length counts are used for other purposes as well, i.e. finding in inflate_table9()
140 filled is at next and has curr index bits. The code being used is huff in inflate_table9()
154 counts are used for this, and so count[] is decremented as codes are in inflate_table9()
157 used keeps track of how many table entries have been allocated from the in inflate_table9()
172 base = extra = work; /* dummy value--not used */ in inflate_table9()
196 used = 1U << root; /* use root table entries */ in inflate_table9()
197 mask = used in inflate_table9()
[all...]

Completed in 16 milliseconds

12345678910>>...32