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

1 2

  /external/clang/test/CodeGenCXX/
m64-ptr.cpp 10 long Len;
  /external/llvm/lib/Support/
Memory.cpp 35 extern "C" void sys_icache_invalidate(const void *Addr, size_t len);
41 size_t Len) {
48 sys_icache_invalidate(const_cast<void *>(Addr), Len);
59 const intptr_t EndLine = ((intptr_t) Addr + Len + LineSize - 1) & Mask;
71 const char *End = Start + Len;
76 cacheflush((long)Addr, (long)(Addr+Len), BCACHE);
79 cacheflush(const_cast<char *>(Start), Len, BCACHE);
84 ValgrindDiscardTranslations(Addr, Len);
  /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/tools/llvm-as/
llvm-as.cpp 60 int Len = IFN.length();
61 if (IFN[Len-3] == '.' && IFN[Len-2] == 'l' && IFN[Len-1] == 'l') {
  /external/clang/lib/Rewrite/Core/
TokenRewriter.cpp 83 unsigned Len = strlen(Val);
90 Tok.setLocation(ScratchBuf->getToken(Val, Len, Spelling));
91 Tok.setLength(Len);
  /external/llvm/runtime/libprofile/
CommonProfiling.c 80 unsigned Len = strlen(argv[i]);
81 memcpy(SavedArgs+Length, argv[i], Len);
82 Length += Len;
  /external/libvpx/vp8/common/
treecoder.h 51 int Len;
entropy.h 45 int Len;
  /external/llvm/lib/CodeGen/
LiveInterval.cpp 41 size_t Len = ranges.size();
43 size_t Mid = Len >> 1;
45 Len = Mid;
47 I += Mid + 1, Len -= Mid + 1;
48 } while (Len);
  /external/llvm/tools/llvm-dis/
llvm-dis.cpp 161 int Len = IFN.length();
163 if (IFN[Len-3] == '.' && IFN[Len-2] == 'b' && IFN[Len-1] == 'c')
  /external/giflib/
gifalloc.c 105 int i, j, Len = Object->ColorCount;
107 for (i = 0; i < Len; i += 4) {
108 for (j = 0; j < 4 && j < Len; j++) {
252 int Len,
269 ep->ByteCount=Len;
275 memcpy(ep->Bytes, ExtData, Len);
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCTargetDesc.cpp 41 unsigned Len = TT.size();
46 if (Len >= 5 && TT.substr(0, 4) == "armv")
48 else if (Len >= 6 && TT.substr(0, 5) == "thumb") {
50 if (Len >= 7 && TT[5] == 'v')
59 if (Len >= Idx+2 && TT[Idx+1] == 'm') {
66 } else if (Len >= Idx+3 && TT[Idx+1] == 'e'&& TT[Idx+2] == 'm') {
87 if (Len >= Idx+3 && TT[Idx+1] == 't' && TT[Idx+2] == '2')
89 else if (Len >= Idx+2 && TT[Idx+1] == 'm') {
98 if (Len >= Idx+3 && TT[Idx+1] == 't' && TT[Idx+2] == 'e')
102 } else if (SubVer == '4' && Len >= Idx+2 && TT[Idx+1] == 't'
    [all...]
  /external/clang/lib/Edit/
Commit.cpp 88 unsigned Len;
89 if (!canRemoveRange(range, Offs, Len)) {
94 addRemove(range.getBegin(), Offs, Len);
116 unsigned Len;
117 if (!canInsert(range.getBegin(), Offs) || !canRemoveRange(range, Offs, Len)) {
122 addRemove(range.getBegin(), Offs, Len);
166 unsigned Len;
167 if (!canReplaceText(loc, replacementText, Offs, Len)) {
172 addRemove(loc, Offs, Len);
208 FileOffset Offs, unsigned Len) {
    [all...]
  /external/llvm/tools/llc/
llc.cpp 281 int Len = IFN.length();
282 if ((Len > 2) &&
283 IFN[Len-3] == '.' &&
284 ((IFN[Len-2] == 'b' && IFN[Len-1] == 'c') ||
285 (IFN[Len-2] == 'l' && IFN[Len-1] == 'l'))) {
  /external/valgrind/unittest/
linear_solver.h 61 inline double Len () const { return sqrt(Len2()); }
264 if (derivative.Len() > 1000.0) {
265 derivative = derivative * (1000.0 / derivative.Len());
  /external/clang/lib/Lex/
Preprocessor.cpp 374 unsigned Len = getSpelling(Tok, Ptr, Invalid);
375 return StringRef(Ptr, Len);
381 void Preprocessor::CreateString(const char *Buf, unsigned Len, Token &Tok,
384 Tok.setLength(Len);
387 SourceLocation Loc = ScratchBuf->getToken(Buf, Len, DestPtr);
391 ExpansionLocEnd, Len);
  /external/llvm/include/llvm/Support/
GCOV.h 145 uint32_t Len = readInt() * 4;
146 StringRef Str = Buffer->getBuffer().slice(Cursor, Cursor+Len);
147 Cursor += Len;
  /external/llvm/lib/AsmParser/
LLLexer.cpp 447 unsigned Len = CurPtr-StartChar;
449 if (Len == strlen(#STR) && !memcmp(StartChar, #STR, strlen(#STR))) \
581 if (Len == strlen(STR) && !memcmp(StartChar, STR, strlen(STR))) { \
597 if (Len == strlen(#STR) && !memcmp(StartChar, #STR, strlen(#STR))) { \
653 int len = CurPtr-TokStart-3; local
654 uint32_t bits = len * 4;
655 APInt Tmp(bits, StringRef(TokStart+3, len), 16);
775 unsigned Len = CurPtr-TokStart;
776 uint32_t numBits = ((Len * 64) / 19) + 2;
777 APInt Tmp(numBits, StringRef(TokStart, Len), 10)
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
ExternalFunctions.cpp 402 size_t Len = strlen(Buffer);
403 memcpy(OutputBuffer, Buffer, Len + 1);
404 OutputBuffer += Len;
  /external/llvm/lib/VMCore/
Function.cpp 325 unsigned Len = ValName->getKeyLength();
328 if (Len < 5 || Name[4] != '.' || Name[0] != 'l' || Name[1] != 'l'
  /hardware/ti/wlan/wl1271/Test/
fwdriverdebug.c 156 unsigned char Len;
157 Len = *(unsigned char *)pParam;
159 os_memoryCopy(pTWD->hOs, Cfg.buf,(unsigned long*)pParam + sizeof(TI_UINT8),Len * 4 );
161 Cfg.len = Len;
165 Cfg.EleHdr.len = sizeof(Cfg) - sizeof(EleHdrStruct);
369 for (i=0;i<Len;i++) {
379 for (i=0;i<Len;i++) {
387 if(memcmp(CompBuf,buf,Len))
  /external/clang/lib/Frontend/
PrintPreprocessedOutput.cpp 154 void HandleNewlinesInToken(const char *TokStr, unsigned Len);
446 unsigned Len) {
448 for (; Len; --Len, ++TokStr) {
456 if (Len != 1 &&
459 ++TokStr, --Len;
528 unsigned Len = PP.getSpelling(Tok, TokPtr);
529 OS.write(TokPtr, Len);
534 Callbacks->HandleNewlinesInToken(TokPtr, Len);
  /external/llvm/lib/Transforms/Scalar/
DeadStoreElimination.cpp 199 uint64_t Len = cast<ConstantInt>(II->getArgOperand(0))->getZExtValue();
200 return AliasAnalysis::Location(II->getArgOperand(1), Len);
  /hardware/ti/wlan/wl1271/CUDK/configurationutility/src/
wpa_core.c 462 int len = os_strlen(pPinStr); local
464 if (len == 0)
467 pWpaCore->WpaSupplParams.pWscPin = (PS8)os_MemoryCAlloc(len, sizeof(char));
542 U8 Len;
773 Len = os_strlen ((PS8)pWpaCore->WpaSupplParams.client_cert);
774 os_memcpy(pWpaCore->WpaSupplParams.private_key,pWpaCore->WpaSupplParams.client_cert,Len);
775 os_memcpy(&pWpaCore->WpaSupplParams.private_key[Len-3],"pem",3);
  /external/clang/include/clang/Basic/
OnDiskHashTable.h 208 const std::pair<unsigned, unsigned>& Len =
210 InfoObj.EmitKey(out, I->key, Len.first);
211 InfoObj.EmitData(out, I->key, I->data, Len.second);
271 const unsigned len; member in class:clang::OnDiskChainedHashTable::iterator
274 iterator() : data(0), len(0) {}
277 : key(k), data(d), len(l), InfoObj(InfoObj) {}
279 data_type operator*() const { return InfoObj->ReadData(key, data, len); }
302 unsigned len = ReadUnalignedLE16(Items); local
304 for (unsigned i = 0; i < len; ++i) {

Completed in 1254 milliseconds

1 2