Searched defs:code (Results 126 - 150 of 1408) sorted by relevance

1234567891011>>

/external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
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/e2fsprogs/lib/ss/
H A Derror.c59 void ss_error (int sci_idx, long code, const char * fmt, ...) argument
66 com_err_va (whoami, code, fmt, pvar);
71 void ss_perror(int sci_idx, long code, char const *msg) /* for compatibility */ argument
73 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/icu/icu4c/source/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/icu/icu4c/source/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/lldb/source/Interpreter/
H A Dembedded_interpreter.py2 import code namespace
6 class SimpleREPL(code.InteractiveConsole):
8 code.InteractiveConsole.__init__(self,dict)
/external/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITMemoryManagerTest.cpp87 uint8_t* code[10000]; local
93 code[i] = MemMgr->allocateCodeSection(32, 0, 1, "");
97 code[i][j] = 1 + (i % 254);
101 EXPECT_NE((uint8_t *)nullptr, code[i]);
110 EXPECT_EQ(ExpectedCode, code[i][j]);
122 uint8_t* code[10000]; local
132 code[i] = MemMgr->allocateCodeSection(CodeSize, Align, i, "");
137 code[i][j] = 1 + (i % 254);
144 EXPECT_NE((uint8_t *)nullptr, code[i]);
147 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;
H A Dentry_x86_tsd.h80 char *code = (char *) entry; local
82 *((unsigned long *) (code + 11)) = slot * sizeof(mapi_func);
83 *((unsigned long *) (code + 22)) = slot * sizeof(mapi_func);
90 void *code; local
93 code = u_execmem_alloc(X86_ENTRY_SIZE);
94 if (!code)
97 memcpy(code, code_templ, X86_ENTRY_SIZE);
98 entry = (mapi_func) code;
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DStatusLine.java7 /** Numeric status code, 307: Temporary Redirect. */
41 // Parse response code like "200". Always 3 digits.
53 // exists, it is separated from the response code by a space.
80 /** Returns the HTTP status code or -1 if it is unknown. */
81 public int code() { method in class:StatusLine
/external/openfst/src/include/fst/
H A Dicu.h48 int code = c & ((1 << (6 - count)) - 1); local
59 code = (code << 6) | (cb & 0x3f);
62 if (code < 0) {
67 labels->push_back(code);
77 int32_t code = labels[i]; local
78 if (code < 0) {
79 LOG(ERROR) << "LabelsToUTF8String: Invalid character found: " << code;
81 } else if (code < 0x80) {
82 ostr << static_cast<char>(code);
[all...]
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dinftrees.h12 information needed to do the operation requested by the code that
14 table that indexes more bits of the code. op indicates whether
16 distance, an end-of-block, or an invalid code. For a table
19 is the number of extra bits to get after the code. bits is
20 the number of bits in this code or part of the code to drop off
26 unsigned char bits; /* bits in this part of the code */
27 unsigned short val; /* offset in table or code value */
28 } code; typedef in typeref:struct:__anon28595
35 01000000 - invalid code
[all...]
/external/pdfium/core/src/fxcrt/
H A Dfx_basic_utf.cpp2 // Use of this source code is governed by a BSD-style license that can be
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
70 int code = unicode; local
71 m_Buffer.AppendChar(prefix[nbytes - 2] | (code / order));
73 code = code % order;
75 m_Buffer.AppendChar(0x80 | (code / order));

Completed in 431 milliseconds

1234567891011>>