| /dalvik/dx/src/com/android/dx/dex/code/ |
| ZeroSizeInsn.java | 17 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
|
| LocalEnd.java | 17 package com.android.dx.dex.code; 19 import com.android.dx.rop.code.RegisterSpec; 20 import com.android.dx.rop.code.RegisterSpecList; 21 import com.android.dx.rop.code.SourcePosition; 31 * {@code non-null;} register spec representing the local variable ended 34 * is implicit in the ambient local variable state, but other code 41 * unknown ({@code -1}). 43 * @param position {@code non-null;} source position 44 * @param local {@code non-null;} register spec representing the local 73 * @return {@code non-null;} the register spe [all...] |
| LocalStart.java | 17 package com.android.dx.dex.code; 19 import com.android.dx.rop.code.RegisterSpec; 20 import com.android.dx.rop.code.RegisterSpecList; 21 import com.android.dx.rop.code.SourcePosition; 31 * {@code non-null;} register spec representing the local variable introduced 39 * @param spec {@code non-null;} the spec to convert 40 * @return {@code non-null;} the string form 49 * unknown ({@code -1}). 51 * @param position {@code non-null;} source position 52 * @param local {@code non-null;} register spec representing the loca [all...] |
| /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/params/ |
| DHKeyParameters.java | 45 int code = isPrivate() ? 0 : 1; local 49 code ^= params.hashCode(); 52 return code;
|
| DHValidationParameters.java | 49 int code = counter; local 53 code ^= (seed[i] & 0xff) << (i % 4); 56 return code;
|
| /external/v8/src/ |
| scopeinfo.h | 6 // * Redistributions of source code must retain the above copyright 39 // is stored in a compressed form with Code objects and is used 56 // Create a ScopeInfo instance from a Code object. 57 explicit ScopeInfo(Code* code); 59 // Write the ScopeInfo data into a Code object, and returns the 60 // amount of space that was needed. If no Code object is provided 63 // This operations requires that the Code object has the correct amount 65 // error). Any existing scope info in the Code object is simply overwritten. 66 int Serialize(Code* code) 200 Code* code; member in struct:v8::internal::ContextSlotCache::Key [all...] |
| scopeinfo.cc | 6 // * Redistributions of source code must retain the above copyright 151 // Encoding format in the Code object: 247 ScopeInfo<Allocator>::ScopeInfo(Code* code) 253 if (code == NULL || code->sinfo_size() == 0) return; 255 Object** p0 = &Memory::Object_at(code->sinfo_start()); 262 ASSERT((p - p0) * kPointerSize == code->sinfo_size()); 316 int ScopeInfo<Allocator>::Serialize(Code* code) { [all...] |
| liveedit.h | 6 // * Redistributions of source code must retain the above copyright 40 // A single change always has a form of a simple replacement (in pseudo-code): 45 // expectations (or number of parameters). If it didn't, function's code is 46 // patched with a newly compiled code. If it did change, enclosing function 48 // to them in a new script version. However, new version of code will 63 // in order to analyze whether function code maybe safely patched (with new 64 // code successfully reading existing data from function scopes). The Tracker 70 void RecordFunctionCode(Handle<Code> code);
|
| /dalvik/dx/src/com/android/dx/dex/file/ |
| CodeItem.java | 19 import com.android.dx.dex.code.CstInsn; 20 import com.android.dx.dex.code.CatchTable; 21 import com.android.dx.dex.code.DalvCode; 22 import com.android.dx.dex.code.DalvInsn; 23 import com.android.dx.dex.code.DalvInsnList; 24 import com.android.dx.dex.code.LocalList; 25 import com.android.dx.dex.code.PositionList; 42 * {@code dex} file. 51 /** {@code non-null;} method that this code implements * 55 private final DalvCode code; field in class:CodeItem [all...] |
| /external/webkit/WebKitTools/DumpRenderTree/qt/ |
| EventSenderQt.cpp | 9 * 1. Redistributions of source code must retain the above copyright 162 int code = 0; local 164 code = string.unicode()->unicode(); 165 //qDebug() << ">>>>>>>>> keyDown" << code << (char)code; 167 if (code == '\r') { 168 code = Qt::Key_Return; 169 } else if (code == '\t') { 170 code = Qt::Key_Tab; 172 code = Qt::Key_Backtab [all...] |
| /dalvik/dx/src/com/android/dx/cf/attrib/ |
| AttLocalVariableTable.java | 19 import com.android.dx.cf.code.LocalVariableList; 22 * Attribute class for standard {@code LocalVariableTable} attributes. 25 /** {@code non-null;} attribute name for attributes of this type */ 31 * @param localVariables {@code non-null;} list of local variable entries
|
| AttLocalVariableTypeTable.java | 19 import com.android.dx.cf.code.LocalVariableList; 22 * Attribute class for standard {@code LocalVariableTypeTable} attributes. 25 /** {@code non-null;} attribute name for attributes of this type */ 31 * @param localVariables {@code non-null;} list of local variable entries
|
| /dalvik/dx/src/com/android/dx/dex/code/form/ |
| Form10x.java | 17 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 */
|
| SpecialFormat.java | 17 package com.android.dx.dex.code.form; 19 import com.android.dx.dex.code.DalvInsn; 20 import com.android.dx.dex.code.DalvOps; 21 import com.android.dx.dex.code.InsnFormat; 28 * exceptions, as code should know (implicitly or explicitly) to avoid 30 * always returns {@code true}. 33 /** {@code non-null;} unique instance of this class */
|
| /dalvik/dx/src/com/android/dx/rop/code/ |
| TranslationAdvice.java | 17 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/elfutils/libdw/ |
| dwarf_getabbrevcode.c | 1 /* Get abbreviation code. 28 return abbrev == NULL ? 0 : abbrev->code;
|
| dwarf_tag.c | 24 __libdw_findabbrev (struct Dwarf_CU *cu, unsigned int code) 29 abb = Dwarf_Abbrev_Hash_find (&cu->abbrev_hash, code, NULL); 49 /* Is this the code we are looking for? */ 50 if (abb->code == code) 65 /* Get the abbreviation code. */
|
| dwarf_attr.c | 33 result->valp = __libdw_find_attr (die, search_name, &result->code, 38 return result->code == search_name ? result : NULL;
|
| /external/opencore/codecs_v2/audio/gsm_amr/amr_nb/common/include/ |
| d_gain_c.h | 22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec 114 Word16 code[], /* i : innovation codevector */
|
| /external/qemu/distrib/zlib-1.2.3/ |
| inflate.h | 13 the crc code when it is not needed. For shared libraries, gzip decoding 37 LENLENS, /* i: waiting for code length code lengths */ 38 CODELENS, /* i: waiting for length/lit and distance code lengths */ 39 LEN, /* i: waiting for length/lit code */ 41 DIST, /* i: waiting for distance code */ 99 /* for table and code decoding */ 101 /* fixed and dynamic code tables */ 102 code const FAR *lencode; /* starting table for length/literal codes */ 103 code const FAR *distcode; /* starting table for distance codes * [all...] |
| /external/webkit/WebCore/platform/network/cf/ |
| LoaderRunLoopCF.h | 7 * 1. Redistributions of source code must retain the above copyright 30 #error This code is not needed on platforms other than Windows, because main thread's CFRunLoop can be used.
|
| /external/wpa_supplicant_6/wpa_supplicant/src/eap_common/ |
| eap_wsc_common.h | 31 struct wpabuf * eap_wsc_build_frag_ack(u8 id, u8 code);
|
| /external/zlib/ |
| inflate.h | 13 the crc code when it is not needed. For shared libraries, gzip decoding 37 LENLENS, /* i: waiting for code length code lengths */ 38 CODELENS, /* i: waiting for length/lit and distance code lengths */ 39 LEN, /* i: waiting for length/lit code */ 41 DIST, /* i: waiting for distance code */ 99 /* for table and code decoding */ 101 /* fixed and dynamic code tables */ 102 code const FAR *lencode; /* starting table for length/literal codes */ 103 code const FAR *distcode; /* starting table for distance codes * [all...] |
| /frameworks/base/media/libstagefright/codecs/amrnb/common/include/ |
| d_gain_c.h | 22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec 114 Word16 code[], /* i : innovation codevector */
|
| /dalvik/dx/src/com/android/dx/dex/cf/ |
| CodeStatistics.java | 19 import com.android.dx.dex.code.DalvCode; 20 import com.android.dx.rop.code.RopMethod; 26 * code. 29 /** set to {@code true} to enable development-time debugging code */ 54 * running sum of the number of dex-form insns (actually code 61 * running sum of the total number of dex insns (actually code 79 * @param count {@code >= 0;} the number of bytes to add 88 * @param nonOptCode non-optimized code block 89 * @param code optimized code bloc [all...] |