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

12345

/external/boringssl/src/crypto/fipsmodule/rand/
H A Dinternal.h49 uint32_t words[4]; member in union:__anon964::__anon965
/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/curl/lib/
H A Dinet_ntop.c92 unsigned long words[IN6ADDRSZ / INT16SZ]; local
99 memset(words, '\0', sizeof(words));
101 words[i/2] |= (src[i] << ((1 - (i % 2)) << 3));
109 if(words[i] == 0) {
143 (best.len == 6 || (best.len == 5 && words[5] == 0xffff))) {
151 tp += snprintf(tp, 5, "%lx", words[i]);
/external/tensorflow/tensorflow/contrib/lite/kernels/
H A Dskip_gram.cc19 // ngram_size: num of words for each output item.
20 // max_skip_size: max num of words to skip.
29 // A list of strings, each of which contains ngram_size words.
91 // Split sentence to words.
92 std::vector<StringRef> words; local
98 words.push_back({strref.str + prev_idx, i - prev_idx});
104 words.push_back({strref.str + prev_idx, strref.len - prev_idx});
109 if (words.size() < params->ngram_size) {
119 int num_words = words.size();
134 // words t
[all...]
/external/libvpx/libvpx/
H A Dmd5_utils.c27 static void byteSwap(UWORD32 *buf, unsigned words) { argument
41 } 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/python/cpython2/Lib/plat-mac/lib-scriptpackages/SystemEvents/
H A DText_Suite.py85 """word - This subdivides the text into words. """
92 words = word variable
/external/python/cpython2/Lib/plat-mac/lib-scriptpackages/Terminal/
H A DText_Suite.py85 """word - This subdivides the text into words. """
92 words = word variable
/external/python/cpython2/Modules/
H A Dcgen.py450 words = string.split(line) variable
457 if words == ['%%']:
466 if words and words[0][0] == '%':
467 func = words[0][1:]
468 if (not func) and words[1:]:
469 func = words[1]
475 if not words:
477 elif words[0] == 'if':
480 if words[
485 words = words[2:] variable
[all...]
/external/tcpdump/
H A Daddrtostr.c116 uint16_t words [IN6ADDRSZ / INT16SZ]; local
124 words[i] = (srcaddr[2*i] << 8) | srcaddr[2*i + 1];
132 if (words[i] == 0)
182 (best.len == 6 || (best.len == 5 && words[5] == 0xffff)))
194 snprintfed = snprintf (dp, space_left, "%x", words[i]);
/external/tensorflow/tensorflow/compiler/xla/service/
H A Dhlo_execution_profile_test.cc30 // each of those lines into a sequence of words delimited by spaces. Filter out
31 // empty words.
36 std::vector<string> words; local
39 words.push_back(word);
42 result.push_back(std::move(words));
/external/v8/tools/
H A Dtrace-maps-processor.py90 words = line.split(" ") variable
91 event = words[1]
93 assert words[2] == "map="
94 assert words[4] == "SFI="
95 new_map = AddMap(words[3], "SFI#%s" % words[5])
98 if words[2] == "from=" and words[4] == "to=":
99 from_map = words[3]
100 to_map = words[
[all...]
/external/aac/libFDK/src/
H A DFDK_crc.cpp450 int words = bits >> 3; /* processing bytes */ local
454 rBits -= (calcCrc_Bytes(&crc, hCrcInfo->pCrcLookup, &bsReader, words) << 3);
457 words << 3);
/external/boringssl/src/crypto/evp/
H A Dscrypt.c31 typedef struct { uint32_t words[16]; } block_t; member in struct:__anon939
45 x.words[4] ^= R(x.words[0] + x.words[12], 7);
46 x.words[8] ^= R(x.words[4] + x.words[0], 9);
47 x.words[12] ^= R(x.words[8] + x.words[
[all...]
/external/boringssl/src/crypto/fipsmodule/bn/
H A Drandom.c197 // bn_less_than_word returns one if the number represented by |len| words at |a|
235 // |words| worth of entropy to fill and a mask of bits to clear in the top
237 size_t words = len; local
238 while (words > 0 && max_exclusive[words - 1] == 0) {
239 words--;
241 if (words == 0 ||
242 (words == 1 && max_exclusive[0] <= min_inclusive)) {
246 BN_ULONG mask = max_exclusive[words - 1];
257 // Fill any unused words wit
[all...]
H A Dbn.c288 int bn_set_words(BIGNUM *bn, const BN_ULONG *words, size_t num) { argument
292 OPENSSL_memmove(bn->d, words, num * sizeof(BN_ULONG));
301 // All words beyond |num| must be zero.
341 int bn_wexpand(BIGNUM *bn, size_t words) { argument
344 if (words <= (size_t)bn->dmax) {
348 if (words > (INT_MAX / (4 * BN_BITS2))) {
358 a = OPENSSL_malloc(sizeof(BN_ULONG) * words);
368 bn->dmax = (int)words;
381 int bn_resize_words(BIGNUM *bn, size_t words) { argument
382 if ((size_t)bn->top <= words) {
[all...]
/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/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/python/cpython2/Lib/plat-mac/lib-scriptpackages/StdSuites/
H A DText_Suite.py93 words = word variable
/external/boringssl/src/crypto/fipsmodule/ec/
H A Dinternal.h95 // |order->top| words are used. An |EC_SCALAR| is specific to an |EC_GROUP| and
100 BN_ULONG words[EC_MAX_SCALAR_WORDS]; member in union:__anon953
/external/boringssl/src/crypto/fipsmodule/ecdsa/
H A Decdsa.c74 BN_ULONG words[EC_MAX_SCALAR_WORDS]; member in union:__anon957
83 BN_ULONG carry = bn_add_words(r->words, a->words, b->words, order->top);
85 BN_ULONG v = bn_sub_words(tmp.words, r->words, order->d, order->top) - carry;
90 r->words[i] = constant_time_select_w(v, r->words[i], tmp.words[i]);
97 return bn_mod_mul_montgomery_small(r->words, orde
[all...]
/external/elfutils/lib/
H A Dmd5.c289 const md5_uint32 *words = buffer; local
291 const md5_uint32 *endp = words + nwords;
306 while (words < endp)
316 unit is a 32-bit word and it is determined to work on words in
319 we store the swapped words in the array CORRECT_WORDS. */
324 a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T; \
325 ++words; \
359 /* For the second to fourth round we have the possibly swapped words
H A Dsha1.c219 const sha1_uint32 *words = buffer; local
221 const sha1_uint32 *endp = words + nwords;
237 while (words < endp)
247 unit is a 32-bit word and it is determined to work on words in
254 W (i) = SWAP (*words); \
256 ++words; \
/external/iproute2/ip/
H A Dipila.c53 __u16 *words = (__u16 *)&addr; local
60 v = ntohs(words[i]);

Completed in 971 milliseconds

12345