Searched refs:from_index (Results 1 – 9 of 9) sorted by relevance
/external/valgrind/perf/ |
D | fbench.c | 287 static double from_index; variable 625 rang_sin = (from_index / to_index) * in transit_surface() 635 object_distance = object_distance * (to_index / from_index); in transit_surface() 636 axis_slope_angle = axis_slope_angle * (from_index / to_index); in transit_surface() 650 rang_sin = (from_index / to_index) * in transit_surface() 663 rang = -asin((from_index / to_index) * in transit_surface() 666 cos(-rang)) / (from_index * in transit_surface() 681 from_index = 1.0; 692 from_index = to_index;
|
/external/valgrind/memcheck/tests/ |
D | vcpu_fbench.c | 291 static double from_index; variable 629 rang_sin = (from_index / to_index) * in transit_surface() 639 object_distance = object_distance * (to_index / from_index); in transit_surface() 640 axis_slope_angle = axis_slope_angle * (from_index / to_index); in transit_surface() 654 rang_sin = (from_index / to_index) * in transit_surface() 667 rang = -asin((from_index / to_index) * in transit_surface() 670 cos(-rang)) / (from_index * in transit_surface() 685 from_index = 1.0; 696 from_index = to_index;
|
/external/v8/src/ |
D | array.js | 301 var from_index = i + del_count - 1; 306 var current = array[from_index]; 307 if (!IS_UNDEFINED(current) || from_index in array) { 315 var from_index = i + del_count; 320 var current = array[from_index]; 321 if (!IS_UNDEFINED(current) || from_index in array) {
|
D | debug-debugger.js | 1821 var from_index = 0; 1827 from_index = request.arguments.fromFrame; 1833 var tmp_index = total_frames - from_index; 1834 from_index = total_frames - to_index; 1837 if (from_index < 0 || to_index < 0) { 1845 if (to_index <= from_index) { 1852 for (var i = from_index; i < to_index; i++) { 1856 fromFrame: from_index,
|
D | mirror-debugger.js | 1144 var from_index = opt_from_index || 0; 1146 if (from_index > to_index) return new Array(); 1147 var values = new Array(to_index - from_index + 1); 1148 for (var i = from_index; i <= to_index; i++) { 1156 values[i - from_index] = value;
|
D | jsregexp.h | 532 void Merge(QuickCheckDetails* other, int from_index);
|
D | jsregexp.cc | 2712 void QuickCheckDetails::Merge(QuickCheckDetails* other, int from_index) { in Merge() argument 2721 for (int i = from_index; i < characters_; i++) { in Merge()
|
D | objects.cc | 13816 uint32_t from_index = EntryToIndex(i); in Rehash() local 13817 Object* k = get(from_index); in Rehash() 13823 new_table->set(insertion_index + j, get(from_index + j), mode); in Rehash()
|
/external/v8/test/cctest/compiler/ |
D | test-simplified-lowering.cc | 421 void RunCopyElement(int from_index, int to_index) { in RunCopyElement() argument 424 BoundsCheck(from_index); in RunCopyElement() 430 Node* load = t.LoadElement(access, ptr, t.Int32Constant(from_index), in RunCopyElement() 446 void RunCopyField(int from_index, int to_index) { in RunCopyField() argument 447 BoundsCheck(from_index); in RunCopyField() 449 FieldAccess from_access = GetFieldAccess(from_index); in RunCopyField()
|