Searched defs:Len (Results 1 - 25 of 121) sorted by relevance

12345

/external/swiftshader/third_party/LLVM/lib/Support/
H A DMemory.cpp41 size_t Len) {
48 sys_icache_invalidate(Addr, Len);
59 const intptr_t EndLine = ((intptr_t) Addr + Len + LineSize - 1) & Mask;
71 char *End = Start + Len;
74 cacheflush((char*)Addr, Len, BCACHE);
79 ValgrindDiscardTranslations(Addr, Len);
40 InvalidateInstructionCache(const void *Addr, size_t Len) argument
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/test/CodeGenCXX/
H A Dm64-ptr.cpp10 long Len; member in class:StringRef
/external/llvm/lib/Support/
H A DValgrind.cpp39 void llvm::sys::ValgrindDiscardTranslations(const void *Addr, size_t Len) { argument
43 VALGRIND_DISCARD_TRANSLATIONS(Addr, Len);
52 void llvm::sys::ValgrindDiscardTranslations(const void *Addr, size_t Len) { argument
/external/llvm/lib/Fuzzer/test/
H A DStrcmpTest.cpp13 size_t Len = strlen(Str); local
14 if (Size < Len) return false;
15 if (Len >= sizeof(Buff)) return false;
16 memcpy(Buff, (char*)Data, Len);
17 Buff[Len] = 0;
/external/syslinux/gnu-efi/gnu-efi-3.0/lib/
H A Dconsole.c61 UINTN Len; local
67 Len = 0;
83 if (Len) {
85 Len -= 1;
91 if (Len < StrLen-1) {
92 InStr[Len] = Key.UnicodeChar;
94 InStr[Len+1] = 0;
95 uefi_call_wrapper(ConOut->OutputString, 2, ConOut, &InStr[Len]);
97 Len += 1;
103 InStr[Len]
[all...]
/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);
H A DHeaderMap.cpp158 unsigned Len = strnlen(Data, MaxLen); local
161 if (Len == MaxLen && Data[Len - 1])
164 return StringRef(Data, Len);
/external/clang/unittests/Rewrite/
H A DRewriteBufferTest.cpp18 static void tagRange(unsigned Offset, unsigned Len, StringRef tagName, argument
26 Buf.InsertTextBefore(Offset+Len, EndTag);
/external/llvm/include/llvm/DebugInfo/CodeView/
H A DCVRecord.h31 Error operator()(StreamRef Stream, uint32_t &Len, argument
49 Len = Prefix->RecordLen + 2;
H A DModuleSubstreamVisitor.h33 Error operator()(StreamRef Stream, uint32_t &Len, argument
52 Len = BlockHeader->BlockSize;
75 Error operator()(StreamRef Stream, uint32_t &Len, argument
85 Len = sizeof(FileChecksum) + Header->ChecksumSize;
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DLiveInterval.cpp40 size_t Len = ranges.size(); local
42 size_t Mid = Len >> 1;
44 Len = Mid;
46 I += Mid + 1, Len -= Mid + 1;
47 } while (Len);
/external/swiftshader/third_party/LLVM/tools/llvm-as/
H A Dllvm-as.cpp60 int Len = IFN.length(); local
61 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/
H A DTokenRewriter.cpp83 unsigned Len = strlen(Val); local
90 Tok.setLocation(ScratchBuf->getToken(Val, Len, Spelling));
91 Tok.setLength(Len);
/external/libvpx/libvpx/vp8/common/
H A Dtreecoder.h48 int Len; member in struct:vp8_token_struct
H A Dentropy.h46 int Len; member in struct:__anon11826
/external/swiftshader/third_party/LLVM/runtime/libprofile/
H A DCommonProfiling.c70 unsigned Len = strlen(argv[i]); local
71 memcpy(SavedArgs+Length, argv[i], Len);
72 Length += Len;
/external/compiler-rt/lib/profile/
H A DInstrProfilingUtil.c69 COMPILER_RT_VISIBILITY int lprofGetHostName(char *Name, int Len) { argument
73 strncpy(Name, N.nodename, Len);
/external/libcxx/benchmarks/
H A DGenerateInput.hpp43 inline std::string getRandomString(std::size_t Len) { argument
44 std::string str(Len, 0);
45 std::generate_n(str.begin(), Len, &getRandomChar);
/external/swiftshader/third_party/LLVM/tools/llc/
H A Dllc.cpp146 int Len = IFN.length(); local
147 if ((Len > 2) &&
148 IFN[Len-3] == '.' &&
149 ((IFN[Len-2] == 'b' && IFN[Len-1] == 'c') ||
150 (IFN[Len-2] == 'l' && IFN[Len-1] == 'l'))) {
/external/swiftshader/third_party/LLVM/tools/llvm-dis/
H A Dllvm-dis.cpp155 int Len = IFN.length(); local
157 if (IFN[Len-3] == '.' && IFN[Len-2] == 'b' && IFN[Len-1] == 'c')
/external/clang/lib/Analysis/
H A DScanfFormatString.cpp215 unsigned Len = I - Beg; local
216 if (ParseUTF8InvalidSpecifier(Beg, E, Len)) {
217 CS.setEndScanList(Beg + Len);
221 return !H.HandleInvalidScanfConversionSpecifier(FS, Beg, Len);
/external/llvm/lib/Fuzzer/
H A DFuzzerSHA1.cpp197 void fuzzer::ComputeSHA1(const uint8_t *Data, size_t Len, uint8_t *Out) { argument
200 sha1_write(&s, (const char*)Data, Len);
/external/llvm/lib/ObjectYAML/
H A DMachOYAML.cpp29 auto Len = strnlen(&Val[0], 16); local
30 Out << StringRef(&Val[0], Len);

Completed in 642 milliseconds

12345