Home
last modified time | relevance | path

Searched refs:need (Results 1 - 25 of 216) sorted by relevance

123456789

/third_party/musl/src/network/
H A Dgethostbyname2_r.c18 size_t align, need; in gethostbyname2_r() local
45 need = 4*sizeof(char *); in gethostbyname2_r()
46 need += (cnt + 1) * (sizeof(char *) + h->h_length); in gethostbyname2_r()
47 need += strlen(name)+1; in gethostbyname2_r()
48 need += strlen(canon)+1; in gethostbyname2_r()
49 need += align; in gethostbyname2_r()
51 if (need > buflen) return ERANGE; in gethostbyname2_r()
/third_party/cups-filters/fontembed/
H A Ddynstring.c66 int need,len=strlen(fmt)+100; in dyn_vprintf() local
75 need=vsnprintf(ds->buf+ds->len,ds->alloc-ds->len+1,fmt,va); in dyn_vprintf()
77 if (need==-1) { in dyn_vprintf()
79 } else if (need>=len) { in dyn_vprintf()
80 len=need; in dyn_vprintf()
82 ds->len+=need; in dyn_vprintf()
/third_party/skia/third_party/externals/freetype/src/gzip/
H A Dinflate.c40 uLong need; /* stream check value */ member
198 z->state->sub.check.need = (uLong)NEXTBYTE << 24; in inflate()
203 z->state->sub.check.need += (uLong)NEXTBYTE << 16; in inflate()
208 z->state->sub.check.need += (uLong)NEXTBYTE << 8; in inflate()
213 z->state->sub.check.need += (uLong)NEXTBYTE; in inflate()
214 z->adler = z->state->sub.check.need; in inflate()
219 z->msg = (char*)"need dictionary"; in inflate()
245 z->state->sub.check.need = (uLong)NEXTBYTE << 24; in inflate()
250 z->state->sub.check.need += (uLong)NEXTBYTE << 16; in inflate()
255 z->state->sub.check.need in inflate()
[all...]
H A Dinfcodes.c40 uInt need; /* bits needed */ member
61 inflate_huft *td, /* need separate declaration for Borland C++ */ in inflate_codes_new()
117 c->sub.code.need = c->lbits; in inflate_codes()
122 j = c->sub.code.need; in inflate_codes()
145 c->sub.code.need = e; in inflate_codes()
164 c->sub.code.need = c->dbits; in inflate_codes()
170 j = c->sub.code.need; in inflate_codes()
184 c->sub.code.need = e; in inflate_codes()
/third_party/typescript/tests/verify_3rd_libs/
H A Dverify_3rd_libs.py52 need = False
58 need = True
67 need = True
70 need = True
73 need = True
77 # need = True
80 # # if need del arkTSVersion param
82 # need = True
84 return need
101 need
[all...]
/third_party/elfutils/libdwfl/
H A Dsegment.c59 size_t need = need_start + need_end; in insert() local
60 if (need == 0) in insert()
63 if (dwfl->lookup_alloc - dwfl->lookup_elts < need) in insert()
97 memmove (&dwfl->lookup_addr[i + need], &dwfl->lookup_addr[i], in insert()
99 memmove (&dwfl->lookup_segndx[i + need], &dwfl->lookup_segndx[i], in insert()
102 memmove (&dwfl->lookup_module[i + need], &dwfl->lookup_module[i], in insert()
125 dwfl->lookup_elts += need; in insert()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/tls/
H A Dbignum.c77 size_t need = mp_unsigned_bin_size((mp_int *) n); in bignum_get_unsigned_bin() local
78 if (len && need > *len) { in bignum_get_unsigned_bin()
79 *len = need; in bignum_get_unsigned_bin()
87 *len = need; in bignum_get_unsigned_bin()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/tls/
H A Dbignum.c77 size_t need = mp_unsigned_bin_size((mp_int *) n); in bignum_get_unsigned_bin() local
78 if (len && need > *len) { in bignum_get_unsigned_bin()
79 *len = need; in bignum_get_unsigned_bin()
87 *len = need; in bignum_get_unsigned_bin()
/third_party/skia/third_party/externals/libjpeg-turbo/simd/i386/
H A Djdsample-avx2.asm66 ; push ecx ; need not be preserved
67 ; push edx ; need not be preserved
197 ; pop edx ; need not be preserved
198 ; pop ecx ; need not be preserved
239 ; push ecx ; need not be preserved
240 ; push edx ; need not be preserved
546 ; pop edx ; need not be preserved
547 ; pop ecx ; need not be preserved
576 ; push ecx ; need not be preserved
577 ; push edx ; need no
[all...]
H A Djdsample-mmx.asm65 ; push ecx ; need not be preserved
66 ; push edx ; need not be preserved
188 ; pop edx ; need not be preserved
189 ; pop ecx ; need not be preserved
229 ; push ecx ; need not be preserved
230 ; push edx ; need not be preserved
517 ; pop edx ; need not be preserved
518 ; pop ecx ; need not be preserved
547 ; push ecx ; need not be preserved
548 ; push edx ; need no
[all...]
H A Djdsample-sse2.asm65 ; push ecx ; need not be preserved
66 ; push edx ; need not be preserved
186 ; pop edx ; need not be preserved
187 ; pop ecx ; need not be preserved
228 ; push ecx ; need not be preserved
229 ; push edx ; need not be preserved
514 ; pop edx ; need not be preserved
515 ; pop ecx ; need not be preserved
544 ; push ecx ; need not be preserved
545 ; push edx ; need no
[all...]
/third_party/musl/porting/liteos_a/user/src/thread/
H A Dpthread_create.c258 size_t need = libc.tls_size + __pthread_tsd_size; in __pthread_create() local
265 if (need < size/8 && need < 2048) { in __pthread_create()
268 memset(stack, 0, need); in __pthread_create()
270 size = ROUND(need); in __pthread_create()
/third_party/musl/src/thread/liteos_a/
H A Dpthread_create.c258 size_t need = libc.tls_size + __pthread_tsd_size; in __pthread_create() local
265 if (need < size / 8 && need < 2048) { in __pthread_create()
268 memset(stack, 0, need); in __pthread_create()
270 size = ROUND(need); in __pthread_create()
/third_party/zlib/contrib/blast/
H A Dblast.c62 * Return need bits from the input stream. This always leaves less than
63 * eight bits in the buffer. bits() works properly for need == 0.
72 local int bits(struct state *s, int need) in bits() argument
76 /* load at least need bits into val */ in bits()
78 while (s->bitcnt < need) { in bits()
88 /* drop need bits and update buffer, always zero to seven bits left */ in bits()
89 s->bitbuf = val >> need; in bits()
90 s->bitcnt -= need; in bits()
92 /* return need bits, zeroing the bits above that */ in bits()
93 return val & ((1 << need) in bits()
[all...]
/third_party/ffmpeg/libavformat/
H A Dty.c179 * rarely are there > 256 chunks & we don't need that many anyway) */ in analyze_chunk()
519 int need = 0; in demux_audio() local
526 need = ty->pes_length - ty->pes_buf_cnt; in demux_audio()
530 if (need >= rec_size) { in demux_audio()
539 memcpy(ty->pes_buffer + ty->pes_buf_cnt, ty->chunk + ty->cur_chunk_pos, need); in demux_audio()
540 ty->cur_chunk_pos += need; in demux_audio()
559 if ((ret = av_new_packet(pkt, rec_size - need)) < 0) in demux_audio()
561 memcpy(pkt->data, ty->chunk + ty->cur_chunk_pos, rec_size - need); in demux_audio()
562 ty->cur_chunk_pos += rec_size - need; in demux_audio()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
H A Dmd4-internal.c57 * except that you don't need to include two pages of legalese
113 size_t have, need; in MD4Update() local
115 /* Check how many bytes we already have and how many more we need. */ in MD4Update()
117 need = MD4_BLOCK_LENGTH - have; in MD4Update()
122 if (len >= need) { in MD4Update()
124 os_memcpy(ctx->buffer + have, input, need); in MD4Update()
126 input += need; in MD4Update()
127 len -= need; in MD4Update()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
H A Dmd4-internal.c57 * except that you don't need to include two pages of legalese
113 size_t have, need; in MD4Update() local
115 /* Check how many bytes we already have and how many more we need. */ in MD4Update()
117 need = MD4_BLOCK_LENGTH - have; in MD4Update()
122 if (len >= need) { in MD4Update()
124 os_memcpy(ctx->buffer + have, input, need); in MD4Update()
126 input += need; in MD4Update()
127 len -= need; in MD4Update()
/third_party/node/deps/minimatch/src/node_modules/brace-expansion/
H A Dindex.js101 // no need to expand pre, since it is guaranteed to be free of brace-sets
172 var need = width - c.length;
173 if (need > 0) {
174 var z = new Array(need + 1).join('0');
/third_party/node/deps/npm/node_modules/brace-expansion/
H A Dindex.js101 // no need to expand pre, since it is guaranteed to be free of brace-sets
172 var need = width - c.length;
173 if (need > 0) {
174 var z = new Array(need + 1).join('0');
/third_party/mbedtls/library/
H A Dssl_misc.h485 * that need it (e.g. for RENEGOTIATION_INFO the server already knows because
497 * \param need Needed space in bytes.
504 const uint8_t *end, size_t need) in mbedtls_ssl_chk_buf_ptr()
506 return (cur > end) || (need > (size_t) (end - cur)); in mbedtls_ssl_chk_buf_ptr()
512 size_t need; member
516 const uint8_t *cur, const uint8_t *end, size_t need);
523 const uint8_t *end, size_t need) in mbedtls_ssl_chk_buf_ptr()
525 if ((cur > end) || (need > (size_t) (end - cur))) { in mbedtls_ssl_chk_buf_ptr()
526 mbedtls_ssl_set_chk_buf_ptr_fail_args(cur, end, need); in mbedtls_ssl_chk_buf_ptr()
540 * \param need Neede
503 mbedtls_ssl_chk_buf_ptr(const uint8_t *cur, const uint8_t *end, size_t need) mbedtls_ssl_chk_buf_ptr() argument
522 mbedtls_ssl_chk_buf_ptr(const uint8_t *cur, const uint8_t *end, size_t need) mbedtls_ssl_chk_buf_ptr() argument
[all...]
/third_party/musl/src/thread/
H A Dpthread_create.c281 size_t need = libc.tls_size + __pthread_tsd_size; in __pthread_create() local
288 if (need < size/8 && need < 2048) { in __pthread_create()
291 memset(stack, 0, need); in __pthread_create()
293 size = ROUND(need); in __pthread_create()
/third_party/musl/src/thread/linux/
H A Dpthread_create.c458 size_t need = libc.tls_size + __pthread_tsd_size; in __pthread_create() local
465 if (need < size / 8 && need < 2048) { in __pthread_create()
468 memset(stack, 0, need); in __pthread_create()
470 size = ROUND(need); in __pthread_create()
/third_party/musl/porting/linux/user/src/thread/
H A Dpthread_create.c394 size_t need = libc.tls_size + __pthread_tsd_size; in __pthread_create() local
401 if (need < size/8 && need < 2048) { in __pthread_create()
404 memset(stack, 0, need); in __pthread_create()
406 size = ROUND(need); in __pthread_create()
/third_party/zlib/contrib/puff/
H A Dpuff.c116 * Return need bits from the input stream. This always leaves less than
117 * eight bits in the buffer. bits() works properly for need == 0.
126 local int bits(struct state *s, int need) in bits() argument
130 /* load at least need bits into val */ in bits()
132 while (s->bitcnt < need) { in bits()
139 /* drop need bits and update buffer, always zero to seven bits left */ in bits()
140 s->bitbuf = (int)(val >> need); in bits()
141 s->bitcnt -= need; in bits()
143 /* return need bits, zeroing the bits above that */ in bits()
144 return (int)(val & ((1L << need) in bits()
[all...]
/third_party/ntfs-3g/ntfsprogs/
H A Dntfsfallocate.c548 /* Newly allocated clusters before initialized size need be zeroed */ in ntfs_merge_allocation()
600 s64 need; in ntfs_inner_allocation() local
623 need = end_hole - from_hole; in ntfs_inner_allocation()
633 if (need <= 0) { in ntfs_inner_allocation()
635 (long long)need); in ntfs_inner_allocation()
639 rlc = ntfs_cluster_alloc(vol, from_hole, need, in ntfs_inner_allocation()
645 need << vol->cluster_size_bits); in ntfs_inner_allocation()
668 * only need to expand the attribute in ntfs_full_allocation()

Completed in 16 milliseconds

123456789