/external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/ |
loop_emitter.cc | 108 /*start_index=*/0,
|
/external/tensorflow/tensorflow/core/kernels/ |
topk_op_gpu.cu.cc | 217 // `start_index`. 224 bool sorted = false, int start_index = 0, 232 int heap_end_index = start_index + k * step_size; 237 for (int index = start_index, slot = 0; index < heap_end_index;
|
/external/v8/src/compiler/ |
js-operator.h | 119 CallForwardVarargsParameters(uint32_t start_index, 121 : bit_field_(StartIndexField::encode(start_index) | 124 uint32_t start_index() const { return StartIndexField::decode(bit_field_); } function in class:v8::internal::compiler::final 635 const Operator* CallForwardVarargs(uint32_t start_index,
|
js-generic-lowering.cc | 560 Node* start_index = jsgraph()->Uint32Constant(p.start_index()); local 562 node->InsertInput(zone(), 2, start_index); local
|
js-create-lowering.cc | 501 int start_index = shared->internal_formal_parameter_count(); local 512 AllocateRestArguments(effect, control, args_state, start_index); 523 int length = std::max(0, argument_count - start_index); [all...] |
js-operator.cc | 117 return os << p.start_index() << ", " << p.tail_call_mode(); 745 uint32_t start_index, TailCallMode tail_call_mode) { 746 CallForwardVarargsParameters parameters(start_index, tail_call_mode); [all...] |
/frameworks/base/tools/aapt2/ |
StringPool.cpp | 437 const size_t start_index = out->size(); local 452 header->stringsStart = before_strings_index - start_index; 469 header->stylesStart = util::HostToDevice32(before_styles_index - start_index); 499 header->header.size = util::HostToDevice32(out->size() - start_index);
|
/art/profman/ |
profman.cc | 880 size_t start_index = 0; local [all...] |
/external/libtextclassifier/ |
text-classifier.cc | 524 // transitively does not overlap with the candidate on 'start_index'. If the end 528 int start_index) { 529 int first_non_overlapping = start_index + 1; 530 CodepointSpan conflicting_span = candidates[start_index].span; 552 FirstNonOverlappingSpanIndex(candidates, /*start_index=*/i); 593 const std::vector<AnnotatedSpan>& candidates, int start_index, 598 for (int i = start_index; i < end_index; ++i) { [all...] |
text-classifier.h | 207 // Resolves one conflict between candidates on indices 'start_index' 213 int start_index, int end_index,
|
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
expand.cc | 446 size_t start_index = std::min(distortion_lag, correlation_lag); local 455 &audio_history[signal_length - correlation_length - start_index 457 correlation_length + start_index + correlation_lags - 1); 466 &(audio_history[signal_length - correlation_length - start_index]), 473 best_index = best_index + start_index; [all...] |
/external/v8/src/regexp/ |
jsregexp.cc | [all...] |
/art/runtime/interpreter/ |
unstarted_runtime_test.cc | 320 for (int32_t start_index = 0; start_index < kBaseLen; ++start_index) { 324 if (start_index + count <= kBaseLen && trg_offset + count <= kBaseLen) { 326 tmp->SetVReg(1, start_index); 346 success = success && (data[i] == buf[i - trg_offset + start_index]); [all...] |
/external/clang/utils/perf-training/ |
perf-helper.py | 172 start_index = bisect.bisect_left(all_symbols, symbol) 173 for s in all_symbols[start_index:]:
|
/art/libartbase/base/ |
bit_vector.h | 80 uint32_t FindIndex(uint32_t start_index) const;
|
/art/runtime/ |
method_handles.h | 126 int32_t start_index,
|
/system/core/init/ |
builtins.cpp | 396 * start_index: index of the first path in the args list 398 static void import_late(const std::vector<std::string>& args, size_t start_index, size_t end_index) { 402 if (end_index <= start_index) { 409 for (size_t i = start_index; i < end_index; ++i) { [all...] |
/external/llvm/utils/ |
llvm-compilers-check | 242 abbrevs = [abbrev[start_index:start_index+3] 243 for abbrev, start_index
|
/external/opencv/cxcore/include/ |
cxtypes.h | 1092 int start_index, end_index; member in struct:CvSlice 1099 slice.start_index = start; 1190 int start_index; /* Index of the first element in the block + */ member in struct:CvSeqBlock 1191 /* sequence->first->start_index. */ [all...] |
/external/tensorflow/tensorflow/python/eager/ |
pywrap_tfe_src.cc | 508 // start_index is the index at which the Tuple/List attrs will start getting 510 void SetOpAttrs(TFE_Context* ctx, TFE_Op* op, PyObject* attrs, int start_index, 513 Py_ssize_t len = PyTuple_GET_SIZE(attrs) - start_index; 521 PyObject* py_key = PyTuple_GET_ITEM(attrs, start_index + i); 522 PyObject* py_value = PyTuple_GET_ITEM(attrs, start_index + i + 1); [all...] |
/external/toybox/toys/pending/ |
fdisk.c | 797 static int validate(int start_index, sector_t* begin,sector_t* end, sector_t start 801 for (i = start_index; i < num_parts; i++) { 816 int i, asked = 0, valid = 0, start_index = 0; local 831 start_index = 4; 834 if (asked) valid = validate(start_index, begin, end, start, asked); 838 for (i = start_index; i < num_parts; i++) 841 } while (!validate(start_index, begin, end, start, 0)); [all...] |
/external/autotest/client/cros/chameleon/ |
chameleon.py | 746 def get_captured_checksums(self, start_index=0, stop_index=None): 748 @param start_index: int, index of the frame to start with. 753 return self.chameleond_proxy.GetCapturedChecksums(start_index,
|
/external/opencv/cv/src/ |
cvshapedescr.cpp | 83 cvSetSeqReaderPos( &reader, slice.start_index ); 601 cvSetSeqReaderPos( &reader, slice.start_index ); 610 cvSetSeqReaderPos( &reader, slice.start_index ); [all...] |
/external/swiftshader/third_party/LLVM/utils/ |
llvmbuild | 287 abbrevs = [abbrev[start_index:start_index+3] 288 for abbrev, start_index
|
/external/v8/src/runtime/ |
runtime-scopes.cc | 568 int start_index = callee->shared()->internal_formal_parameter_count(); local 574 int num_elements = std::max(0, argument_count - start_index); 583 elements->set(i, *arguments[i + start_index], mode); [all...] |