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

<<11121314151617181920>>

  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_util.cpp 91 Interval::Interval(const Interval& that) : head(NULL), tail(NULL)
108 head = tail = NULL;
135 r->coalesce(&tail);
140 r->coalesce(&tail);
152 tail = r;
nv50_ir_build_util.h 38 // keeps inserting at head/tail of block
39 inline void setPosition(BasicBlock *, bool tail);
188 bool tail; member in class:nv50_ir::BuildUtil
213 tail = atTail;
223 tail = after;
247 tail ? bb->insertTail(i) : bb->insertHead(i);
249 if (tail) {
  /external/deqp-deps/SPIRV-Tools/source/opt/
merge_return_pass.cpp 189 SpvOp tail_opcode = block->tail()->opcode();
204 if (block->tail()->opcode() == SpvOpReturn ||
205 block->tail()->opcode() == SpvOpReturnValue) {
442 if (block->tail()->opcode() != SpvOpReturn &&
443 block->tail()->opcode() != SpvOpReturnValue)
467 &*block->tail().InsertBefore(std::move(return_store));
473 auto terminator = *block->tail();
488 &*block->tail().InsertBefore(std::move(value_store));
558 Instruction& terminator = *block.tail();
581 if (block->tail()->opcode() == SpvOpReturnValue)
    [all...]
  /external/python/cpython3/Lib/
os.py 206 head, tail = path.split(name)
207 if not tail:
208 head, tail = path.split(head)
209 if head and tail and not path.exists(head):
216 if isinstance(tail, bytes):
218 if tail == cdir: # xxx/newdir/. exists if xxx/newdir exists
240 head, tail = path.split(name)
241 if not tail:
242 head, tail = path.split(head)
243 while head and tail
    [all...]
posixpath.py 99 # Split a path in head (everything up to the last '/') and tail (the
100 # rest). If the path ends in '/', tail will be empty. If there is no
105 """Split a pathname. Returns tuple "(head, tail)" where "tail" is
110 head, tail = p[:i], p[i:]
113 return head, tail
142 # Return the tail (basename) part of a path, same as split(path)[1].
327 tail = path[j:]
330 path += tail
  /external/swiftshader/third_party/SPIRV-Tools/source/opt/
merge_return_pass.cpp 189 SpvOp tail_opcode = block->tail()->opcode();
204 if (block->tail()->opcode() == SpvOpReturn ||
205 block->tail()->opcode() == SpvOpReturnValue) {
458 if (block->tail()->opcode() != SpvOpReturn &&
459 block->tail()->opcode() != SpvOpReturnValue)
483 &*block->tail().InsertBefore(std::move(return_store));
489 auto terminator = *block->tail();
504 &*block->tail().InsertBefore(std::move(value_store));
574 Instruction& terminator = *block.tail();
597 if (block->tail()->opcode() == SpvOpReturnValue)
    [all...]
  /external/python/cpython3/Objects/
obmalloc.c 2031 uint8_t *tail; \/* data + nbytes == pointer to tail pad bytes *\/ local
2146 uint8_t *tail; \/* data + nbytes == pointer to tail pad bytes *\/ local
2275 const uint8_t *tail; local
2325 const uint8_t *tail; local
    [all...]
  /external/eigen/Eigen/src/Cholesky/
LLT.h 260 ColXprSegment x(mat.col(i).tail(rs));
261 TempVecSegment y(temp.tail(rs));
289 temp.tail(rs) -= (wj/Ljj) * mat.col(j).tail(rs);
291 mat.col(j).tail(rs) = (nLjj/Ljj) * mat.col(j).tail(rs) + (nLjj * sigma*numext::conj(wj)/gamma)*temp.tail(rs);
436 abs_col_sum = m_matrix.col(col).tail(size - col).template lpNorm<1>() + m_matrix.row(col).head(col).template lpNorm<1>();
438 abs_col_sum = m_matrix.col(col).head(col).template lpNorm<1>() + m_matrix.row(col).tail(size - col).template lpNorm<1>();
  /external/libxml2/os400/dlfcn/
dlfcn.c 351 dlmakepath(char * path, size_t pathlen, const char * tail, size_t taillen)
356 if (taillen && tail[0] == '/')
360 while (taillen && *tail == '/') {
361 tail++;
369 if (tail[i] == '/')
372 if (*tail == '.')
376 if (tail[1] != '.')
382 tail += i;
393 memcpy(path + pathlen, tail, i);
  /external/python/pyasn1/pyasn1/codec/ber/
decoder.py 69 head, tail = substrate[:length], substrate[length:]
73 return value, tail
109 head, tail = substrate[:length], substrate[length:]
112 return self._createComponent(asn1Spec, tagSet, 0, **options), tail
116 return self._createComponent(asn1Spec, tagSet, value, **options), tail
134 head, tail = substrate[:length], substrate[length:]
153 return self._createComponent(asn1Spec, tagSet, value, **options), tail
178 return self._createComponent(asn1Spec, tagSet, bitString, **options), tail
225 head, tail = substrate[:length], substrate[length:]
232 return self._createComponent(asn1Spec, tagSet, head, **options), tail
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/etree/
ElementTree.py 88 # <li>an optional <i>tail</i> string.</li>
172 # <tag attrib>text<child/>...</tag>tail
203 tail = None # text after end tag, if any variable in class:Element
236 elem.tail = self.tail
406 # all attributes, and sets the <b>text</b> and <b>tail</b> attributes
412 self.text = self.tail = None
507 if e.tail:
508 yield e.tail
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/etree/
ElementTree.py 88 # <li>an optional <i>tail</i> string.</li>
172 # <tag attrib>text<child/>...</tag>tail
203 tail = None # text after end tag, if any variable in class:Element
236 elem.tail = self.tail
406 # all attributes, and sets the <b>text</b> and <b>tail</b> attributes
412 self.text = self.tail = None
507 if e.tail:
508 yield e.tail
    [all...]
  /external/python/cpython2/Lib/xml/etree/
ElementTree.py 88 # <li>an optional <i>tail</i> string.</li>
172 # <tag attrib>text<child/>...</tag>tail
203 tail = None # text after end tag, if any variable in class:Element
236 elem.tail = self.tail
406 # all attributes, and sets the <b>text</b> and <b>tail</b> attributes
412 self.text = self.tail = None
507 if e.tail:
508 yield e.tail
943 if elem.tail
    [all...]
  /external/libffi/testsuite/lib/
libffi.exp 53 set output_file "[file rootname [file tail $prog]].s"
57 set output_file "[file rootname [file tail $prog]].exe"
66 set output_file "./[file rootname [file tail $prog]].exe"
271 set nshort [file tail [file dirname $test]]/[file tail $test]
305 set testname [file tail $test]
  /external/mesa3d/src/gallium/auxiliary/hud/
hud_driver_query.c 208 unsigned head, tail; member in struct:query_info
241 struct pipe_query *query = info->query[info->tail];
255 if (info->tail == info->head)
258 info->tail = (info->tail+1) % NUM_QUERIES;
262 if ((info->head+1) % NUM_QUERIES == info->tail) {
  /external/mesa3d/src/glx/
dri_common.c 371 struct glx_config head, *tail, *m; local
373 tail = &head;
376 tail->next = createDriMode(core, m, driConfigs);
377 if (tail->next == NULL) {
383 tail = tail->next;
driwindows_glx.c 461 struct glx_config head, *tail, *m; local
463 tail = &head;
490 tail->next = &config->base;
491 if (tail->next == NULL)
497 tail = tail->next;
  /external/python/cpython2/Modules/_ctypes/libffi/testsuite/lib/
libffi.exp 53 set output_file "[file rootname [file tail $prog]].s"
57 set output_file "[file rootname [file tail $prog]].exe"
66 set output_file "./[file rootname [file tail $prog]].exe"
271 set nshort [file tail [file dirname $test]]/[file tail $test]
305 set testname [file tail $test]
  /external/python/cpython3/Lib/xml/etree/
ElementTree.py 24 'tail' - an optional string containing text after the element's end tag.
141 <tag attrib>text<child/>...</tag>tail
159 tail = None variable in class:Element
201 elem.tail = self.tail
341 the text and tail attributes to None.
346 self.text = self.tail = None
438 t = e.tail
    [all...]
  /art/libartbase/base/
scoped_arena_allocator.cc 63 Arena* tail = top_arena_->next_; local
66 top_arena_->next_ = tail;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
methfix.py 86 head, tail = os.path.split(filename)
87 tempname = os.path.join(head, '@' + tail)
pathfix.py 101 head, tail = os.path.split(filename)
102 tempname = os.path.join(head, '@' + tail)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/webchecker/
websucker.py 115 head, tail = os.path.split(dir)
116 if not tail:
  /external/antlr/runtime/ObjC/Framework/
UnbufferedCommonTreeNodeStream.h 56 NSUInteger tail; variable
72 @property (assign, getter=getTail, setter=setTail:) NSUInteger tail; variable
  /external/autotest/client/site_tests/network_WiFiTxRx/
network-flipflop.sh 22 tail --pid $$ -f $stderrlog >&$oldstderr &
23 openvt -s -w -- tail --pid $$ -f $stderrlog &

Completed in 1912 milliseconds

<<11121314151617181920>>