Searched refs:LineLen (Results 1 – 5 of 5) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/LineEditor/ |
D | LineEditor.cpp | 258 int LineLen = 0; in readLine() local 259 const char *Line = ::el_gets(Data->EL, &LineLen); in readLine() 262 if (!Line || LineLen == 0) in readLine() 266 while (LineLen > 0 && in readLine() 267 (Line[LineLen - 1] == '\n' || Line[LineLen - 1] == '\r')) in readLine() 268 --LineLen; in readLine() 271 if (LineLen > 0) in readLine() 274 return std::string(Line, LineLen); in readLine()
|
/third_party/giflib/ |
D | egif_lib.c | 40 int LineLen); 455 EGifPutLine(GifFileType * GifFile, GifPixelType *Line, int LineLen) in EGifPutLine() argument 467 if (!LineLen) in EGifPutLine() 468 LineLen = GifFile->Image.Width; in EGifPutLine() 469 if (Private->PixelCount < (unsigned)LineLen) { in EGifPutLine() 473 Private->PixelCount -= LineLen; in EGifPutLine() 478 for (i = 0; i < LineLen; i++) in EGifPutLine() 481 return EGifCompressLine(GifFile, Line, LineLen); in EGifPutLine() 894 const int LineLen) in EGifCompressLine() argument 907 while (i < LineLen) { /* Decode LineLen items. */ in EGifCompressLine()
|
D | dgif_lib.c | 44 int LineLen); 483 DGifGetLine(GifFileType *GifFile, GifPixelType *Line, int LineLen) in DGifGetLine() argument 494 if (!LineLen) in DGifGetLine() 495 LineLen = GifFile->Image.Width; in DGifGetLine() 497 if ((Private->PixelCount -= LineLen) > 0xffff0000UL) { in DGifGetLine() 502 if (DGifDecompressLine(GifFile, Line, LineLen) == GIF_OK) { in DGifGetLine() 849 DGifDecompressLine(GifFileType *GifFile, GifPixelType *Line, int LineLen) in DGifDecompressLine() argument 871 while (StackPtr != 0 && i < LineLen) in DGifDecompressLine() 875 while (i < LineLen) { /* Decode LineLen items. */ in DGifDecompressLine() 943 while (StackPtr != 0 && i < LineLen) in DGifDecompressLine()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/ |
D | BTFDebug.cpp | 770 uint32_t FuncLen = 4, LineLen = 4; in emitBTFExtSection() local 778 LineLen += BTF::SecLineInfoSize; in emitBTFExtSection() 779 LineLen += LineSec.second.size() * BTF::BPFLineInfoSize; in emitBTFExtSection() 792 OS.EmitIntValue(LineLen, 4); in emitBTFExtSection() 793 OS.EmitIntValue(FuncLen + LineLen, 4); in emitBTFExtSection()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
D | README.txt | 330 int foo(int StackPtr, unsigned char *Line, unsigned char *Stack, int LineLen) { 334 while (StackPtr != 0 && i < (((LineLen) < (32768))? (LineLen) : (32768))) 336 if (LineLen > 32768) 338 while (StackPtr != 0 && i < LineLen)
|