Searched refs:base_index (Results 1 – 9 of 9) 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/interpreter/ |
D | interpreter-assembler.cc | 601 Node* base_index; in DispatchWide() local 604 base_index = IntPtrConstant(1 << kBitsPerByte); in DispatchWide() 607 base_index = IntPtrConstant(2 << kBitsPerByte); in DispatchWide() 611 base_index = nullptr; in DispatchWide() 613 Node* target_index = IntPtrAdd(base_index, next_bytecode); in DispatchWide()
|
/external/autotest/frontend/tko/ |
D | graphing_utils.py | 507 base_index = base_xs.index(x_value) 513 new_base_values.append(base_values[base_index]) 516 new_base_errors.append(base_errors[base_index])
|
/external/harfbuzz_ng/src/ |
D | hb-ot-layout-gpos-table.hh | 1094 …unsigned int base_index = (this+baseCoverage).get_coverage (buffer->info[skippy_iter.idx].codepoi… in apply() local 1095 if (base_index == NOT_COVERED) return_trace (false); in apply() 1097 …return_trace ((this+markArray).apply (c, mark_index, base_index, this+baseArray, classCount, skipp… in apply()
|
/external/v8/src/ |
D | code-stubs-hydrogen.cc | 2254 HValue* base_index = AddUncasted<HMul>(hash, Add<HConstant>(2)); in BuildCodeStub() local 2255 base_index->ClearFlag(HValue::kCanOverflow); in BuildCodeStub() 2267 base_index, in BuildCodeStub() 2271 base_index, in BuildCodeStub()
|
D | utils.h | 347 static int index(int base_index, int item) { 348 return base_index + item / kItemsPerWord;
|
/external/v8/src/crankshaft/ |
D | hydrogen.cc | 1935 HValue* base_index = AddUncasted<HMul>(entry, Add<HConstant>(entry_size)); in BuildUncheckedDictionaryElementLoad() local 1936 base_index->ClearFlag(HValue::kCanOverflow); in BuildUncheckedDictionaryElementLoad() 1939 AddUncasted<HAdd>(base_index, Add<HConstant>(start_offset)); in BuildUncheckedDictionaryElementLoad() 1994 AddUncasted<HAdd>(base_index, Add<HConstant>(start_offset + 2)); in BuildUncheckedDictionaryElementLoad() 2006 AddUncasted<HAdd>(base_index, Add<HConstant>(start_offset + 1)); in BuildUncheckedDictionaryElementLoad()
|