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

1 2 3 4 5 6 7 8 91011>>

  /prebuilt/windows/sdl/include/SDL/
SDL_error.h 52 extern DECLSPEC void SDLCALL SDL_Error(SDL_errorcode code);
  /system/core/include/sysutils/
SocketClient.h 18 int sendMsg(int code, const char *msg, bool addErrno);
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/extensions/
extutil.h 135 int /* code */,
184 * helper macros to generate code that is common to all extensions; caller
212 char *proc (Display *dpy, int code, XExtCodes *codes, char *buf, int n) \
214 code -= codes->first_error; \
215 if (code >= 0 && code < nerr) { \
217 SDL_snprintf (tmp, SDL_arraysize(tmp), "%s.%d", extname, code); \
218 XGetErrorDatabaseText (dpy, "XProtoError", tmp, errl[code], buf, n); \
225 char *proc(Display *dpy, int code, XExtCodes *codes, char *buf, int n)
  /external/libpcap/
optimize.c 6 * modification, are permitted provided that: (1) source code distributions
8 * distributions including binary code include the above copyright notice and
73 * Currently, the use-def code assumes only one definition per instruction.
86 * Rather than traverse the code array, marking each item, 'cur_mark' is
369 register int c = s->code;
415 if (s->code == NOP)
418 switch (BPF_CLASS(s->code)) {
432 return BPF_MISCOP(s->code) == BPF_TAX ? X_ATOM : A_ATOM;
457 if (s->s.code == NOP)
481 if (BPF_CLASS(b->s.code) == BPF_JMP)
543 int code; member in struct:valnode
1316 int code = ep->code; local
    [all...]
  /dalvik/dx/src/com/android/dx/command/dump/
BlockDumper.java 20 import com.android.dx.cf.code.BasicBlocker;
21 import com.android.dx.cf.code.ByteBlock;
22 import com.android.dx.cf.code.ByteBlockList;
23 import com.android.dx.cf.code.ByteCatchList;
24 import com.android.dx.cf.code.BytecodeArray;
25 import com.android.dx.cf.code.ConcreteMethod;
26 import com.android.dx.cf.code.Ropper;
32 import com.android.dx.rop.code.BasicBlock;
33 import com.android.dx.rop.code.BasicBlockList;
34 import com.android.dx.rop.code.Insn
209 BytecodeArray code = meth.getCode(); local
284 BytecodeArray code = meth.getCode(); local
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/form/
Form11n.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 11n}. See the instruction format spec
32 /** {@code non-null;} unique instance of this class */
Form21s.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 21s}. See the instruction format spec
32 /** {@code non-null;} unique instance of this class */
Form22b.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 22b}. See the instruction format spec
32 /** {@code non-null;} unique instance of this class */
Form22c.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;
30 * Instruction format {@code 22c}. See the instruction format spec
34 /** {@code non-null;} unique instance of this class */
Form22s.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 22s}. See the instruction format spec
32 /** {@code non-null;} unique instance of this class */
Form22t.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.TargetInsn;
22 import com.android.dx.rop.code.RegisterSpecList;
26 * Instruction format {@code 22t}. See the instruction format spec
30 /** {@code non-null;} unique instance of this class */
Form31i.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 31i}. See the instruction format spec
32 /** {@code non-null;} unique instance of this class */
Form51l.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;
29 * Instruction format {@code 51l}. See the instruction format spec
33 /** {@code non-null;} unique instance of this class */
  /packages/apps/IM/src/com/android/im/app/
ErrorResUtils.java 28 public static String getErrorRes(Resources res, int code, Object... args) {
29 int resId = getErrorResId(code);
31 return res.getString(R.string.general_error, code);
37 private static int getErrorResId(int code) {
38 switch (code) {
  /external/webkit/WebCore/loader/
TextResourceDecoder.cpp 101 static int ISkanji(int code)
103 if (code >= 0x100)
105 return sjisMap[code & 0xff] & 1;
107 static int ISkana(int code)
109 if (code >= 0x100)
111 return sjisMap[code & 0xff] & 2;
156 enum Type code; local
165 code = ASCII;
172 code = JIS;
176 code = JIS
    [all...]
  /external/opencore/codecs_v2/video/avc_h264/enc/src/
residual.cpp 34 uint code; local
55 code = *((uint*)pSrc);
57 *((uint*)pDst) = code;
59 status = BitstreamWriteBits(stream, 32, code);
64 code = *((uint*)pSrc);
66 *((uint*)pDst) = code;
68 status = BitstreamWriteBits(stream, 16, code);
88 code = *((uint*)pSrc);
90 *((uint*)pDst) = code;
92 status = BitstreamWriteBits(stream, 32, code);
    [all...]
  /external/opencore/codecs_v2/video/avc_h264/dec/src/
avc_bitstream.cpp 62 /* Return : Next word with emulation prevention code removed. Everything
170 AVCDec_Status BitstreamReadBits(AVCDecBitstream *stream, int nBits, uint *code)
177 *code = stream->curr_word >> (32 - nBits);
194 AVCDec_Status BitstreamShowBits(AVCDecBitstream *stream, int nBits, uint *code)
202 *code = stream->curr_word >> (32 - nBits);
218 AVCDec_Status BitstreamRead1Bit(AVCDecBitstream *stream, uint *code)
225 *code = stream->curr_word >> 31;
251 /* ignore the emulation prevention code, assume it has been taken out. */
255 uint code; local
266 BitstreamShowBits(stream, total_bit_left, &code);
    [all...]
  /external/qemu/android/skin/
keyboard.c 105 unsigned code,
108 if (code != 0 && kb->keycode_count < MAX_KEYCODES) {
109 //dprint("add keycode %d, down %d\n", code % 0x1ff, down );
110 kb->keycodes[(int)kb->keycode_count++] = ( (code & 0x1ff) | (down ? 0x200 : 0) );
123 int code = kb->keycodes[nn]; local
124 printf(" [0x%03x,%s]", (code & 0x1ff), (code & 0x200) ? "down" : " up " );
244 AndroidKeyCode code = 0; local
254 case SDLK_LEFT: code = kKeyCodeDpadLeft; break;
255 case SDLK_RIGHT: code = kKeyCodeDpadRight; break
503 unsigned code; local
    [all...]
  /frameworks/base/core/java/android/os/
Binder.java 191 protected boolean onTransact(int code, Parcel data, Parcel reply,
193 if (code == INTERFACE_TRANSACTION) {
196 } else if (code == DUMP_TRANSACTION) {
243 public final boolean transact(int code, Parcel data, Parcel reply,
245 if (Config.LOGV) Log.v("Binder", "Transact: " + code + " to " + this);
249 boolean r = onTransact(code, data, reply, flags);
279 private boolean execTransact(int code, int dataObj, int replyObj,
288 res = onTransact(code, data, reply, flags);
311 public native boolean transact(int code, Parcel data, Parcel reply,
  /frameworks/base/media/libstagefright/codecs/avc/dec/src/
avc_bitstream.cpp 62 /* Return : Next word with emulation prevention code removed. Everything
170 AVCDec_Status BitstreamReadBits(AVCDecBitstream *stream, int nBits, uint *code)
177 *code = stream->curr_word >> (32 - nBits);
194 AVCDec_Status BitstreamShowBits(AVCDecBitstream *stream, int nBits, uint *code)
202 *code = stream->curr_word >> (32 - nBits);
218 AVCDec_Status BitstreamRead1Bit(AVCDecBitstream *stream, uint *code)
225 *code = stream->curr_word >> 31;
251 /* ignore the emulation prevention code, assume it has been taken out. */
255 uint code; local
266 BitstreamShowBits(stream, total_bit_left, &code);
    [all...]
  /external/iptables/extensions/
libip6t_icmp6.c 83 " (or numeric type or type/code)\n"
94 parse_icmpv6(const char *icmpv6type, u_int8_t *type, u_int8_t code[])
116 code[0] = icmpv6_codes[match].code_min;
117 code[1] = icmpv6_codes[match].code_max;
136 "Invalid ICMPv6 code `%s'\n",
138 code[0] = code[1] = number;
140 code[0] = 0;
141 code[1] = 0xFF;
152 icmpv6info->code[1] = 0xFF
    [all...]
libipt_icmp.c 107 " (or numeric type or type/code)\n"
118 parse_icmp(const char *icmptype, u_int8_t *type, u_int8_t code[])
140 code[0] = icmp_codes[match].code_min;
141 code[1] = icmp_codes[match].code_max;
160 "Invalid ICMP code `%s'\n",
162 code[0] = code[1] = number;
164 code[0] = 0;
165 code[1] = 0xFF;
177 icmpinfo->code[1] = 0xFF
    [all...]
  /external/webkit/JavaScriptCore/jit/
ExecutableAllocator.h 7 * 1. Redistributions of source code must retain the above copyright
194 static void cacheFlush(void* code, size_t size)
196 sys_dcache_flush(code, size);
197 sys_icache_invalidate(code, size);
200 static void cacheFlush(void* code, size_t size)
212 : "r" (code), "r" (reinterpret_cast<char*>(code) + size)
216 static void cacheFlush(void* code, size_t size)
218 User::IMB_Range(code, static_cast<char*>(code) + size)
    [all...]
  /frameworks/base/services/java/com/android/server/
NativeDaemonConnector.java 119 int code = Integer.parseInt(tokens[0]); local
121 if (code >= ResponseCode.UnsolicitedInformational) {
123 if (!mCallbacks.onEvent(code, event, tokens)) {
217 int code = -1; local
225 code = Integer.parseInt(tokens[0]);
231 if ((code >= 200) && (code < 600)) {
240 if (code >= ResponseCode.FailedRangeStart &&
241 code <= ResponseCode.FailedRangeEnd) {
247 code, cmd, response.get(response.size()-1).substring(4))
266 int code = Integer.parseInt(tok[0]); local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/
SDL_amigaevents.c 40 SDL_keysym *amiga_TranslateKey(int code, SDL_keysym *keysym);
116 static int amiga_GetButton(int code)
118 switch(code)
131 int class=msg->Class,code=msg->Code; local
176 if(!(code&IECODE_UP_PREFIX))
179 amiga_GetButton(code), 0, 0);
184 code&=~IECODE_UP_PREFIX;
186 amiga_GetButton(code), 0, 0);
194 if( !(code&IECODE_UP_PREFIX)
    [all...]

Completed in 1902 milliseconds

1 2 3 4 5 6 7 8 91011>>