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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/test/
method3.go 13 func (t T) Len() int { return len(t) }
16 Len() int
23 if i.Len() != 5 {
24 println("i.Len", i.Len())
27 if T.Len(t) != 5 {
28 println("T.Len", T.Len(t))
31 if (*T).Len(&t) != 5
    [all...]
  /prebuilts/go/linux-x86/test/
method3.go 13 func (t T) Len() int { return len(t) }
16 Len() int
23 if i.Len() != 5 {
24 println("i.Len", i.Len())
27 if T.Len(t) != 5 {
28 println("T.Len", T.Len(t))
31 if (*T).Len(&t) != 5
    [all...]
  /external/llvm/lib/Fuzzer/test/
StrcmpTest.cpp 10 size_t Len = strlen(Str);
11 if (Size < Len) return false;
12 if (Len >= sizeof(Buff)) return false;
13 memcpy(Buff, (char*)Data, Len);
14 Buff[Len] = 0;
  /external/clang/lib/Lex/
ScratchBuffer.cpp 34 SourceLocation ScratchBuffer::getToken(const char *Buf, unsigned Len,
36 if (BytesUsed+Len+2 > ScratchBufSize)
37 AllocScratchBuffer(Len+2);
47 memcpy(CurBuffer+BytesUsed, Buf, Len);
50 BytesUsed += Len+1;
57 return BufferStartLoc.getLocWithOffset(BytesUsed-Len-1);
  /external/llvm/lib/Support/
Valgrind.cpp 39 void llvm::sys::ValgrindDiscardTranslations(const void *Addr, size_t Len) {
43 VALGRIND_DISCARD_TRANSLATIONS(Addr, Len);
52 void llvm::sys::ValgrindDiscardTranslations(const void *Addr, size_t Len) {
  /external/clang/test/CodeGenCXX/
m64-ptr.cpp 10 long Len;
  /external/llvm/include/llvm/Support/
Valgrind.h 28 // Discard valgrind's translation of code in the range [Addr .. Addr + Len).
30 void ValgrindDiscardTranslations(const void *Addr, size_t Len);
  /external/deqp/framework/common/
tcuMatrixUtil.hpp 48 template <typename T, int Len>
49 inline Matrix<T, Len+1, Len+1> translationMatrix (const Vector<T, Len>& translation)
51 Matrix<T, Len+1, Len+1> res = Matrix<T, Len+1, Len+1>();
52 for (int row = 0; row < Len; row++)
53 res(row, Len) = translation.m_data[row]
    [all...]
  /external/lzma/CPP/Common/
StringConvert.cpp 18 srcString.Len(), resultString.GetBuffer(srcString.Len()),
19 srcString.Len() + 1);
32 wchar_t *destBuf = dest.GetBuffer(srcString.Len());
43 if (i != srcString.Len())
46 srcString.Len() - i, destBuf + i,
47 srcString.Len() + 1 - i);
62 unsigned numRequiredBytes = s.Len() * 2;
74 if (i != s.Len())
77 unsigned numChars = WideCharToMultiByte(codePage, 0, sp + i, s.Len() - i,
    [all...]
  /prebuilts/go/darwin-x86/src/container/heap/
heap_test.go 22 func (h *myHeap) Len() int {
23 return len(*h)
27 *h, v = (*h)[:h.Len()-1], (*h)[h.Len()-1]
36 n := h.Len()
63 for i := 1; h.Len() > 0; i++ {
80 for i := 1; h.Len() > 0; i++ {
104 for i := 1; h.Len() > 0; i++ {
123 for h.Len() > 0 {
124 i := h.Len() -
    [all...]
heap.go 25 // !h.Less(j, i) for 0 <= i < h.Len() and 2*i+1 <= j <= 2*i+2 and j < h.Len()
32 Push(x interface{}) // add x as element Len()
33 Pop() interface{} // remove and return element Len() - 1.
39 // Its complexity is O(n) where n = h.Len().
43 n := h.Len()
50 // O(log(n)) where n = h.Len().
54 up(h, h.Len()-1)
58 // and returns it. The complexity is O(log(n)) where n = h.Len().
62 n := h.Len() -
    [all...]
  /prebuilts/go/linux-x86/src/container/heap/
heap_test.go 22 func (h *myHeap) Len() int {
23 return len(*h)
27 *h, v = (*h)[:h.Len()-1], (*h)[h.Len()-1]
36 n := h.Len()
63 for i := 1; h.Len() > 0; i++ {
80 for i := 1; h.Len() > 0; i++ {
104 for i := 1; h.Len() > 0; i++ {
123 for h.Len() > 0 {
124 i := h.Len() -
    [all...]
heap.go 25 // !h.Less(j, i) for 0 <= i < h.Len() and 2*i+1 <= j <= 2*i+2 and j < h.Len()
32 Push(x interface{}) // add x as element Len()
33 Pop() interface{} // remove and return element Len() - 1.
39 // Its complexity is O(n) where n = h.Len().
43 n := h.Len()
50 // O(log(n)) where n = h.Len().
54 up(h, h.Len()-1)
58 // and returns it. The complexity is O(log(n)) where n = h.Len().
62 n := h.Len() -
    [all...]
  /external/clang/include/clang/Lex/
ScratchBuffer.h 37 SourceLocation getToken(const char *Buf, unsigned Len, const char *&DestPtr);
  /external/llvm/lib/Target/AMDGPU/
AMDGPUIntrinsicInfo.cpp 49 unsigned Len) const {
50 if (!StringRef(Name, Len).startswith("llvm."))
  /external/lzma/CPP/7zip/UI/Common/
DefaultName.cpp 10 int extLength = extension.Len();
11 int fileNameLength = fileName.Len();
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
af_irda.h 142 u_short Len;
146 u_char Len;
161 u_long Len;
165 u_long Len;
179 int Len;
184 int Len;
200 int Len;
205 int Len;
  /prebuilts/go/darwin-x86/src/sort/
export_test.go 8 heapSort(data, 0, data.Len())
  /prebuilts/go/linux-x86/src/sort/
export_test.go 8 heapSort(data, 0, data.Len())
  /external/llvm/include/llvm/Target/
TargetIntrinsicInfo.h 48 virtual unsigned lookupName(const char *Name, unsigned Len) const =0;
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILIntrinsicInfo.h 38 unsigned int lookupName(const char *Name, unsigned int Len) const;
  /prebuilts/go/darwin-x86/test/stress/
maps.go 27 Len() int
35 for m.Len() < 10000 {
36 Println("map at ", m.Len())
37 if m.Len()%100 == 0 {
58 for m.Len() > 0 {
74 s0 := len(m)
75 for len(m) == s0 {
89 key := rand.Intn(len(m))
95 func (m intMap) Len() int { return len(m)
    [all...]
  /prebuilts/go/linux-x86/test/stress/
maps.go 27 Len() int
35 for m.Len() < 10000 {
36 Println("map at ", m.Len())
37 if m.Len()%100 == 0 {
58 for m.Len() > 0 {
74 s0 := len(m)
75 for len(m) == s0 {
89 key := rand.Intn(len(m))
95 func (m intMap) Len() int { return len(m)
    [all...]
  /external/clang/lib/AST/
SelectorLocationsKind.cpp 31 unsigned Len = II ? II->getLength() : 0;
32 return EndLoc.getLocWithOffset(-Len);
39 unsigned Len = /* selector id */ (II ? II->getLength() : 0) + /* ':' */ 1;
41 ++Len;
42 return ArgLoc.getLocWithOffset(-Len);
  /external/llvm/include/llvm/Transforms/Utils/
BuildLibCalls.h 47 Value *EmitStrNCmp(Value *Ptr1, Value *Ptr2, Value *Len, IRBuilder<> &B,
57 Value *EmitStrNCpy(Value *Dst, Value *Src, Value *Len, IRBuilder<> &B,
61 /// This expects that the Len and ObjSize have type 'intptr_t' and Dst/Src
63 Value *EmitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize,
68 /// a pointer, Val is an i32 value, and Len is an 'intptr_t' value.
69 Value *EmitMemChr(Value *Ptr, Value *Val, Value *Len, IRBuilder<> &B,
73 Value *EmitMemCmp(Value *Ptr1, Value *Ptr2, Value *Len, IRBuilder<> &B,

Completed in 429 milliseconds

1 2 3 4 5 6 7 8 91011>>