HomeSort by relevance Sort by last modified time
    Searched refs:code (Results 301 - 325 of 2299) sorted by null

<<11121314151617181920>>

  /dalvik/dx/src/com/android/dx/dex/code/
CstInsn.java 17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.RegisterSpecList;
20 import com.android.dx.rop.code.SourcePosition;
28 /** {@code non-null;} the constant argument for this instruction */
32 * {@code >= -1;} the constant pool index for {@link #constant}, or
33 * {@code -1} if not yet set
38 * {@code >= -1;} the constant pool index for the class reference in
39 * {@link #constant} if any, or {@code -1} if not yet set
45 * initially unknown ({@code -1}) as is the constant pool index.
48 * @param position {@code non-null;} source positio
    [all...]
TargetInsn.java 17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.RegisterSpecList;
20 import com.android.dx.rop.code.SourcePosition;
26 /** {@code non-null;} the branch target */
31 * unknown ({@code -1}), and the target is initially
32 * {@code null}.
35 * @param position {@code non-null;} source position
36 * @param registers {@code non-null;} register list, including a
39 * @param target {@code non-null;} the branch target
67 * {@code lt} test becomes a {@code ge}), and its branc
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
ASN1TaggedObject.java 119 int code = tagNo; local
123 code ^= obj.hashCode();
126 return code;
  /external/e2fsprogs/lib/ext2fs/
bitops.c 2 * bitops.c --- Bitmap frobbing code. See bitops.h for the inlined
81 int code, unsigned long arg)
85 com_err(0, bitmap->base_error_code+code,
88 com_err(0, bitmap->base_error_code + code, "#%lu", arg);
  /external/icu4c/tools/gencase/
gencase.h 51 * The values are stored in ucase.icu so that the runtime code will work with
71 UChar32 code; member in struct:__anon2432
78 UChar32 code, simple; member in struct:__anon2433
85 UChar32 code, lowerCase, upperCase, titleCase; member in struct:__anon2434
  /external/opencore/codecs_v2/audio/gsm_amr/amr_wb/dec/src/
voice_factor.cpp 22 ANSI-C code for the Adaptive Multi-Rate - Wideband (AMR-WB) speech codec
50 int16 code[], (i) Q9 : Fixed codebook excitation
51 int16 gain_code, (i) Q0 : gain of code
67 PSEUDO-CODE
115 ; FUNCTION CODE
122 int16 code[], /* (i) Q9 : Fixed codebook excitation */
123 int16 gain_code, /* (i) Q0 : gain of code */
139 ener2 = extract_h(Dot_product12(code, code, L_subfr, &exp2));
  /external/oprofile/daemon/
opd_trans.h 73 static inline int is_escape_code(uint64_t code)
75 return kernel_pointer_size == 4 ? code == ~0LU : code == ~0LLU;
  /external/webkit/WebCore/page/
XSSAuditor.h 8 * 1. Redistributions of source code must retain the above copyright
48 // If the source code of a script resembles any user-submitted data then it
78 bool canEvaluate(const String& code) const;
82 bool canEvaluateJavaScriptURL(const String& code) const;
86 bool canCreateInlineEventListener(const String& functionName, const String& code) const;
  /frameworks/base/libs/binder/
IPermissionController.cpp 59 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
62 switch(code) {
75 return BBinder::onTransact(code, data, reply, flags);
  /frameworks/base/libs/camera/
ICameraService.cpp 53 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
55 switch(code) {
64 return BBinder::onTransact(code, data, reply, flags);
  /frameworks/base/media/libmedia/
IMediaPlayerClient.cpp 54 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
56 switch(code) {
66 return BBinder::onTransact(code, data, reply, flags);
  /frameworks/base/media/libstagefright/codecs/amrwb/src/
voice_factor.cpp 22 ANSI-C code for the Adaptive Multi-Rate - Wideband (AMR-WB) speech codec
50 int16 code[], (i) Q9 : Fixed codebook excitation
51 int16 gain_code, (i) Q0 : gain of code
67 PSEUDO-CODE
115 ; FUNCTION CODE
122 int16 code[], /* (i) Q9 : Fixed codebook excitation */
123 int16 gain_code, /* (i) Q0 : gain of code */
139 ener2 = extract_h(Dot_product12(code, code, L_subfr, &exp2));
  /system/core/libsysutils/src/
SocketClient.cpp 17 int SocketClient::sendMsg(int code, const char *msg, bool addErrno) {
22 sprintf(buf, "%.3d %s (%s)", code, msg, strerror(errno));
25 sprintf(buf, "%.3d %s", code, msg);
  /external/openssl/crypto/0.9.9-dev/sha/
sha1-armv4-large.pl 25 # with recurring code in two private functions;
38 # the same job in Thumb, therefore the code is never twice as
60 # but code's endian neutrality makes it too pretty:-)
63 $code.=<<___;
80 $code.=<<___;
91 $code.=<<___ if (!defined($flag));
94 $code.=<<___;
104 $code.=<<___;
114 $code.=<<___;
124 $code.=<<___
    [all...]
  /external/openssl/crypto/sha/asm/
sha1-x86_64.pl 12 # It was brought to my attention that on EM64T compiler-generated code
14 # Opteron where compiler-generated code was only 15% behind 32-bit
16 # There was suggestion to mechanically translate 32-bit code, but I
19 # implementation:-) However! While 64-bit code does performs better
23 # core must have managed to run-time optimize even 32-bit code just as
45 # reassign arguments in order to produce more compact code
64 $code.=<<___;
90 $code.=<<___;
103 $code.=<<___ if ($i==0);
108 $code.=<<___ if ($i<15)
    [all...]
  /bionic/libc/string/
strerror_r.c 12 int code; member in struct:__anon511
18 int code )
24 if (strings[nn].code == 0)
27 if (strings[nn].code == code)
  /dalvik/dx/src/com/android/dx/dex/code/form/
Form21h.java 17 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;
28 * Instruction format {@code 21h}. See the instruction format spec
32 /** {@code non-null;} unique instance of this class */
  /external/opencore/protocols/systems/3g-324m_pvterminal/h223/src/
level2.cpp 526 int code = iEncTab[mux_code]; local
579 int code; local
637 int code = 0; local
    [all...]
  /external/v8/test/cctest/
test-assembler-arm.cc 6 // * Redistributions of source code must retain the above copyright
72 Object* code = Heap::CreateCode(desc, variable
74 Code::ComputeFlags(Code::STUB),
76 CHECK(code->IsCode());
78 Code::cast(code)->Print();
80 F2 f = FUNCTION_CAST<F2>(Code::cast(code)->entry());
109 Object* code = Heap::CreateCode(desc variable
155 Object* code = Heap::CreateCode(desc, variable
203 Object* code = Heap::CreateCode(desc, variable
263 Object* code = Heap::CreateCode(desc, variable
    [all...]
  /external/openssl/crypto/aes/asm/
aes-x86_64.pl 32 $code=".text\n";
56 while(defined($i=shift)) { $code.=sprintf".long\t0x%08x,0x%08x\n",$i,$i; }
61 $code.=".long\t";
62 while(defined($i=shift)) { $code.=sprintf"0x%08x,",$i; }
63 $code.=sprintf"0x%08x\n",$last;
69 $code.=".byte\t";
70 while(defined($i=shift)) { $code.=sprintf"0x%02x,",$i&0xff; }
71 $code.=sprintf"0x%02x\n",$last&0xff;
77 $code.=<<___;
137 $code.=<<___
    [all...]
  /external/v8/src/arm/
assembler-arm.cc 8 // - Redistributions of source code must retain the above copyright notice,
33 // The original source code covered by the above license above has been
57 // If the compiler is allowed to use VFP then we can use VFP too in our code
204 // Patch the code at the current address with the supplied instructions.
211 // Indicate that code has changed.
216 // Patch the code at the current PC with a call to the target address.
219 // Patch the code at the current address with a call to the target.
230 // Verify all Objects referred by code are NOT in new space.
304 S = 1 << 20, // set condition code (or leave unchanged)
346 al | 4 * B21 | 4 | LeaveCC | I | sp.code() * B16 | sp.code() * B12
    [all...]
assembler-thumb2.cc 8 // - Redistributions of source code must retain the above copyright notice,
33 // The original source code covered by the above license above has been
52 // code generation.
184 // Patch the code at the current address with the supplied instructions.
191 // Indicate that code has changed.
196 // Patch the code at the current PC with a call to the target address.
199 // Patch the code at the current address with a call to the target.
210 // Verify all Objects referred by code are NOT in new space.
284 S = 1 << 20, // set condition code (or leave unchanged)
326 al | 4 * B21 | 4 | LeaveCC | I | sp.code() * B16 | sp.code() * B12
    [all...]
  /external/emma/core/java12/com/vladium/util/exception/
ExceptionCommon.java 29 * Based on code <a href="http://www.fawcette.com/javapro/2002_12/online/exception_vroubtsov_12_16_02/default_pf.asp">published</a>
49 * Note that this introduces a possibility of error code name clashes. This
52 * <LI> when <CODE>getMessage(namespace, code)</CODE> is called, 'code'
57 * key 'code', the same step is repeated for the superclass of 'namespace';
78 * package) to add to the set from which error code mappings are retrieved
245 * which to retrieve the description for 'code' [can be null, in which case
248 * @param code the message string value that was passed into exceptio
    [all...]
  /external/v8/tools/
codemap.js 6 // * Redistributions of source code must retain the above copyright
35 * Constructs a mapper that maps addresses into code entries.
41 * Dynamic code entries. Used for JIT compiled code.
51 * Static code entries. Used for statically compiled code.
56 * Libraries entries. Used for the whole static code libraries.
61 * Map of memory pages occupied with static code.
81 * Adds a dynamic (i.e. moveable and discardable) code entry.
84 * @param {devtools.profiler.CodeMap.CodeEntry} codeEntry Code entry object
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
PasswordEntryKeyboard.java 94 final int code = key.codes[0]; local
95 if (code >=0 && code != '\n' && (code < 32 || code > 127)) {
96 // Log.w(TAG, "Key code for " + key.label + " is not latin-1");
257 final int code = codes[0]; local
258 if (code == KEYCODE_SHIFT || code == KEYCODE_DELETE) {
260 if (code == KEYCODE_SHIFT) x += width / 6
    [all...]

Completed in 1150 milliseconds

<<11121314151617181920>>