Searched defs:words (Results 1 - 25 of 72) sorted by relevance

123

/external/v8/test/mjsunit/
H A Dregexp-results-cache.js73 var words = string.split(" "); variable
74 assertEquals("Friends,", words[0]);
75 words[0] = "Enemies,";
76 words = string.split(" ");
77 assertEquals("Friends,", words[0]);
/external/valgrind/memcheck/tests/
H A Dtest-plo.c73 UWord* words = malloc(3 * sizeof(UWord)); local
74 free(words);
77 UWord w = words[1];
H A Dwrap6.c182 UInt* words = calloc(200, sizeof(UInt)); local
183 TRASH_IREGS(r, words);
184 free(words);
208 UInt* words = calloc(200, sizeof(UInt)); local
209 words[1-1] = a1;
210 TRASH_IREGS(r, words);
211 free(words);
235 UInt* words = calloc(200, sizeof(UInt)); local
236 words[1-1] = a1;
237 words[
263 UInt* words = calloc(200, sizeof(UInt)); local
292 UInt* words = calloc(200, sizeof(UInt)); local
322 UInt* words = calloc(200, sizeof(UInt)); local
353 UInt* words = calloc(200, sizeof(UInt)); local
386 UInt* words = calloc(200, sizeof(UInt)); local
422 UInt* words = calloc(200, sizeof(UInt)); local
459 UInt* words = calloc(200, sizeof(UInt)); local
497 UInt* words = calloc(200, sizeof(UInt)); local
536 UInt* words = calloc(200, sizeof(UInt)); local
576 UInt* words = calloc(200, sizeof(UInt)); local
[all...]
/external/libvorbis/doc/
H A D02-bitpacking.tex16 bitstream into an actual representation in fixed-width words.
19 \subsubsection{octets, bytes and words}
/external/aac/libFDK/src/
H A DFDK_crc.cpp431 int words = bits >> 3; /* processing bytes */ local
435 rBits -= (calcCrc_Bytes(&crc, hCrcInfo->pCrcLookup, &bsReader, words)<<3);
438 rBits -= calcCrc_Bits(&crc, hCrcInfo->crcMask, hCrcInfo->crcPoly, &bsReader, words<<3 );
/external/libvpx/libvpx/
H A Dmd5_utils.c28 byteSwap(UWORD32 *buf, unsigned words) { argument
43 } while (--words);
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_bitmask.c53 util_bitmask_word *words; member in struct:util_bitmask
72 bm->words = (util_bitmask_word *)CALLOC(UTIL_BITMASK_INITIAL_WORDS, sizeof(util_bitmask_word));
73 if(!bm->words) {
114 new_words = (util_bitmask_word *)REALLOC((void *)bm->words,
125 bm->words = new_words;
174 if(!(bm->words[word] & mask))
190 assert(!(bm->words[word] & mask));
191 bm->words[word] |= mask;
215 bm->words[word] |= mask;
240 bm->words[wor
[all...]
/external/openssh/openbsd-compat/
H A Dinet_ntop.c120 u_int words[IN6ADDRSZ / INT16SZ]; local
129 memset(words, '\0', sizeof words);
131 words[i / 2] |= (src[i] << ((1 - (i % 2)) << 3));
135 if (words[i] == 0) {
179 (best.len == 6 || (best.len == 5 && words[5] == 0xffff))) {
185 advance = snprintf(tp, ep - tp, "%x", words[i]);
/external/skia/src/core/
H A DSkChecksum.h87 const size_t words = bytes/4; local
89 for (size_t i = 0; i < words; i++) {
102 const aliased_uint8_t* safe_tail = (const uint8_t*)(safe_data + words);
/external/tcpdump/missing/
H A Dinet_ntop.c118 u_long words [IN6ADDRSZ / INT16SZ]; local
125 memset (words, 0, sizeof(words));
127 words[i/2] |= (src[i] << ((1 - (i % 2)) << 3));
133 if (words[i] == 0)
173 (best.len == 6 || (best.len == 5 && words[5] == 0xffff)))
183 tp += sprintf (tp, "%lX", words[i]);
/external/elfutils/src/lib/
H A Dsha1.c230 const sha1_uint32 *words = buffer; local
232 const sha1_uint32 *endp = words + nwords;
248 while (words < endp)
258 unit is a 32-bit word and it is determined to work on words in
265 W (i) = SWAP (*words); \
267 ++words; \
H A Dmd5.c305 const md5_uint32 *words = buffer; local
307 const md5_uint32 *endp = words + nwords;
322 while (words < endp)
332 unit is a 32-bit word and it is determined to work on words in
335 we store the swapped words in the array CORRECT_WORDS. */
340 a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T; \
341 ++words; \
375 /* For the second to fourth round we have the possibly swapped words
/external/jpeg/
H A Dansi2knr.c506 { static char *words[] = local
513 char **key = words;
/external/libvncserver/common/
H A Dmd5.c303 const md5_uint32 *words = buffer; local
305 const md5_uint32 *endp = words + nwords;
320 while (words < endp)
330 unit is a 32-bit word and it is determined to work on words in
333 we store the swapped words in the array CORRECT_WORDS. */
338 a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T; \
339 ++words; \
373 /* For the second to fourth round we have the possibly swapped words
/external/boringssl/src/crypto/bn/
H A Dbn.c282 BIGNUM *bn_wexpand(BIGNUM *bn, unsigned words) { argument
285 if (words <= (unsigned) bn->dmax) {
289 if (words > (INT_MAX / (4 * BN_BITS2))) {
299 a = (BN_ULONG *)OPENSSL_malloc(sizeof(BN_ULONG) * words);
309 bn->dmax = words;
/external/e2fsprogs/lib/ext2fs/
H A Dcrc32c.c80 size_t words; local
89 * 'words' aligned 4 byte words followed by
94 words = (len - init_bytes) >> 2;
110 for (i = 0; i < words; i++) {
150 size_t words; local
161 words = (len - init_bytes) >> 2;
176 for (i = 0; i < words; i++) {
217 size_t words; local
228 words
297 size_t words; local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/www/projectName/
H A Dsearchcvs.php152 $hl = words($hl);
245 function words($str) function
/external/flac/libFLAC/
H A Dmd5.c139 static void byteSwap(FLAC__uint32 *buf, unsigned words) argument
146 } while (--words);
170 #define byteSwap(buf, words)
/external/ltrace/sysdeps/linux-gnu/arm/
H A Dfetch.c222 /* If the size in words of the argument is not more than r4
229 const size_t words = (sz + 3) / 4; local
231 unsigned char *data = value_reserve(valuep, words * 4);
235 for (i = 0; i < words && ctx->ncrn < 4; ++i) {
239 const size_t rest = (words - i) * 4;
/external/mesa3d/src/gallium/drivers/nouveau/
H A Dnouveau_mm.c117 int words, ret; local
120 words = ((size >> chunk_order) + 31) / 32;
121 assert(words);
123 slab = MALLOC(sizeof(struct mm_slab) + words * 4);
127 memset(&slab->bits[0], ~0, words * 4);
/external/mesa3d/src/gallium/drivers/nv50/
H A Dnv50_shader_state.c55 unsigned words = nv50->constbuf[s][0].size / 4; local
65 while (words) {
72 nr = MIN2(MIN2(nr - 3, words), NV04_PFIFO_MAX_PACKET_LEN);
80 words -= nr;
H A Dnv50_state_validate.c370 nv50_state_validate(struct nv50_context *nv50, uint32_t mask, unsigned words) argument
H A Dnv50_transfer.c387 unsigned offset, unsigned words, const uint32_t *data)
399 while (words) {
403 nr = MIN2(nr - 7, words);
415 words -= nr;
384 nv50_cb_push(struct nouveau_context *nv, struct nouveau_bo *bo, unsigned domain, unsigned base, unsigned size, unsigned offset, unsigned words, const uint32_t *data) argument
/external/mesa3d/src/gallium/drivers/nvc0/
H A Dnvc0_state_validate.c520 nvc0_state_validate(struct nvc0_context *nvc0, uint32_t mask, unsigned words) argument
H A Dnvc0_transfer.c467 unsigned offset, unsigned words, const uint32_t *data)
484 while (words) {
486 nr = MIN2(nr, words);
493 words -= nr;
464 nvc0_cb_push(struct nouveau_context *nv, struct nouveau_bo *bo, unsigned domain, unsigned base, unsigned size, unsigned offset, unsigned words, const uint32_t *data) argument

Completed in 804 milliseconds

123