HomeSort by relevance Sort by last modified time
    Searched full:strstart (Results 1 - 25 of 86) sorted by null

1 2 3 4

  /sdk/emulator/opengl/shared/OpenglOsUtils/
osProcessUnix.cpp 46 char *strStart = NULL;
65 if (!strStart) {
67 strStart = &tmpcmd[i];
77 else if (tmpcmd[i] == *strStart) {
78 t = strStart;
79 strStart = NULL;
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
fx_zlib_deflate.c 349 s->strstart = 0;
364 str = s->strstart;
374 s->strstart = str;
378 s->strstart += s->lookahead;
379 s->block_start = (long)s->strstart;
588 wraplen = 6 + (s->strstart ? 4 : 0);
749 if (s->strstart != 0) header |= PRESET_DICT;
756 if (s->strstart != 0) {
933 s->strstart = 0
    [all...]
  /external/qemu/distrib/zlib-1.2.8/
deflate.c 350 s->strstart = 0;
365 str = s->strstart;
375 s->strstart = str;
379 s->strstart += s->lookahead;
380 s->block_start = (long)s->strstart;
589 wraplen = 6 + (s->strstart ? 4 : 0);
750 if (s->strstart != 0) header |= PRESET_DICT;
757 if (s->strstart != 0) {
    [all...]
  /external/zlib/src/
deflate.c 350 s->strstart = 0;
365 str = s->strstart;
375 s->strstart = str;
379 s->strstart += s->lookahead;
380 s->block_start = (long)s->strstart;
589 wraplen = 6 + (s->strstart ? 4 : 0);
750 if (s->strstart != 0) header |= PRESET_DICT;
757 if (s->strstart != 0) {
    [all...]
  /external/chromium_org/third_party/zlib/
deflate.c 340 s->strstart = length;
515 wraplen = 6 + (s->strstart ? 4 : 0);
673 if (s->strstart != 0) header |= PRESET_DICT;
680 if (s->strstart != 0) {
874 s->strstart = 0;
    [all...]
mixed-source.patch 163 register Bytef *scan = s->window + s->strstart; /* current string */
166 Assert(cur_match < s->strstart, "no future");
188 - * the 256th check will be made at strstart+258.
198 + * the 256th check will be made at strstart+258.
282 register Bytef *scan = s->window + s->strstart; /* current string */
285 register Bytef *strend = s->window + s->strstart + MAX_MATCH;
317 n = read_buf(s->strm, s->window + s->strstart + s->lookahead, more);
319 + class_set(s, s->strstart + s->lookahead, n, s->strm->clas);
398 - s->strstart - hash_head <= MAX_DIST(s)) {
400 + s->match_length = cookie_match(s, s->strstart, input_length)
    [all...]
  /cts/suite/audio_quality/lib/src/task/
TaskCase.cpp 244 size_t strStart = 0;
254 matchStart = strStart + pmatch[1].rm_so;
255 matchEnd = strStart + pmatch[1].rm_eo;
256 translated.append(StringUtil::substr(orig, strStart, pmatch[1].rm_so - 1)); //-1 for $
266 LOGD("match found strStart %d, matchStart %d, matchEnd %d, converted str %s",
267 strStart, matchStart, matchEnd, translated.string());
269 strStart += pmatch[1].rm_eo;
  /external/chromium_org/third_party/libxslt/libxslt/
attrvt.c 42 int strstart; /* is the start a string */ member in struct:_xsltAttrVT
77 cur->strstart = 0;
100 if (avt->strstart == 1) {
239 avt->strstart = 1;
285 avt->strstart = 0;
318 avt->strstart = 1;
368 str = cur->strstart;
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/
opt-gvmat64.asm 110 extern strstart:DWORD
146 %define strstart [ rcx + dsStrStart]
232 ;;; register Bytef *scan = s->window + s->strstart;
234 mov ebp, strstart
244 ;;; IPos limit = s->strstart > (IPos)MAX_DIST(s) ?
245 ;;; s->strstart - (IPos)MAX_DIST(s) : NIL;
  /external/zlib/src/contrib/gcc_gvmat64/
gvmat64.S 132 printf("#define dsStrStart %u\n",(int)(((char*)&(s->strstart))-((char*)s)));
160 #define strstart [ rcx + dsStrStart] define
251 //;;; register Bytef *scan = s->window + s->strstart;
253 mov ebp, strstart
263 //;;; IPos limit = s->strstart > (IPos)MAX_DIST(s) ?
264 //;;; s->strstart - (IPos)MAX_DIST(s) : NIL;
  /external/zlib/src/contrib/masmx64/
gvmat64.asm 148 COMM strstart:DWORD
184 strstart equ [ rcx + dsStrStart] define
270 ;;; register Bytef *scan = s->window + s->strstart;
272 mov ebp, strstart
282 ;;; IPos limit = s->strstart > (IPos)MAX_DIST(s) ?
283 ;;; s->strstart - (IPos)MAX_DIST(s) : NIL;
  /external/qemu/block/
raw-win32.c 286 if (strstart(filename, "\\\\.\\", &p) ||
287 strstart(filename, "//./", &p)) {
308 if (strstart(filename, "/dev/cdrom", NULL))
322 if (strstart(filename, "/dev/cdrom", NULL)) {
raw-posix.c 827 if (strstart(filename, "/dev/cdrom", NULL))
843 if (strstart(filename, "/dev/cdrom", NULL)) {
871 if (strstart(filename, "/dev/sg", NULL)) {
1055 if (strstart(filename, "/dev/fd", NULL))
1157 if (strstart(filename, "/dev/cd", NULL))
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
tokenize.py 296 raise TokenError, ("EOF in multi-line string", strstart)
301 strstart, (lnum, end), contline + line)
306 strstart, (lnum, len(line)), contline)
386 strstart = (lnum, start) # multiple lines
394 strstart = (lnum, start)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
tokenize.py 296 raise TokenError, ("EOF in multi-line string", strstart)
301 strstart, (lnum, end), contline + line)
306 strstart, (lnum, len(line)), contline)
386 strstart = (lnum, start) # multiple lines
394 strstart = (lnum, start)
  /external/llvm/lib/TableGen/
TGLexer.cpp 184 const char *StrStart = CurPtr;
191 return ReturnError(StrStart, "End of file in string literal");
194 return ReturnError(StrStart, "End of line in string literal");
224 return ReturnError(StrStart, "End of file in string literal");
  /external/zlib/src/contrib/amd64/
amd64-match.S 82 printf("#define dsStrStart (%3u)(%%rdi)\n",(int)(((char*)&(s->strstart))-((char*)s)));
191 /* register Bytef *scan = s->window + s->strstart; */
204 /* IPos limit = s->strstart > (IPos)MAX_DIST(s) ? */
205 /* s->strstart - (IPos)MAX_DIST(s) : NIL; */
  /external/qemu/
qemu-char.c     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
tokenize.py 377 raise TokenError, ("EOF in multi-line string", strstart)
382 strstart, (lnum, end), contline + line)
387 strstart, (lnum, len(line)), contline)
462 strstart = (lnum, start) # multiple lines
470 strstart = (lnum, start)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
tokenize.py 377 raise TokenError, ("EOF in multi-line string", strstart)
382 strstart, (lnum, end), contline + line)
387 strstart, (lnum, len(line)), contline)
462 strstart = (lnum, start) # multiple lines
470 strstart = (lnum, start)
  /external/zlib/src/contrib/asm686/
match.S 148 /* register Bytef *scan = s->window + s->strstart; */
164 /* IPos limit = s->strstart > (IPos)MAX_DIST(s) ? */
165 /* s->strstart - (IPos)MAX_DIST(s) : NIL; */
  /external/zlib/src/contrib/masmx86/
match686.asm 251 ;;; register Bytef *scan = s->window + s->strstart;
267 ;;; IPos limit = s->strstart > (IPos)MAX_DIST(s) ?
268 ;;; s->strstart - (IPos)MAX_DIST(s) : NIL;
  /external/clang/lib/AST/
Stmt.cpp 445 const char *StrStart = Str.begin();
447 const char *CurPtr = StrStart;
497 DiagOffs = CurPtr-StrStart-1;
524 DiagOffs = CurPtr-StrStart-1;
542 DiagOffs = CurPtr-StrStart-1;
552 DiagOffs = CurPtr-StrStart-1;
566 DiagOffs = CurPtr-StrStart;
575 DiagOffs = CurPtr-StrStart-1;
    [all...]
  /external/libcxxabi/src/Unwind/
DwarfParser.hpp 290 pint_t strStart = p;
304 if (addressSpace.get8(strStart) == 'z') {
307 for (pint_t s = strStart; addressSpace.get8(s) != '\0'; ++s) {
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterInlineAsm.cpp 330 const char *StrStart = LastEmitted;
331 const char *StrEnd = strchr(StrStart, '}');
336 std::string Val(StrStart, StrEnd);

Completed in 759 milliseconds

1 2 3 4