HomeSort by relevance Sort by last modified time
    Searched refs:last_index (Results 1 - 25 of 62) sorted by null

1 2 3

  /frameworks/base/tools/aapt2/tools/consumers/
positional_arguments.py 29 last_index = 0
31 output += input[last_index:arg.start]
33 last_index = arg.start + 1
34 output += input[last_index:]
  /external/swiftshader/third_party/subzero/pydir/
utils.py 39 last_index = len(path_list) - path_list[::-1].index(nacl)
40 return os.sep.join(path_list[:last_index])
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_queryobj.c 139 for (i = 0; i < query->last_index; i++) {
149 for (i = 0; i < query->last_index; i++) {
253 query->last_index = -1;
385 if (!query->bo || query->last_index * 2 + 1 >= 4096 / sizeof(uint64_t)) {
396 query->last_index = 0;
437 brw_write_depth_count(brw, query->bo, query->last_index * 2);
459 brw_write_depth_count(brw, query->bo, query->last_index * 2 + 1);
462 query->last_index++;
  /external/libjpeg-turbo/simd/
jdsample-altivec.c 46 last_index = {15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30}, local
71 p_last0 = vec_perm(last0, this0, last_index);
147 last_index={14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29}, local
186 p_lastcolsum_1h = vec_perm(thiscolsum_1l, thiscolsum_1h, last_index);
195 p_lastcolsum1h = vec_perm(thiscolsum1l, thiscolsum1h, last_index);
202 p_lastcolsum_1l = vec_perm(lastcolsum_1h, thiscolsum_1l, last_index);
203 p_lastcolsum_1h = vec_perm(thiscolsum_1l, thiscolsum_1h, last_index);
204 p_lastcolsum1l = vec_perm(lastcolsum1h, thiscolsum1l, last_index);
205 p_lastcolsum1h = vec_perm(thiscolsum1l, thiscolsum1h, last_index);
  /external/v8/src/regexp/
regexp-utils.cc 154 Object* last_index = JSRegExp::cast(recv)->LastIndex(); local
155 return last_index->IsSmi() && Smi::cast(last_index)->value() >= 0;
184 const int last_index = PositiveNumberToUint32(*last_index_obj); local
186 AdvanceStringIndex(isolate, string, last_index, unicode);
  /external/syslinux/com32/modules/
kontron_wdt.h 77 * @last_index: Last written index value
90 uint8_t last_index; member in struct:kempld_device_data
kontron_wdt.c 75 if (pld->last_index != index) {
77 pld->last_index = index;
119 iowrite8(pld->last_index | KEMPLD_MUTEX_KEY, pld->io_index);
  /external/curl/lib/
hash.c 362 int last_index = -1;
373 if(iter.slot_index != last_index) {
375 if(last_index >= 0) {
378 last_index = iter.slot_index;
  /art/compiler/
compiled_method_test.cc 177 constexpr size_t last_index = arraysize(patches) - 1u;
181 bool expected = (i != last_index ? i : 3u) == (j != last_index ? j : 3u);
188 bool expected = (i != last_index ? i : 3u) < (j != last_index ? j : 3u);
  /external/v8/src/runtime/
runtime-regexp.cc     [all...]
  /external/skia/src/shaders/gradients/
Sk4fGradientBase.cpp 197 const int last_index = count - 1 - first_index; local
223 const Sk4f clamp_color = pack_color(shader.getXformedColor(last_index, dstCS),
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_message.cc 2431 int last_index = -1; local
2788 int last_index = -1; local
3570 int last_index = -1; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_multibytecodec.py 258 last_index = len(self.text) - 1
260 encoder.encode(char, index == last_index)
  /external/python/cpython2/Lib/test/
test_multibytecodec.py 261 last_index = len(self.text) - 1
263 encoder.encode(char, index == last_index)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_multibytecodec.py 258 last_index = len(self.text) - 1
260 encoder.encode(char, index == last_index)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_multibytecodec.py 258 last_index = len(self.text) - 1
260 encoder.encode(char, index == last_index)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_multibytecodec.py 258 last_index = len(self.text) - 1
260 encoder.encode(char, index == last_index)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_multibytecodec.py 258 last_index = len(self.text) - 1
260 encoder.encode(char, index == last_index)
  /external/harfbuzz_ng/src/
hb-uniscribe.cc 670 unsigned int last_index = 0; local
675 if (event->index != last_index)
705 range->index_first = last_index;
708 last_index = event->index;
hb-coretext.cc 624 unsigned int last_index = 0; local
629 if (event->index != last_index)
685 range->index_first = last_index;
688 last_index = event->index;
    [all...]
  /external/v8/src/builtins/
builtins-regexp.cc 433 Node* const last_index = FastLoadLastIndex(object); local
434 var_result.Bind(TaggedIsPositiveSmi(last_index));
474 Node* const last_index = FastLoadLastIndex(object); local
475 Branch(TaggedIsPositiveSmi(last_index), if_isunmodified, if_ismodified);
1685 Node* last_index = LoadLastIndex(context, regexp, is_fastpath); local
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
rewrite.rb 123 indexed within the range <tt>op.index .. op.last_index</tt>
160 skip over the tokens indexed within the range <tt>op.index .. op.last_index</tt>
  /external/compiler-rt/lib/lsan/
lsan_common.cc 705 uptr last_index = root_regions->size() - 1; local
706 (*root_regions)[i] = (*root_regions)[last_index];
  /external/sfntly/cpp/src/sfntly/table/core/
os2_table.h 384 void SetUsLastCharIndex(int32_t last_index);
os2_table.cc 510 void OS2Table::Builder::SetUsLastCharIndex(int32_t last_index) {
511 InternalWriteData()->WriteUShort(Offset::kUsLastCharIndex, last_index);

Completed in 1950 milliseconds

1 2 3