HomeSort by relevance Sort by last modified time
    Searched refs:RETURN (Results 1 - 25 of 102) sorted by null

1 2 3 4 5

  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
regexp.h 49 GETC() Return the value of the next character in the regular
50 expression pattern. Successive calls should return
53 PEEKC() Return the value of the next character in the regular
55 PEEKC() should return the same character which should
61 RETURN(ptr) Used for normal exit of the `compile' function. `ptr'
65 ERROR(val) Used for abnormal return from `compile'. `val' is the
182 RETURN (36);
184 RETURN (25);
186 RETURN (49);
188 RETURN (42)
    [all...]
  /external/bzip2/
decompress.c 40 #define RETURN(rrr) \
54 if (s->strm->avail_in == 0) RETURN(BZ_OK); \
79 RETURN(BZ_DATA_ERROR); \
92 RETURN(BZ_DATA_ERROR); \
100 RETURN(BZ_DATA_ERROR); \
198 if (uc != BZ_HDR_B) RETURN(BZ_DATA_ERROR_MAGIC);
201 if (uc != BZ_HDR_Z) RETURN(BZ_DATA_ERROR_MAGIC);
204 if (uc != BZ_HDR_h) RETURN(BZ_DATA_ERROR_MAGIC);
208 s->blockSize100k > (BZ_HDR_0 + 9)) RETURN(BZ_DATA_ERROR_MAGIC);
216 if (s->ll16 == NULL || s->ll4 == NULL) RETURN(BZ_MEM_ERROR)
    [all...]
  /bionic/libc/arch-x86/string/
sse2-strlen-atom.S 63 #define RETURN ret
281 RETURN
306 RETURN
311 RETURN
315 RETURN
319 RETURN
323 RETURN
327 RETURN
331 RETURN
335 RETURN
    [all...]
sse2-memset5-atom.S 99 # define RETURN RETURN_END; CFI_PUSH (%ebx)
128 # define RETURN RETURN_END
217 RETURN
237 RETURN
257 RETURN
278 RETURN
595 RETURN
615 RETURN
635 RETURN
656 RETURN
    [all...]
  /external/nist-sip/java/gov/nist/core/
Separators.java 46 public static final String RETURN = "\n";
  /dalvik/vm/compiler/template/armv5te/
TemplateOpList.h 25 JIT_TEMPLATE(RETURN)
  /external/javassist/src/main/javassist/bytecode/analysis/
Util.java 29 return pos;
33 return (opcode >= IFEQ && opcode <= JSR) || opcode == IFNULL || opcode == IFNONNULL || opcode == JSR_W || opcode == GOTO_W;
37 return opcode == GOTO || opcode == GOTO_W;
41 return opcode == JSR || opcode == JSR_W;
45 return (opcode >= IRETURN && opcode <= RETURN);
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
RegOps.java 171 /** {@code T: return type for the method; x: T; return x} */
172 public static final int RETURN = 33;
310 * @return {@code non-null;} its name
314 case NOP: return "nop";
315 case MOVE: return "move";
316 case MOVE_PARAM: return "move-param";
317 case MOVE_EXCEPTION: return "move-exception";
318 case CONST: return "const";
319 case GOTO: return "goto"
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
RegOps.java 171 /** {@code T: return type for the method; x: T; return x} */
172 public static final int RETURN = 33;
310 * @return {@code non-null;} its name
314 case NOP: return "nop";
315 case MOVE: return "move";
316 case MOVE_PARAM: return "move-param";
317 case MOVE_EXCEPTION: return "move-exception";
318 case CONST: return "const";
319 case GOTO: return "goto"
    [all...]
  /dalvik/vm/compiler/template/armv5te-vfp/
TemplateOpList.h 25 JIT_TEMPLATE(RETURN)
  /dalvik/vm/compiler/template/armv7-a/
TemplateOpList.h 25 JIT_TEMPLATE(RETURN)
  /dalvik/vm/compiler/template/armv7-a-neon/
TemplateOpList.h 25 JIT_TEMPLATE(RETURN)
  /external/javassist/src/main/javassist/compiler/
TokenId.java 52 int RETURN = 333;
  /system/core/libcutils/arch-x86/
sse2-memset16-atom.S 92 # define RETURN RETURN_END; CFI_PUSH (%ebx)
120 # define RETURN RETURN_END
217 RETURN
244 RETURN
271 RETURN
299 RETURN
569 RETURN
590 RETURN
610 RETURN
632 RETURN
    [all...]
sse2-memset32-atom.S 92 # define RETURN RETURN_END; CFI_PUSH (%ebx)
120 # define RETURN RETURN_END
207 RETURN
450 RETURN
470 RETURN
490 RETURN
511 RETURN
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
glslang_tab.h 59 RETURN = 275,
153 #define RETURN 275
  /external/javassist/src/main/javassist/
CtNewWrappedConstructor.java 41 return cons;
89 code.add(Bytecode.RETURN);
99 return code;
CtNewConstructor.java 72 return (CtConstructor)obj;
103 return cc;
126 return new CtConstructor(c, declaring, map);
151 code.add(Bytecode.RETURN);
155 return cons;
180 return make(parameters, exceptions, PASS_NONE,
199 return make(parameters, exceptions, PASS_PARAMS,
275 * return null;
313 return CtNewWrappedConstructor.wrapped(parameters, exceptions,
CtConstructor.java 108 return methodInfo.isConstructor();
115 return methodInfo.isStaticInitializer();
125 return getDeclaringClass().getName()
138 return MethodInfo.nameClinit;
140 return declaringClass.getSimpleName();
153 return false; // native or abstract??
161 return op0 == Opcode.RETURN // empty static initializer
167 && it.byteAt(it.next()) == Opcode.RETURN
171 return false
    [all...]
  /system/core/sh/
parser.c 141 return NEOF;
143 return NULL;
145 return list(1);
157 return NULL;
194 return n1;
200 return n1;
207 return n1;
212 return n1;
233 return n1;
280 return n2
    [all...]
  /external/javassist/src/main/javassist/bytecode/
Opcode.java 223 int RETURN = 177;
421 0, // return, 177
  /external/webkit/Source/JavaScriptCore/parser/
JSParser.h 61 RETURN,
  /ndk/sources/host-tools/nawk-20071023/
maketab.c 100 { RETURN, "jump", "ret" },
174 printf(" return buf;\n");
176 printf(" return printname[n-FIRSTTOKEN];\n");
178 return 0;
awkgram.y 31 int yywrap(void) { return(1); }
84 %left PRINT PRINTF RETURN SPLIT SPRINTF STRING SUB SUBSTR
335 | RETURN pattern st { $$ = stat1(RETURN, $2); }
336 | RETURN st { $$ = stat1(RETURN, NIL); }
458 return isvalue(p) && ((Cell *) (p->narg[0]))->csub == CCON;
463 return ((Cell *)(p->narg[0]))->sval;
471 return n;
473 return op2(NE, n, nullnode)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_stretch.c 51 #define RETURN 0xC3
74 return(0);
92 return(-1);
111 *eip++ = RETURN;
116 return(-1);
118 return(0);
193 return(-1);
202 return(-1);
216 return(-1);
231 return(-1)
    [all...]

Completed in 1142 milliseconds

1 2 3 4 5