Searched refs:base_index (Results 1 – 8 of 8) sorted by relevance
/external/srtp/crypto/math/ |
D | datatypes.c | 327 const int base_index = index >> 5; in v128_right_shift() local 340 x->v32[4-1] = x->v32[4-1-base_index]; in v128_right_shift() 341 for (i=4-1; i > base_index; i--) in v128_right_shift() 342 x->v32[i-1] = x->v32[i-1-base_index]; in v128_right_shift() 347 for (i = 4; i > base_index; i--) { in v128_right_shift() 348 from = i-1 - base_index; in v128_right_shift() 358 for (i=0; i < base_index; i++) in v128_right_shift() 366 const int base_index = index >> 5; in v128_left_shift() local 375 for (i=0; i < 4 - base_index; i++) in v128_left_shift() 376 x->v32[i] = x->v32[i+base_index]; in v128_left_shift() [all …]
|
D | math.c | 652 const int base_index = index >> 5; in v128_right_shift() local 665 x->v32[4-1] = x->v32[4-1-base_index]; in v128_right_shift() 666 for (i=4-1; i > base_index; i--) in v128_right_shift() 667 x->v32[i-1] = x->v32[i-1-base_index]; in v128_right_shift() 672 for (i = 4; i > base_index; i--) { in v128_right_shift() 673 from = i-1 - base_index; in v128_right_shift() 683 for (i=0; i < base_index; i++) in v128_right_shift() 691 const int base_index = index >> 5; in v128_left_shift() local 700 for (i=0; i < 4 - base_index; i++) in v128_left_shift() 701 x->v32[i] = x->v32[i+base_index]; in v128_left_shift() [all …]
|
/external/srtp/googlepatches/ |
D | vidyo-3-srtp-ws.patch | 286 + const int base_index = index >> 5; 296 + for (i=0; i < word_length - base_index; i++) 297 + x->word[i] = x->word[i+base_index]; 299 + for (i=0; i < word_length - base_index - 1; i++) 300 + x->word[i] = (x->word[i+base_index] >> bit_index) ^ 301 + (x->word[i+base_index+1] << (32 - bit_index)); 302 + x->word[word_length - base_index-1] = x->word[word_length-1] >> bit_index; 306 + for (i = word_length - base_index; i < word_length; i++)
|
/external/v8/src/ |
D | code-stubs-hydrogen.cc | 1829 HValue* base_index = AddUncasted<HMul>(hash, Add<HConstant>(2)); in BuildCodeStub() local 1830 base_index->ClearFlag(HValue::kCanOverflow); in BuildCodeStub() 1842 base_index, in BuildCodeStub() 1846 base_index, in BuildCodeStub()
|
D | hydrogen-instructions.cc | 1076 return os << "base: " << NameOf(base_index()) in PrintDataTo() 1077 << ", check: " << NameOf(base_index()); in PrintDataTo()
|
D | hydrogen.cc | 1698 HValue* base_index = AddUncasted<HMul>(entry, Add<HConstant>(entry_size)); in BuildUncheckedDictionaryElementLoad() local 1699 base_index->ClearFlag(HValue::kCanOverflow); in BuildUncheckedDictionaryElementLoad() 1702 AddUncasted<HAdd>(base_index, Add<HConstant>(start_offset)); in BuildUncheckedDictionaryElementLoad() 1758 AddUncasted<HAdd>(base_index, Add<HConstant>(start_offset + 2)); in BuildUncheckedDictionaryElementLoad() 1771 AddUncasted<HAdd>(base_index, Add<HConstant>(start_offset + 1)); in BuildUncheckedDictionaryElementLoad()
|
D | hydrogen-instructions.h | 4124 HValue* base_index() const { return OperandAt(0); } in base_index() function
|
/external/harfbuzz_ng/src/ |
D | hb-ot-layout-gpos-table.hh | 1066 …unsigned int base_index = (this+baseCoverage).get_coverage (buffer->info[skippy_iter.idx].codepoi… in apply() local 1067 if (base_index == NOT_COVERED) return TRACE_RETURN (false); in apply() 1069 …return TRACE_RETURN ((this+markArray).apply (c, mark_index, base_index, this+baseArray, classCount… in apply()
|