HomeSort by relevance Sort by last modified time
    Searched defs:code (Results 76 - 100 of 1846) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/tcpdump/
print-eap.c 5 * modification, are permitted provided that: (1) source code distributions
7 * distributions including binary code include the above copyright notice and
43 unsigned char code; member in struct:eap_packet_t
62 ND_PRINT((ndo, "EAP code=%u id=%u length=%u ",
63 eap->code, eap->id, (eap->length[0]<<8) + eap->length[1]));
  /external/webp/src/utils/
huffman_encode.h 3 // Use of this source code is governed by a BSD-style license
25 uint8_t code; // value (0..15) or escape code (16,17,18) member in struct:__anon30420
32 uint8_t* code_lengths; // Code lengths of the symbols.
  /frameworks/av/libvideoeditor/vss/src/
M4VD_Tools.c 33 M4OSA_UInt32 code; local
35 code = 0;
47 code = (code << 1);
48 code |= ((parsingCtxt->stream_byte & 0x80) >> 7);
54 return code;
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
bitstream.h 39 PV_STATUS BitstreamShowBits32(BitstreamDecVideo *stream, int nbits, uint32 *code);
45 PV_STATUS BitstreamShowBits16(BitstreamDecVideo *stream, int nbits, uint *code);
46 PV_STATUS BitstreamShow15Bits(BitstreamDecVideo *stream, uint *code);
47 PV_STATUS BitstreamShow13Bits(BitstreamDecVideo *stream, uint *code);
51 __inline PV_STATUS BitstreamShowBits16(BitstreamDecVideo *stream, int nbits, uint *code)
62 *code = stream->curr_word >> (32 - nbits);
69 __inline PV_STATUS BitstreamShow15Bits(BitstreamDecVideo *stream, uint *code)
78 *code = stream->curr_word >> 17;
83 __inline PV_STATUS BitstreamShow13Bits(BitstreamDecVideo *stream, uint *code)
92 *code = stream->curr_word >> 19
97 uint code; local
112 uint code; local
    [all...]
  /libcore/luni/src/main/java/org/w3c/dom/ls/
LSException.java 16 * Parser or write operations may throw an <code>LSException</code> if the
18 * <code>DOMError</code> with a severity of
19 * <code>DOMError.SEVERITY_FATAL_ERROR</code> or a non recovered
20 * <code>DOMError.SEVERITY_ERROR</code>, or if
21 * <code>DOMErrorHandler.handleError()</code> returned <code>false</code>
34 public short code; field in class:LSException
    [all...]
  /ndk/tests/device/issue19851-sigsetjmp/jni/
issue19851-sigsetjmp.c 62 int code, ret; local
69 if ((code = sigsetjmp(sbuf, 1)) == 0)
76 printf("siglongjmp() back to main, code = %d\n", code);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/sound/
sscape_ioctl.h 7 unsigned char code[256]; member in struct:sscape_bootblock
15 unsigned char *code; member in struct:sscape_microcode
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/alsa/sound/
sscape_ioctl.h 7 unsigned char code[256]; member in struct:sscape_bootblock
15 unsigned char *code; member in struct:sscape_microcode
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
sscape_ioctl.h 7 unsigned char code[256]; member in struct:sscape_bootblock
15 unsigned char __user *code; member in struct:sscape_microcode
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/alsa/sound/
sscape_ioctl.h 7 unsigned char code[256]; member in struct:sscape_bootblock
15 unsigned char *code; member in struct:sscape_microcode
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
sscape_ioctl.h 7 unsigned char code[256]; member in struct:sscape_bootblock
15 unsigned char __user *code; member in struct:sscape_microcode
  /external/javassist/src/main/javassist/
CtNewWrappedMethod.java 44 Bytecode code = makeBody(declaring, declaring.getClassFile2(), body, local
46 mt.getMethodInfo2().setCodeAttribute(code.toCodeAttribute());
58 Bytecode code = new Bytecode(classfile.getConstPool(), 0, 0); local
60 parameters, returnType, cparam, code);
61 code.setMaxStack(stacksize);
62 code.setMaxLocals(isStatic, parameters, 0);
63 return code;
73 Bytecode code)
81 code.addAload(0);
83 int stacksize = compileParameterList(code, parameters
    [all...]
  /art/runtime/entrypoints/jni/
jni_entrypoints.cc 61 // TODO: this code is specific to ARM
115 const void* code = reinterpret_cast<const void*>(jni_method->GetNativeGcMap()); local
116 if (UNLIKELY(code == NULL)) {
117 code = GetJniDlsymLookupStub();
118 jni_method->RegisterNative(self, code);
120 return code;
  /art/runtime/entrypoints/quick/
quick_invoke_entrypoints.cc 107 const DexFile::CodeItem* code = MethodHelper(caller_method).GetCodeItem(); local
108 CHECK_LT(dex_pc, code->insns_size_in_code_units_);
109 const Instruction* instr = Instruction::At(&code->insns_[dex_pc]);
110 Instruction::Code instr_code = instr->Opcode();
128 const void* code = method->GetEntryPointFromCompiledCode(); local
132 if (UNLIKELY(code == NULL)) {
134 LOG(FATAL) << "Code was NULL in method: " << PrettyMethod(method)
140 uint64_t code_uint = reinterpret_cast<uint32_t>(code);
162 const void* code = method->GetEntryPointFromCompiledCode(); local
166 if (UNLIKELY(code == NULL))
    [all...]
  /bionic/libc/upstream-netbsd/libc/regex/
regerror.c 7 * This code is derived from software contributed to Berkeley by
13 * 1. Redistributions of source code must retain the above copyright
40 * This code is derived from software contributed to Berkeley by
46 * 1. Redistributions of source code must retain the above copyright
133 int code; member in struct:rerr
153 { 0, "", "*** unknown regexp error code ***" }
180 for (r = rerrs; r->code != 0; r++)
181 if (r->code == target)
185 if (r->code != 0) {
215 for (r = rerrs; r->code != 0; r++
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
FixedSizeInsn.java 17 package com.android.dexgen.dex.code;
19 import com.android.dexgen.rop.code.RegisterSpecList;
20 import com.android.dexgen.rop.code.SourcePosition;
24 * Base class for instructions which are of a fixed code size and which use {@link InsnFormat} methods to write themselves. This
30 * unknown ({@code -1}).
33 * absolutely no registers (e.g., a {@code nop} or a
39 * @param position {@code non-null;} source position
40 * @param registers {@code non-null;} register list, including a
LocalEnd.java 17 package com.android.dexgen.dex.code;
19 import com.android.dexgen.rop.code.RegisterSpec;
20 import com.android.dexgen.rop.code.RegisterSpecList;
21 import com.android.dexgen.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.dexgen.dex.code;
19 import com.android.dexgen.rop.code.RegisterSpec;
20 import com.android.dexgen.rop.code.RegisterSpecList;
21 import com.android.dexgen.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...]
OddSpacer.java 17 package com.android.dexgen.dex.code;
19 import com.android.dexgen.rop.code.RegisterSpecList;
20 import com.android.dexgen.rop.code.SourcePosition;
24 * Pseudo-instruction which either turns into a {@code nop} or
32 * unknown ({@code -1}).
34 * @param position {@code non-null;} source position
RopToDop.java 17 package com.android.dexgen.dex.code;
19 import com.android.dexgen.rop.code.Insn;
20 import com.android.dexgen.rop.code.RegOps;
21 import com.android.dexgen.rop.code.RegisterSpec;
22 import com.android.dexgen.rop.code.Rop;
23 import com.android.dexgen.rop.code.Rops;
24 import com.android.dexgen.rop.code.ThrowingCstInsn;
38 /** {@code non-null;} map from all the common rops to dalvik opcodes */
281 * @param insn {@code non-null;} the original instruction
ZeroSizeInsn.java 17 package com.android.dexgen.dex.code;
19 import com.android.dexgen.rop.code.RegisterSpecList;
20 import com.android.dexgen.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
  /dalvik/dexgen/src/com/android/dexgen/dex/code/form/
Form10x.java 17 package com.android.dexgen.dex.code.form;
19 import com.android.dexgen.dex.code.DalvInsn;
20 import com.android.dexgen.dex.code.InsnFormat;
21 import com.android.dexgen.dex.code.SimpleInsn;
25 * Instruction format {@code 10x}. See the instruction format spec
29 /** {@code non-null;} unique instance of this class */
Form11x.java 17 package com.android.dexgen.dex.code.form;
19 import com.android.dexgen.dex.code.DalvInsn;
20 import com.android.dexgen.dex.code.InsnFormat;
21 import com.android.dexgen.dex.code.SimpleInsn;
22 import com.android.dexgen.rop.code.RegisterSpecList;
26 * Instruction format {@code 11x}. See the instruction format spec
30 /** {@code non-null;} unique instance of this class */
Form22x.java 17 package com.android.dexgen.dex.code.form;
19 import com.android.dexgen.dex.code.DalvInsn;
20 import com.android.dexgen.dex.code.InsnFormat;
21 import com.android.dexgen.dex.code.SimpleInsn;
22 import com.android.dexgen.rop.code.RegisterSpecList;
26 * Instruction format {@code 22x}. See the instruction format spec
30 /** {@code non-null;} unique instance of this class */
Form23x.java 17 package com.android.dexgen.dex.code.form;
19 import com.android.dexgen.dex.code.DalvInsn;
20 import com.android.dexgen.dex.code.InsnFormat;
21 import com.android.dexgen.dex.code.SimpleInsn;
22 import com.android.dexgen.rop.code.RegisterSpecList;
26 * Instruction format {@code 23x}. See the instruction format spec
30 /** {@code non-null;} unique instance of this class */

Completed in 1135 milliseconds

1 2 34 5 6 7 8 91011>>