HomeSort by relevance Sort by last modified time
    Searched refs:tail (Results 576 - 600 of 890) sorted by null

<<21222324252627282930>>

  /external/skqp/src/pathops/
SkOpContour.h 358 SkAssertResult(segment->addCurveTo(segment->tail(), segment->head(), path));
365 SkAssertResult(segment->addCurveTo(segment->head(), segment->tail(), path));
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/git-svn/
git-llvm 85 (head, tail) = os.path.split(d)
87 return tail
  /external/tensorflow/tensorflow/contrib/opt/python/training/
ggt.py 285 tail = moment1_2d - math_ops.matmul(
297 scaled_tail = math_ops.divide(tail, sigma_sqrt_min)
  /external/vboot_reference/utility/
tpmc.c 42 char tail[1]; local
45 int n = sscanf(string, format, value, tail);
  /external/vulkan-headers/registry/
cgenerator.py 256 body += self.genOpts.apientry + noneStr(elem.tail)
258 body += noneStr(elem.text) + noneStr(elem.tail)
  /external/oj-libjdwp/src/share/back/
eventHelper.c 117 HelperCommand *tail; member in struct:__anon34619
182 queue->tail->next = command;
184 queue->tail = command;
235 if (queue->tail == command) {
236 queue->tail = NULL;
723 commandQueue.tail = NULL;
    [all...]
  /external/u-boot/drivers/mtd/nand/
omap_gpmc.c 431 uint32_t head, tail; local
449 tail = len % 4;
451 ret = __read_prefetch_aligned(chip, (uint32_t *)buf, len - tail);
455 } else if (tail) {
456 buf += len - tail;
457 omap_nand_read(mtd, buf, tail);
  /external/guava/guava-tests/test/com/google/common/collect/
IterablesTest.java 678 Iterable<String> tail = skip(list, 1);
679 Iterator<String> tailIterator = tail.iterator();
688 Iterable<String> tail = skip(set, 1);
691 assertThat(tail).iteratesAs("c", "A", "B", "C");
696 Iterable<String> tail = skip(list, 1);
699 assertThat(tail).iteratesAs("B", "C", "a");
704 Iterable<String> tail = skip(set, 2);
707 assertFalse(tail.iterator().hasNext());
712 Iterable<String> tail = skip(list, 2);
714 assertTrue(Iterables.isEmpty(tail));
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
import.c 2208 PyObject *parent, *head, *next, *tail; local
    [all...]
  /external/curl/lib/
http2.c 2331 struct Curl_http2_dep **tail; local
    [all...]
  /external/llvm/lib/Support/
regengine.inc 304 const char *tail; /* string unmatched by rest of RE */
357 tail = slow(m, rest, stop, es, stopst);
358 if (tail == stop)
382 tail = slow(m, rest, stop, es, stopst);
383 if (tail == stop)
421 tail = slow(m, rest, stop, es, stopst);
422 if (tail == stop)
  /external/python/cpython2/Python/
import.c 2248 PyObject *parent, *head, *next, *tail; local
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
regengine.inc 304 const char *tail; /* string unmatched by rest of RE */
357 tail = slow(m, rest, stop, es, stopst);
358 if (tail == stop)
382 tail = slow(m, rest, stop, es, stopst);
383 if (tail == stop)
421 tail = slow(m, rest, stop, es, stopst);
422 if (tail == stop)
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
regengine.inc 304 const char *tail; /* string unmatched by rest of RE */
357 tail = slow(m, rest, stop, es, stopst);
358 if (tail == stop)
382 tail = slow(m, rest, stop, es, stopst);
383 if (tail == stop)
421 tail = slow(m, rest, stop, es, stopst);
422 if (tail == stop)
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
regengine.inc 304 const char *tail; /* string unmatched by rest of RE */
357 tail = slow(m, rest, stop, es, stopst);
358 if (tail == stop)
382 tail = slow(m, rest, stop, es, stopst);
383 if (tail == stop)
421 tail = slow(m, rest, stop, es, stopst);
422 if (tail == stop)
  /bionic/libc/upstream-netbsd/lib/libc/regex/
engine.c 366 const char *tail; /* string unmatched by rest of RE */ local
426 tail = slow(m, rest, stop, es, stopst);
427 if (tail == stop)
455 tail = slow(m, rest, stop, es, stopst);
456 if (tail == stop)
496 tail = slow(m, rest, stop, es, stopst);
497 if (tail == stop)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/
import.c 2123 PyObject *parent, *head, *next, *tail; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
import.c 2123 PyObject *parent, *head, *next, *tail; local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
config_file.c 381 struct wpa_ssid *ssid, *tail, *head; local
398 tail = head = config->ssid;
399 while (tail && tail->next)
400 tail = tail->next;
425 head = tail = ssid;
427 tail->next = ssid;
428 tail = ssid;
    [all...]
  /art/libartbase/base/
mem_map_test.cc 489 MemMap tail = map.RemapAtEnd(map.Begin() + offset, local
496 ASSERT_TRUE(tail.IsValid()) << error_msg;
499 ASSERT_EQ(static_cast<size_t>(kPageSize), tail.Size());
500 ASSERT_EQ(tail.Begin(), map.Begin() + map.Size());
501 ASSERT_EQ(data[offset], *tail.Begin());
    [all...]
  /bionic/libc/bionic/
fts.c 541 FTSENT *cur, *tail; local
642 for (head = tail = NULL, nitems = 0; dirp && (dp = readdir(dirp));) {
729 head = tail = p;
731 tail->fts_link = p;
732 tail = p;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
gcmodule.c 278 PyGC_Head *tail; local
281 tail = to->gc.gc_prev;
282 tail->gc.gc_next = from->gc.gc_next;
283 tail->gc.gc_next->gc.gc_prev = tail;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
gcmodule.c 238 PyGC_Head *tail; local
241 tail = to->gc.gc_prev;
242 tail->gc.gc_next = from->gc.gc_next;
243 tail->gc.gc_next->gc.gc_prev = tail;
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
RedundentExprEliminator.java 603 MultistepExprHolder tail = null; local
626 tail = head;
629 tail.m_next = new MultistepExprHolder(owner2, stepCount, null);
630 tail = tail.m_next;
    [all...]
  /external/deqp-deps/SPIRV-Tools/source/opt/
loop_unswitch_pass.cpp 211 if_block->tail()->SetInOperand(0, {loop_pre_header->id()});
262 Instruction* iv_condition = &*switch_block_->tail();
418 context_->KillInst(&*if_block->tail());
520 if (bb.begin() != bb.tail() ||
656 context_->KillInst(&*bb->tail());
    [all...]

Completed in 4783 milliseconds

<<21222324252627282930>>