/external/v8/src/runtime/ |
D | runtime-array.cc | 221 CONVERT_ARG_HANDLE_CHECKED(Object, from_index, 2); in RUNTIME_FUNCTION() 257 if (!from_index->IsUndefined(isolate)) { in RUNTIME_FUNCTION() 258 ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, from_index, in RUNTIME_FUNCTION() 259 Object::ToInteger(isolate, from_index)); in RUNTIME_FUNCTION() 261 if (V8_LIKELY(from_index->IsSmi())) { in RUNTIME_FUNCTION() 262 int start_from = Smi::ToInt(*from_index); in RUNTIME_FUNCTION() 269 DCHECK(from_index->IsHeapNumber()); in RUNTIME_FUNCTION() 270 double start_from = from_index->Number(); in RUNTIME_FUNCTION() 322 CONVERT_ARG_HANDLE_CHECKED(Object, from_index, 2); in RUNTIME_FUNCTION() 359 ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, from_index, in RUNTIME_FUNCTION() [all …]
|
/external/python/cpython3/Tools/scripts/ |
D | mailerdaemon.py | 101 from_index = len(data) 103 from_index = res.start(0) 109 res = regexp[0].search(data, 0, from_index) 116 res = regexp[1].match(data, res.end(0), from_index) 122 res = regexp.search(data, 0, from_index)
|
/external/python/cpython2/Tools/scripts/ |
D | mailerdaemon.py | 96 from_index = len(data) 98 from_index = res.start(0) 104 res = regexp[0].search(data, 0, from_index) 111 res = regexp[1].match(data, res.end(0), from_index) 117 res = regexp.search(data, 0, from_index)
|
/external/v8/src/interpreter/ |
D | interpreter.cc | 361 int from_index = Bytecodes::ToByte(from); in GetDispatchCounter() local 363 return bytecode_dispatch_counters_table_[from_index * kNumberOfBytecodes + in GetDispatchCounter() 384 for (int from_index = 0; from_index < kNumberOfBytecodes; ++from_index) { in GetDispatchCountersObject() local 385 Bytecode from_bytecode = Bytecodes::FromByte(from_index); in GetDispatchCountersObject()
|
/external/v8/src/builtins/ |
D | builtins-array-gen.cc | 572 TNode<Smi> array_length, TNode<Smi> from_index); 576 TNode<Smi> array_length, TNode<Smi> from_index); 580 TNode<Smi> array_length, TNode<Smi> from_index); 738 TNode<Smi> from_index) { in GenerateSmiOrObject() argument 739 TVARIABLE(IntPtrT, index_var, SmiUntag(from_index)); in GenerateSmiOrObject() 911 TNode<Smi> from_index) { in GeneratePackedDoubles() argument 912 TVARIABLE(IntPtrT, index_var, SmiUntag(from_index)); in GeneratePackedDoubles() 979 TNode<Smi> from_index) { in GenerateHoleyDoubles() argument 980 TVARIABLE(IntPtrT, index_var, SmiUntag(from_index)); in GenerateHoleyDoubles() 1081 auto from_index = Parameter<Smi>(Descriptor::kFromIndex); in TF_BUILTIN() local [all …]
|
D | builtins-string-gen.h | 59 TNode<IntPtrT> from_index, TNode<IntPtrT> to_index, 171 TNode<IntPtrT> from_index,
|
D | builtins-string-gen.cc | 1896 TNode<IntPtrT> from_index, TNode<IntPtrT> to_index, 1902 TNode<IntPtrT> from_index, TNode<IntPtrT> to_index, 1908 TNode<T> from_string, TNode<String> to_string, TNode<IntPtrT> from_index, in CopyStringCharacters() argument 1925 ElementOffsetFromIndex(from_index, from_kind, header_size); in CopyStringCharacters() 1944 (from_index == to_index || in CopyStringCharacters() 1945 (ToInt32Constant(from_index, &from_index_constant) && in CopyStringCharacters() 1968 TNode<T> from, TNode<Int32T> from_instance_type, TNode<IntPtrT> from_index, in AllocAndCopyStringCharacters() argument 1981 CopyStringCharacters<T>(from, result, from_index, IntPtrConstant(0), in AllocAndCopyStringCharacters() 1993 CopyStringCharacters<T>(from, result, from_index, IntPtrConstant(0), in AllocAndCopyStringCharacters()
|
/external/v8/src/objects/ |
D | prototype-info.h | 60 using CompactionCallback = void (*)(HeapObject object, int from_index,
|
D | objects.cc | 5615 uint32_t from_index = EntryToIndex(i); in Rehash() local 5616 Object k = this->get(isolate, from_index); in Rehash() 5621 new_table.set_key(insertion_index, get(isolate, from_index), mode); in Rehash() 5623 new_table.set(insertion_index + j, get(isolate, from_index + j), mode); in Rehash()
|
/external/v8/src/profiler/ |
D | heap-snapshot-generator-inl.h | 17 return &snapshot()->entries()[from_index()]; in from()
|
D | heap-snapshot-generator.h | 85 int from_index() const { return FromIndexField::decode(bit_field_); } in from_index() function
|
/external/v8/src/regexp/ |
D | regexp-compiler.h | 91 void Merge(QuickCheckDetails* other, int from_index);
|
D | regexp-compiler.cc | 1730 void QuickCheckDetails::Merge(QuickCheckDetails* other, int from_index) { in Merge() argument 1739 for (int i = from_index; i < characters_; i++) { in Merge()
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | hlo_evaluator_typed_visitor.h | 1026 std::vector<int64> from_index(out_index.begin(), out_index.end()); 1028 from_index[dim] = result_shape.dimensions(dim) - 1 - out_index[dim]; 1030 return operand_literal.Get<ReturnT>(from_index);
|
/external/tensorflow/tensorflow/tools/compatibility/ |
D | tf_upgrade_v2_test.py | 298 ["%s=%d" % (from_name, from_index) 299 for from_index, from_name in enumerate(arg_names_v1)])
|
/external/tensorflow/tensorflow/python/eager/ |
D | pywrap_tfe_src.cc | 2740 tensorflow::Safe_PyObjectPtr from_index( local 2745 PyTuple_Pack(2, from_index.get(), to_index.get()));
|
/external/v8/src/compiler/ |
D | js-call-reducer.cc | 2006 TNode<Object> from_index = ArgumentOrZero(1); in ReduceArrayPrototypeIndexOfIncludes() local 2018 TNode<Smi> from_index_smi = CheckSmi(from_index); in ReduceArrayPrototypeIndexOfIncludes() 2024 from_index = SelectIf<Number>(cond) in ReduceArrayPrototypeIndexOfIncludes() 2035 context, elements, search_element, length, from_index); in ReduceArrayPrototypeIndexOfIncludes()
|
/external/v8/src/codegen/ |
D | code-stub-assembler.h | 1896 TNode<TIndex> from_index, TNode<TIndex> to_index, 1906 TNode<IntPtrT> from_index,
|
D | code-stub-assembler.cc | 4300 TNode<PropertyArray> array, TNode<IntPtrT> from_index, in FillPropertyArrayWithUndefined() argument 4305 array, kind, from_index, to_index, in FillPropertyArrayWithUndefined() 4315 TNode<TIndex> from_index, in FillFixedArrayWithValue() argument 4334 array, kind, from_index, to_index, in FillFixedArrayWithValue()
|