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

<<21222324252627282930>>

  /external/lz4/tests/
Makefile 298 $(DD) if=tmp-dict-$$l of=tmp-dict-$$l-tail bs=1 count=65536 skip=$$((l > 65536 ? l - 65536 : 0)); \
299 < tmp-dict-$$l $(LZ4) -D stdin tmp-dict-data-128KB | $(LZ4) -dD tmp-dict-$$l-tail | $(DIFF) - tmp-dict-data-128KB; \
300 < tmp-dict-$$l-tail $(LZ4) -D stdin tmp-dict-data-128KB | $(LZ4) -dD tmp-dict-$$l | $(DIFF) - tmp-dict-data-128KB; \
  /external/mesa3d/src/gallium/state_trackers/clover/api/
transfer.cpp 41 for (auto x : zip(tail(pitch),
85 if (any_of(greater(), map(multiplies(), pitch, region), tail(pitch)))
127 if (any_of(greater(), map(multiplies(), pitch, region), tail(pitch)))
  /external/python/cpython2/Lib/
sre_parse.py 743 tail = source.get()
744 if tail == ")":
746 elif tail:
  /external/python/cpython3/Objects/
complexobject.c 364 for pre or a pointer to a constant. lead and tail
368 const char *tail = ""; local
398 tail = ")";
400 result = PyUnicode_FromFormat("%s%s%sj%s", lead, re, im, tail);
    [all...]
  /external/skia/src/gpu/
GrResourceCache.cpp 680 // Fill the whole we will create in the array with the tail object, adjust its index, and
682 GrGpuResource* tail = *(fNonpurgeableResources.end() - 1);
684 fNonpurgeableResources[*index] = tail;
685 *tail->cacheAccess().accessCacheIndex() = *index;
    [all...]
  /external/skqp/src/gpu/
GrResourceCache.cpp 639 // Fill the whole we will create in the array with the tail object, adjust its index, and
641 GrGpuResource* tail = *(fNonpurgeableResources.end() - 1);
643 fNonpurgeableResources[*index] = tail;
644 *tail->cacheAccess().accessCacheIndex() = *index;
    [all...]
  /external/swiftshader/third_party/SPIRV-Tools/source/opt/
loop_descriptor.cpp 153 Instruction* branch_conditional = &*condition_block->tail();
322 assert(preheader->tail()->opcode() == SpvOpBranch &&
325 assert(preheader->tail()->GetSingleWordOperand(0) ==
547 // they are by construction at the tail of the loop list.
    [all...]
  /external/toybox/lib/
xwrap.c 538 struct string_list *new = llist_pop(&todo), **tail; local
600 tail = splitpath(libbuf, &new);
602 // symlink to "/" will return null and leave tail alone
604 *tail = todo;
  /external/flac/libFLAC/
stream_encoder.c 87 unsigned tail; member in struct:__anon22448
4347 unsigned tail = fifo->tail; local
    [all...]
  /external/eigen/Eigen/src/SVD/
BDCSVD.h 288 m_singularValues.tail(m_diagSize - i - 1).setZero();
361 if( (A.col(j).tail(n2).array()!=Literal(0)).any() )
363 A2.col(k2) = A.col(j).tail(n2);
    [all...]
  /external/mesa3d/src/compiler/nir/
nir_serialize.c 401 nir_deref *tail = &deref_var->deref; local
407 nir_deref_array *deref_array = nir_deref_array_create(tail);
417 nir_deref_struct *deref_struct = nir_deref_struct_create(tail, index);
427 tail->child = deref;
428 tail = deref;
889 /* Don't actually create a new block. Just use the one from the tail of
890 * the list. NIR guarantees that the tail of the list is a block and that
    [all...]
  /external/mesa3d/src/amd/common/
ac_nir_to_llvm.c 2701 nir_deref *tail = &deref->deref; local
3123 nir_deref *tail = deref->deref.child; local
4697 const nir_deref *tail = &deref->deref; local
    [all...]
  /external/v8/src/compiler/
register-allocator.cc 1291 UseInterval* tail = nullptr; local
2852 LiveRange* tail = SplitRangeAt(range, next_reg->pos().PrevStart()); local
3122 LiveRange* tail = SplitRangeAt(current, pos); local
3267 LiveRange* tail = local
    [all...]
  /external/golang-protobuf/proto/
text_parser.go 244 ch, tail, err := unescape(s)
249 s = tail
254 func unescape(s string) (ch string, tail string, err error) {
  /external/libpng/contrib/tools/
pngfix.c 658 IDAT_list_extend(struct IDAT_list *tail)
661 struct IDAT_list *next = tail->next;
668 unsigned int length = 2 * tail->length;
670 if (length < tail->length) /* arithmetic overflow */
671 length = tail->length;
682 tail->next = next;
    [all...]
  /external/syzkaller/vendor/github.com/golang/protobuf/proto/
text_parser.go 244 ch, tail, err := unescape(s)
249 s = tail
254 func unescape(s string) (ch string, tail string, err error) {
  /external/wpa_supplicant_8/src/radius/
radius_server.c 2178 struct radius_client *clients, *tail, *entry; local
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
misc.c 6 * Compute follow lists onto tail ends of rules.
589 ListNode *p, *tail; local
601 sentinel->elem = (char *)p; /* set tail pointer */
605 tail = (ListNode *) (*list)->elem; /* get tail pointer */
606 tail->next = p;
607 (*list)->elem = (char *) p; /* reset tail */
    [all...]
  /art/runtime/interpreter/mterp/x86_64/
main.S 414 // Call C++ to do debug checks and return to the handler using tail call.
421 pushq %rax # Return address for the tail call.
  /bionic/libc/arch-mips/bionic/
setjmp.S 300 b setjmp_common # tail call
313 b setjmp_common # tail call
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
bytearrayobject.c 720 /* Move the tail of the bytes, in one chunk */
2193 char swap, *head, *tail; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_math.py 496 tail = max(len(bin(abs(tmant)))-2 - mant_dig, etiny - texp)
497 if tail > 0:
498 h = 1 << (tail-1)
500 texp += tail
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
bytearrayobject.c 714 /* Move the tail of the bytes, in one chunk */
2189 char swap, *head, *tail; local
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
regexec.c 2893 const UChar *tail; local
2948 const UChar *tail; local
    [all...]
  /external/autotest/client/common_lib/hosts/
base_classes.py 363 cmd = 'df -PB %d %s | tail -1' % (one_mb, path)
393 df = self.run('df -Pi %s | tail -1' % path).stdout.split()

Completed in 5786 milliseconds

<<21222324252627282930>>