| /dalvik/vm/compiler/template/out/ |
| CompilerTemplateAsm-armv7-a-neon.S | 68 registers in compiled code 72 r7 rINST first 16-bit code unit of current instruction 151 * instruction epilogue code. The multi-compare approach below needs 179 * address in the code cache following the invoke instruction. Otherwise 212 str r9, [r3, #offThread_inJitCodeCache] @ in code cache or not 293 * Thumb code through the link register to transfer control to the callee 347 * Thumb code through the link register to transfer control to the callee 422 @ go ahead and transfer control to the native code 426 str r2, [r3, #offThread_inJitCodeCache] @ not in the jit code cache 436 blx r8 @ off to the native code [all...] |
| CompilerTemplateAsm-armv7-a.S | 68 registers in compiled code 72 r7 rINST first 16-bit code unit of current instruction 151 * instruction epilogue code. The multi-compare approach below needs 179 * address in the code cache following the invoke instruction. Otherwise 212 str r9, [r3, #offThread_inJitCodeCache] @ in code cache or not 293 * Thumb code through the link register to transfer control to the callee 347 * Thumb code through the link register to transfer control to the callee 422 @ go ahead and transfer control to the native code 426 str r2, [r3, #offThread_inJitCodeCache] @ not in the jit code cache 436 blx r8 @ off to the native code [all...] |
| /development/cmds/monkey/src/com/android/commands/monkey/ |
| MonkeySourceScript.java | 220 int code = Integer.parseInt(args[3]); local 226 MonkeyKeyEvent e = new MonkeyKeyEvent(downTime, eventTime, action, code, repeat, 228 System.out.println(" Key code " + code + "\n"); 351 * @param line A string in the form {@code cmd(arg1,arg2,arg3)}.
|
| /external/e2fsprogs/lib/ext2fs/ |
| test_io.c | 41 #define EXT2_CHECK_MAGIC(struct, code) \ 42 if ((struct)->magic != (code)) return (code)
|
| /external/jpeg/ |
| jmemdosa.asm | 21 ; Based on code contributed by Ge' Weijers. 24 JMEMDOSA_TXT segment byte public 'CODE' 57 jc open_err ; if failed, return error code 91 jc close_err ; if failed, return error code 125 jc seek_err ; if failed, return error code 159 jc read_err ; if failed, return error code 197 jc write_err ; if failed, return error code
|
| /external/qemu/distrib/sdl-1.2.12/src/audio/windx5/ |
| SDL_dx5audio.c | 181 static void SetDSerror(const char *function, int code) 187 switch (code) { 225 function, code);
|
| /external/strace/ |
| time.c | 10 * 1. Redistributions of source code must retain the above copyright 544 rtc_ioctl(tcp, code, arg) 546 long code; 549 switch (code) {
|
| /external/tcpdump/ |
| print-dccp.c | 136 static const char *dccp_reset_code(u_int8_t code) 138 if (code >= __DCCP_RESET_CODE_LAST) 140 return dccp_reset_codes[code]; 354 (void)printf("reset (code=%s) ",
|
| /external/webkit/JavaScriptCore/jit/ |
| JITStubs.h | 8 * 1. Redistributions of source code must retain the above copyright 92 void* code; member in struct:JSC::JITStackFrame 107 // When JIT code makes a call, it pushes its return address just below the rest of the stack. 128 void* code; member in struct:JSC::JITStackFrame 135 // When JIT code makes a call, it pushes its return address just below the rest of the stack. 156 // These arguments passed in r1..r3 (r0 contained the entry code pointed, which is not preserved) 191 // When JIT code makes a call, it pushes its return address just below the rest of the stack. 241 extern "C" EncodedJSValue ctiTrampoline(void* code, RegisterFile*, CallFrame*, JSValue* exception, Profiler**, JSGlobalData*);
|
| /external/webkit/WebCore/html/ |
| PreloadScanner.cpp | 8 * 1. Redistributions of source code must retain the above copyright 49 // The main tokenizer includes this too so we are getting two copies of the data. However, this way the code gets inlined. 55 int code; member in struct:Entity 264 return entity->code; 271 return entity->code;
|
| /external/webkit/WebKitTools/DumpRenderTree/win/ |
| UIDelegate.cpp | 8 * 1. Redistributions of source code must retain the above copyright 518 /* [retval][out] */ LONG_PTR *code) 520 if (!code) 522 *code = 0;
|
| /external/zlib/contrib/masmx64/ |
| gvmat64.asm | 11 ; and by taking inspiration on asm686 with masm, optimised assembly code
39 .code
76 ; in the deflate_state structure since the asm code was first written
94 ; in zlib in the deflate_state structure since the asm code was first written
383 ;;; starting the compare loop. So what this code does is skip over 0-3
505 db 0dh,0ah,"asm686 with masm, optimised assembly code from Brian Raiter, written 1998, converted to amd 64 by Gilles Vollant 2005",0dh,0ah,0
|
| /frameworks/base/core/java/android/database/ |
| BulkCursorNative.java | 30 * IPC, application code should use the Cursor interface. 59 public boolean onTransact(int code, Parcel data, Parcel reply, int flags) 62 switch (code) { 181 return super.onTransact(code, data, reply, flags);
|
| /frameworks/base/core/java/android/text/method/ |
| ArrowKeyMovementMethod.java | 216 int code = event.getKeyCode(); local 217 if (code != KeyEvent.KEYCODE_UNKNOWN 222 handled |= executeDown(view, text, code);
|
| /frameworks/base/core/tests/coretests/src/android/app/activity/ |
| BroadcastTest.java | 199 public boolean onTransact(int code, Parcel data, Parcel reply, 203 if (code == GOT_RECEIVE_TRANSACTION) { 207 } else if (code == ERROR_TRANSACTION) { 288 //System.out.println("Code: " + mResultCode + ", data: " + mResultData); 291 assertEquals("Incorrect code: " + broadcastReceiver.getResultCode(),
|
| /frameworks/base/media/libmedia/ |
| IMediaRecorder.cpp | 272 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) 274 switch(code) { 422 return BBinder::onTransact(code, data, reply, flags);
|
| /frameworks/base/tests/CoreTests/android/core/ |
| TestWebServer.java | 193 * a redirect code with the Location response header set to the value 196 * @param redirectCode The code to send when redirecting 198 public void setRedirect(String redirect, int code) { 200 redirectCode = code; 201 log("Server will redirect output to "+redirect+" code "+code); 225 // Networking code doesn't support ServerSocket(port) yet
|
| /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
| OpenWnnJAJP.java | 53 * Use with {@code OpenWnn.CHANGE_MODE} event. 59 * Use with {@code OpenWnn.CHANGE_MODE} event. 65 * Use with {@code OpenWnn.CHANGE_MODE} event. 71 * Use with {@code OpenWnn.CHANGE_MODE} event. 77 * Use with {@code OpenWnn.CHANGE_MODE} event to change ambiguous searching pattern. 83 * Use with {@code OpenWnn.CHANGE_MODE} event to change ambiguous searching pattern. 103 /** IME's status for {@code mStatus} input/no candidates). */ 105 /** IME's status for {@code mStatus}(input characters). */ 107 /** IME's status for {@code mStatus}(input functional keys). */ 109 /** IME's status for {@code mStatus}(all candidates are displayed). * 860 int code = keyEvent.getKeyCode(); local [all...] |
| /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/ |
| target.h | 112 /* Try to output the assembler code for an integer object whose 119 /* Output code that will globalize a label. */ 122 /* Output code that will globalize a declaration. */ 125 /* Output code that will emit a label for unwind info, if this 132 /* Output code that will emit a label to divide up the exception 149 /* Output the assembler code for entry to a function. */ 152 /* Output the assembler code for end of prologue. */ 155 /* Output the assembler code for start of epilogue. */ 158 /* Output the assembler code for function exit. */ 199 /* Output the assembler code for a thunk function. THUNK_DECL is th [all...] |
| /external/v8/src/x64/ |
| macro-assembler-x64.cc | 6 // * Redistributions of source code must retain the above copyright 120 // to limit code size. We should probably evaluate this decision by 143 object_.code(), addr_.code(), scratch_.code()); 157 return ObjectBits::encode(object_.code()) | 158 AddressBits::encode(addr_.code()) | 159 ScratchBits::encode(scratch_.code()); 180 // The compiled code assumes that record write doesn't change the 194 // Clobber all input registers when running with the debug-code fla [all...] |
| /bionic/libc/kernel/common/linux/netfilter_ipv4/ |
| ip_tables.h | 110 u_int8_t code[2]; member in struct:ipt_icmp
|
| /bionic/libc/kernel/common/linux/netfilter_ipv6/ |
| ip6_tables.h | 116 u_int8_t code[2]; member in struct:ip6t_icmp
|
| /dalvik/dx/src/com/android/dx/cf/code/ |
| ByteCatchList.java | 17 package com.android.dx.cf.code; 27 * which is part of a standard {@code Code} attribute. 30 /** {@code non-null;} convenient zero-entry instance */ 44 * a {@code Code} attribute. The returned value includes the 45 * two bytes for {@code exception_table_length}. 47 * @return {@code >= 2;} the total length, in bytes 56 * @param n {@code >= 0;} which item 57 * @return {@code null-ok;} the indicated ite [all...] |
| ExecutionStack.java | 17 package com.android.dx.cf.code; 33 /** {@code non-null;} array of stack contents */ 37 * {@code >= 0;} stack pointer (points one past the end) / current stack 45 * @param maxStack {@code >= 0;} the maximum size of the stack for this 57 * @return {@code non-null;} the copy 72 * @param ex {@code non-null;} the exception to annotate 89 * @param type {@code non-null;} type to replace 111 * @return {@code >= 0;} the max stack size 120 * @return {@code >= 0, < getMaxStack();} the current stack size 142 * @param type {@code non-null;} type of the valu [all...] |
| Merger.java | 17 package com.android.dx.cf.code; 38 * @param locals1 {@code non-null;} a locals array 39 * @param locals2 {@code non-null;} another locals array 40 * @return {@code non-null;} the result of merging the two locals arrays 90 * @param stack1 {@code non-null;} a stack 91 * @param stack2 {@code non-null;} another stack 92 * @return {@code non-null;} the result of merging the two stacks 147 * @param ft1 {@code non-null;} a frame type 148 * @param ft2 {@code non-null;} another frame type 149 * @return {@code non-null;} the result of merging the two type [all...] |