Searched defs:num_words (Results 1 - 10 of 10) sorted by relevance

/external/libtextclassifier/lang_id/
H A Dlight-sentence.h47 int num_words() const { return words_.size(); } function in class:libtextclassifier::nlp_core::lang_id::LightSentence
52 TC_DCHECK((i >= 0) && (i < num_words()));
/external/libavc/common/
H A Dih264_mem_fns.c147 * @param[in] num_words
157 void ih264_memset_16bit(UWORD16 *pu2_dst, UWORD16 value, UWORD32 num_words) argument
160 for(i = 0; i < num_words; i++)
168 UWORD32 num_words)
171 for(i = 0; i < num_words; i++)
166 ih264_memset_16bit_mul_8(UWORD16 *pu2_dst, UWORD16 value, UWORD32 num_words) argument
/external/libavc/common/x86/
H A Dih264_mem_fns_ssse3.c147 * @param[in] num_words
158 void ih264_memset_16bit_mul_8_ssse3(UWORD16 *pu2_dst, UWORD16 value, UWORD32 num_words) argument
163 for(col = num_words; col >= 8; col -= 8)
/external/libhevc/common/
H A Dihevc_mem_fns.c137 * @param[in] num_words
147 void ihevc_memset_16bit(UWORD16 *pu2_dst, UWORD16 value, UWORD32 num_words) argument
150 for(i = 0; i < num_words; i++)
158 void ihevc_memset_16bit_mul_8(UWORD16 *pu2_dst, UWORD16 value, UWORD32 num_words) argument
161 for(i = 0; i < num_words; i++)
/external/libhevc/common/x86/
H A Dihevc_mem_fns_ssse3_intr.c146 * @param[in] num_words
157 void ihevc_memset_16bit_mul_8_ssse3(UWORD16 *pu2_dst, UWORD16 value, UWORD32 num_words) argument
162 for(col = num_words; col >= 8; col -= 8)
/external/boringssl/src/crypto/bn/
H A Dconvert.c73 size_t num_words; local
91 num_words = ((len - 1) / BN_BYTES) + 1;
93 if (bn_wexpand(ret, num_words) == NULL) {
100 /* |bn_wexpand| must check bounds on |num_words| to write it into
102 assert(num_words <= INT_MAX);
103 ret->top = (int)num_words;
109 ret->d[--num_words] = word;
139 size_t num_words = ((len - 1) / BN_BYTES) + 1; local
140 if (!bn_wexpand(ret, num_words)) {
144 ret->top = num_words;
[all...]
H A Ddiv.c657 size_t num_words = 1 + ((e - 1) / BN_BITS2); local
660 if ((size_t) a->top < num_words) {
665 * Note that this will fail if num_words > INT_MAX. */
666 if (bn_wexpand(r, num_words) == NULL) {
671 OPENSSL_memcpy(r->d, a->d, num_words * sizeof(BN_ULONG));
676 r->d[num_words - 1] &= (((BN_ULONG) 1) << top_word_exponent) - 1;
681 r->top = (int) num_words;
696 size_t num_words = 1 + (e - 1) / BN_BITS2; local
699 if (bn_wexpand(r, num_words) == NULL) {
704 OPENSSL_memset(&r->d[r->top], 0, (num_words
[all...]
/external/libunwind/src/
H A Delfxx.c72 size_t num_words = bytes / sizeof(unw_word_t); local
74 for (i = 0; i < num_words; i++) {
/external/ltp/testcases/kernel/ipc/pipeio/
H A Dpipeio.c763 int num_words = length / NBPW; /* given length in bytes, get length in words */ local
776 ++num_words; /* is length in full words? */
782 extra_words = num_words % width;
784 for (i = 0; i < num_words; ++i, a += NBPW, addr++) {
/external/protobuf/src/google/protobuf/compiler/objectivec/
H A Dobjectivec_helpers.cc71 hash_set<string> MakeWordsMap(const char* const words[], size_t num_words) { argument
73 for (int i = 0; i < num_words; i++) {

Completed in 364 milliseconds