Searched refs:Len (Results 1 - 25 of 116) sorted by relevance

12345

/external/clang/lib/Lex/
H A DScratchBuffer.cpp34 SourceLocation ScratchBuffer::getToken(const char *Buf, unsigned Len, argument
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/clang/test/CodeGenCXX/
H A Dm64-ptr.cpp10 long Len; member in class:StringRef
/external/deqp/framework/common/
H A DtcuMatrixUtil.hpp48 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)
[all...]
/external/llvm/lib/Support/
H A DValgrind.cpp38 void llvm::sys::ValgrindDiscardTranslations(const void *Addr, size_t Len) { argument
42 VALGRIND_DISCARD_TRANSLATIONS(Addr, Len);
51 void llvm::sys::ValgrindDiscardTranslations(const void *Addr, size_t Len) { argument
/external/clang/include/clang/Lex/
H A DScratchBuffer.h37 SourceLocation getToken(const char *Buf, unsigned Len, const char *&DestPtr);
/external/llvm/lib/Target/R600/
H A DAMDGPUIntrinsicInfo.cpp49 unsigned Len) const {
50 if (!StringRef(Name, Len).startswith("llvm."))
H A DAMDGPUIntrinsicInfo.h39 unsigned lookupName(const char *Name, unsigned Len) const override;
/external/llvm/tools/llvm-as/
H A Dllvm-as.cpp61 int Len = IFN.length(); local
62 if (IFN[Len-3] == '.' && IFN[Len-2] == 'l' && IFN[Len-1] == 'l') {
/external/clang/lib/AST/
H A DSelectorLocationsKind.cpp31 unsigned Len = II ? II->getLength() : 0; local
32 return EndLoc.getLocWithOffset(-Len);
39 unsigned Len = /* selector id */ (II ? II->getLength() : 0) + /* ':' */ 1;
41 ++Len;
42 return ArgLoc.getLocWithOffset(-Len);
/external/clang/lib/Rewrite/Core/
H A DTokenRewriter.cpp83 unsigned Len = strlen(Val); local
90 Tok.setLocation(ScratchBuf->getToken(Val, Len, Spelling));
91 Tok.setLength(Len);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DAMDILIntrinsicInfo.h38 unsigned int lookupName(const char *Name, unsigned int Len) const;
/external/clang/lib/Edit/
H A DCommit.cpp88 unsigned Len; local
89 if (!canRemoveRange(range, Offs, Len)) {
94 addRemove(range.getBegin(), Offs, Len);
116 unsigned Len; local
117 if (!canInsert(range.getBegin(), Offs) || !canRemoveRange(range, Offs, Len)) {
122 addRemove(range.getBegin(), Offs, Len);
166 unsigned Len; local
167 if (!canReplaceText(loc, replacementText, Offs, Len)) {
172 addRemove(loc, Offs, Len);
208 FileOffset Offs, unsigned Len) {
207 addRemove(SourceLocation OrigLoc, FileOffset Offs, unsigned Len) argument
295 canRemoveRange(CharSourceRange range, FileOffset &Offs, unsigned &Len) argument
322 canReplaceText(SourceLocation loc, StringRef text, FileOffset &Offs, unsigned &Len) argument
[all...]
/external/llvm/include/llvm/Target/
H A DTargetIntrinsicInfo.h48 virtual unsigned lookupName(const char *Name, unsigned Len) const =0;
/external/mesa3d/src/gallium/drivers/radeon/
H A DAMDILIntrinsicInfo.h38 unsigned int lookupName(const char *Name, unsigned int Len) const;
/external/llvm/include/llvm/Transforms/Utils/
H A DBuildLibCalls.h47 Value *EmitStrNCmp(Value *Ptr1, Value *Ptr2, Value *Len, IRBuilder<> &B,
58 Value *EmitStrNCpy(Value *Dst, Value *Src, Value *Len, IRBuilder<> &B,
63 /// This expects that the Len and ObjSize have type 'intptr_t' and Dst/Src
65 Value *EmitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize,
70 /// a pointer, Val is an i32 value, and Len is an 'intptr_t' value.
71 Value *EmitMemChr(Value *Ptr, Value *Val, Value *Len, IRBuilder<> &B,
75 Value *EmitMemCmp(Value *Ptr1, Value *Ptr2, Value *Len, IRBuilder<> &B,
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMCTargetDesc.cpp89 unsigned Len = TT.size(); local
95 if (Len >= 5 && TT.substr(0, 4) == "armv")
97 else if (Len >= 7 && TT.substr(0, 6) == "armebv")
99 else if (Len >= 7 && TT.substr(0, 6) == "thumbv")
101 else if (Len >= 9 && TT.substr(0, 8) == "thumbebv")
119 if (Len >= Idx+2 && TT[Idx+1] == 'm') {
127 } else if (Len >= Idx+3 && TT[Idx+1] == 'e'&& TT[Idx+2] == 'm') {
135 } else if (Len >= Idx+2 && TT[Idx+1] == 's') {
156 if (Len >= Idx+3 && TT[Idx+1] == 't' && TT[Idx+2] == '2')
158 else if (Len >
[all...]
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_trees.c163 # define send_code(s, c, tree) send_bits(s, tree[c].Code, tree[c].Len)
169 send_bits(s, tree[c].Code, tree[c].Len); }
293 while (n <= 143) static_ltree[n++].Len = 8, bl_count[8]++;
294 while (n <= 255) static_ltree[n++].Len = 9, bl_count[9]++;
295 while (n <= 279) static_ltree[n++].Len = 7, bl_count[7]++;
296 while (n <= 287) static_ltree[n++].Len = 8, bl_count[8]++;
305 static_dtree[n].Len = 5;
340 static_ltree[i].Len, SEPARATOR(i, L_CODES+1, 5));
346 static_dtree[i].Len, SEPARATOR(i, D_CODES-1, 5));
510 tree[s->heap[s->heap_max]].Len
[all...]
/external/qemu/distrib/zlib-1.2.8/
H A Dtrees.c163 # define send_code(s, c, tree) send_bits(s, tree[c].Code, tree[c].Len)
169 send_bits(s, tree[c].Code, tree[c].Len); }
293 while (n <= 143) static_ltree[n++].Len = 8, bl_count[8]++;
294 while (n <= 255) static_ltree[n++].Len = 9, bl_count[9]++;
295 while (n <= 279) static_ltree[n++].Len = 7, bl_count[7]++;
296 while (n <= 287) static_ltree[n++].Len = 8, bl_count[8]++;
305 static_dtree[n].Len = 5;
340 static_ltree[i].Len, SEPARATOR(i, L_CODES+1, 5));
346 static_dtree[i].Len, SEPARATOR(i, D_CODES-1, 5));
510 tree[s->heap[s->heap_max]].Len
[all...]
/external/zlib/src/
H A Dtrees.c163 # define send_code(s, c, tree) send_bits(s, tree[c].Code, tree[c].Len)
169 send_bits(s, tree[c].Code, tree[c].Len); }
293 while (n <= 143) static_ltree[n++].Len = 8, bl_count[8]++;
294 while (n <= 255) static_ltree[n++].Len = 9, bl_count[9]++;
295 while (n <= 279) static_ltree[n++].Len = 7, bl_count[7]++;
296 while (n <= 287) static_ltree[n++].Len = 8, bl_count[8]++;
305 static_dtree[n].Len = 5;
340 static_ltree[i].Len, SEPARATOR(i, L_CODES+1, 5));
346 static_dtree[i].Len, SEPARATOR(i, D_CODES-1, 5));
510 tree[s->heap[s->heap_max]].Len
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
H A Dentropy.h48 int Len; member in struct:__anon13051
H A Dtreecoder.h55 int Len; member in struct:vp8_token_struct
/external/libvpx/libvpx/vp8/common/
H A Dentropy.h48 int Len; member in struct:__anon24842
H A Dtreecoder.h55 int Len; member in struct:vp8_token_struct
/external/llvm/include/llvm/Support/
H A DValgrind.h39 // Discard valgrind's translation of code in the range [Addr .. Addr + Len).
41 void ValgrindDiscardTranslations(const void *Addr, size_t Len);
/external/llvm/tools/llvm-dis/
H A Dllvm-dis.cpp165 int Len = IFN.length(); local
167 if (IFN[Len-3] == '.' && IFN[Len-2] == 'b' && IFN[Len-1] == 'c')

Completed in 479 milliseconds

12345