Searched defs:code (Results 101 - 125 of 1304) sorted by relevance

1234567891011>>

/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DVariableSizeInsn.java17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.RegisterSpecList;
20 import com.android.dx.rop.code.SourcePosition;
28 * unknown ({@code -1}).
30 * @param position {@code non-null;} source position
31 * @param registers {@code non-null;} source registers
H A DZeroSizeInsn.java17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.RegisterSpecList;
20 import com.android.dx.rop.code.SourcePosition;
24 * Pseudo-instruction base class for zero-size (no code emitted)
26 * about the code they are adjacent to.
31 * unknown ({@code -1}).
33 * @param position {@code non-null;} source position
/external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
H A DForm10x.java17 package com.android.dx.dex.code.form;
19 import com.android.dx.dex.code.DalvInsn;
20 import com.android.dx.dex.code.InsnFormat;
21 import com.android.dx.dex.code.SimpleInsn;
25 * Instruction format {@code 10x}. See the instruction format spec
29 /** {@code non-null;} unique instance of this class */
H A DForm3rc.java17 package com.android.dx.dex.code.form;
19 import com.android.dx.dex.code.CstInsn;
20 import com.android.dx.dex.code.DalvInsn;
21 import com.android.dx.dex.code.InsnFormat;
22 import com.android.dx.rop.code.RegisterSpecList;
29 * Instruction format {@code 3rc}. See the instruction format spec
33 /** {@code non-null;} unique instance of this class */
H A DForm5rc.java17 package com.android.dx.dex.code.form;
19 import com.android.dx.dex.code.CstInsn;
20 import com.android.dx.dex.code.DalvInsn;
21 import com.android.dx.dex.code.InsnFormat;
22 import com.android.dx.rop.code.RegisterSpecList;
29 * Instruction format {@code 5rc}. See the instruction format spec
33 /** {@code non-null;} unique instance of this class */
H A DSpecialFormat.java17 package com.android.dx.dex.code.form;
19 import com.android.dx.dex.code.DalvInsn;
20 import com.android.dx.dex.code.InsnFormat;
27 * exceptions, as code should know (implicitly or explicitly) to avoid
29 * always returns {@code true}.
32 /** {@code non-null;} unique instance of this class */
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DConservativeTranslationAdvice.java17 package com.android.dx.rop.code;
21 * {@code false} to all methods.
25 /** {@code non-null;} standard instance of this class */
H A DCstInsn.java17 package com.android.dx.rop.code;
26 /** {@code non-null;} the constant */
32 * @param opcode {@code non-null;} the opcode
33 * @param position {@code non-null;} source position
34 * @param result {@code null-ok;} spec for the result, if any
35 * @param sources {@code non-null;} specs for all the sources
36 * @param cst {@code non-null;} constant
58 * @return {@code non-null;} the constant
H A DLocalVariableExtractor.java17 package com.android.dx.rop.code;
27 /** {@code non-null;} method being extracted from */
30 /** {@code non-null;} block list for the method */
33 /** {@code non-null;} result in-progress */
36 /** {@code non-null;} work set indicating blocks needing to be processed */
42 * @param method {@code non-null;} the method to extract from
43 * @return {@code non-null;} the extracted information
53 * @param method {@code non-null;} the method to extract from
72 * @return {@code non-null;} the extracted information
89 * @param label {@code >
[all...]
H A DTranslationAdvice.java17 package com.android.dx.rop.code;
23 * the early stage code be explicitly tied to the target.
33 * @param opcode {@code non-null;} the opcode
34 * @param sourceA {@code non-null;} the first source
35 * @param sourceB {@code non-null;} the second source
36 * @return {@code true} iff the target can represent the operation
46 * @param opcode {@code non-null;} opcode
47 * @param sources {@code non-null;} source list
48 * @return {@code true} iff the target requires the sources to be
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DLabel.java19 import com.android.dx.rop.code.BasicBlock;
20 import com.android.dx.rop.code.Insn;
21 import com.android.dx.rop.code.InsnList;
34 Code code; field in class:Label
H A DLocal.java19 import com.android.dx.rop.code.RegisterSpec;
25 private final Code code; field in class:Local
30 private Local(Code code, TypeId<T> type) { argument
31 this.code = code;
35 static <T> Local<T> get(Code code, TypeId<T> type) { argument
36 return new Local<T>(code, type);
59 code.initializeLocals();
/external/dhcpcd/
H A Dplatform-bsd.c9 * 1. Redistributions of source code must retain the above copyright
57 inet6_sysctl(int code) argument
63 mib[3] = code;
/external/dropbear/libtomcrypt/src/pk/asn1/der/ia5/
H A Dder_length_ia5_string.c21 int code, value; member in struct:__anon17726
131 if (ia5_table[x].code == c) {
143 return ia5_table[x].code;
/external/dropbear/libtomcrypt/src/pk/asn1/der/printable_string/
H A Dder_length_printable_string.c21 int code, value; member in struct:__anon17727
103 if (printable_table[x].code == c) {
115 return printable_table[x].code;
/external/e2fsprogs/lib/ss/
H A Derror.c60 void ss_error (int sci_idx, long code, const char * fmt, ...) argument
67 com_err_va (whoami, code, fmt, pvar);
72 void ss_perror (sci_idx, code, msg) /* for compatibility */
74 long code;
77 ss_error (sci_idx, code, "%s", msg);
/external/freetype/src/cff/
H A Dcffcmap.c82 FT_UInt code = (FT_UInt)(char_code + 1); local
87 if ( code >= 256 )
90 result = cmap->gids[code];
93 *pchar_code = code;
97 code++;
/external/icu4c/common/
H A Duscript.c33 UScriptCode code = USCRIPT_INVALID_CODE; local
47 code = (UScriptCode) u_getPropertyValueEnum(UCHAR_SCRIPT, nameOrAbbrOrLocale);
50 if(code==(UScriptCode)UCHAR_INVALID_CODE){
63 code = (UScriptCode) u_getPropertyValueEnum(UCHAR_SCRIPT, cName);
64 /* got the script code now fill in the buffer */
66 *(fillIn)++=code;
80 code = USCRIPT_INVALID_CODE;
82 if(code==(UScriptCode)UCHAR_INVALID_CODE){
84 code = (UScriptCode) u_getPropertyValueEnum(UCHAR_SCRIPT, nameOrAbbrOrLocale);
86 if(code!
[all...]
/external/icu4c/layout/
H A DExtensionSubtables.cpp19 static inline le_uint32 READ_LONG(le_uint32 code) { argument
20 le_uint16* first = ((le_uint16*)&code);
21 le_uint16* second = (((le_uint16*)&code) + 1);
/external/javassist/src/main/javassist/bytecode/
H A DByteArray.java25 public static int readU16bit(byte[] code, int index) { argument
26 return ((code[index] & 0xff) << 8) | (code[index + 1] & 0xff);
32 public static int readS16bit(byte[] code, int index) { argument
33 return (code[index] << 8) | (code[index + 1] & 0xff);
39 public static void write16bit(int value, byte[] code, int index) { argument
40 code[index] = (byte)(value >>> 8);
41 code[index + 1] = (byte)value;
47 public static int read32bit(byte[] code, in argument
55 write32bit(int value, byte[] code, int index) argument
[all...]
/external/javassist/src/test/test/javassist/bytecode/analysis/
H A DScannerTest.java111 Bytecode code = new Bytecode(info.getConstPool(), 2, 9);
112 /* 0 */ code.addAload(0);
113 /* 1 */ code.addLdc("start");
114 /* 3 */ code.addInvokevirtual(clazz, "println", CtClass.voidType, new CtClass[] {stringClass});
115 /* 6 */ code.addAload(0);
116 /* 7 */ code.addLdc("try");
117 /* 9 */ code.addInvokevirtual(clazz, "println", CtClass.voidType, new CtClass[] {stringClass});
118 /* 12 */ addJump(code, Opcode.GOTO, 125);
119 /* 14 */ code.addAstore(2);
120 /* 16 */ code
180 addJump(Bytecode code, int opcode, int pos) argument
[all...]
/external/llvm/lib/DebugInfo/
H A DDWARFAbbreviationDeclaration.cpp24 uint32_t code) {
25 Code = code;
23 extract(DataExtractor data, uint32_t* offset_ptr, uint32_t code) argument
/external/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITMemoryManagerTest.cpp88 uint8_t* code[10000]; local
94 code[i] = MemMgr->allocateCodeSection(32, 0, 1);
98 code[i][j] = 1 + (i % 254);
102 EXPECT_NE((uint8_t *)0, code[i]);
111 EXPECT_EQ(ExpectedCode, code[i][j]);
123 uint8_t* code[10000]; local
133 code[i] = MemMgr->allocateCodeSection(CodeSize, Align, i);
138 code[i][j] = 1 + (i % 254);
145 EXPECT_NE((uint8_t *)0, code[i]);
148 uintptr_t CodeAlign = Align ? (uintptr_t)code[
[all...]
/external/mesa3d/src/mapi/mapi/
H A Dentry_x86-64_tls.h91 char *code = (char *) entry; local
92 *((unsigned int *) (code + 12)) = slot * sizeof(mapi_func);
105 void *code; local
113 code = u_execmem_alloc(sizeof(code_templ));
114 if (!code)
117 memcpy(code, code_templ, sizeof(code_templ));
119 *((unsigned int *) (code + 5)) = addr;
120 entry = (mapi_func) code;
H A Dentry_x86_tls.h118 char *code = (char *) entry; local
119 *((unsigned long *) (code + 8)) = slot * sizeof(mapi_func);
130 void *code; local
133 code = u_execmem_alloc(sizeof(code_templ));
134 if (!code)
137 memcpy(code, code_templ, sizeof(code_templ));
139 *((unsigned long *) (code + 2)) = x86_current_tls();
140 entry = (mapi_func) code;

Completed in 385 milliseconds

1234567891011>>