HomeSort by relevance Sort by last modified time
    Searched refs:code (Results 26 - 50 of 18139) sorted by null

12 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/hppa/reloc/
blebug3.s 1 .code
3 .import yabba,code
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/hppa/unsorted/
locallabel.s 1 .code
  /external/syslinux/com32/gpllib/dmi/
dmi_cache.c 26 const char *dmi_cache_mode(uint8_t code)
35 return mode[code];
38 const char *dmi_cache_location(uint8_t code)
47 if (location[code] != NULL)
48 return location[code];
52 uint16_t dmi_cache_size(uint16_t code)
54 if (code & 0x8000)
55 return (code & 0x7FFF) << 6; /* KB */
57 return code; /* KB */
60 void dmi_cache_types(uint16_t code, const char *sep, char *array
    [all...]
dmi_memory.c 22 * For the avoidance of doubt the "preferred form" of this code is one which
26 * are deemed to be part of the source code.
32 void dmi_memory_array_error_handle(uint16_t code, char *array)
34 if (code == 0xFFFE)
36 else if (code == 0xFFFF)
39 sprintf(array, "0x%04X", code);
42 void dmi_memory_device_width(uint16_t code, char *width)
48 if (code == 0xFFFF || code == 0)
51 sprintf(width, "%u bits", code);
    [all...]
  /libcore/ojluni/src/main/java/sun/net/ftp/
FtpProtocolException.java 5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
31 * <p>The specific error code can be retreived with {@link #getReplyCode() }.</p>
36 private final FtpReplyCode code; field in class:FtpProtocolException
39 * Constructs a new {@code FtpProtocolException} from the
40 * specified detail message. The reply code is set to unknow error.
46 code = FtpReplyCode.UNKNOWN_ERROR;
50 * Constructs a new {@code FtpProtocolException} from th
    [all...]
  /external/flatbuffers/src/
idl_gen_php.cpp 17 // independent from idl_parser, since this code is not needed for most clients
67 std::string &code = *code_ptr; local
68 code += "<?php\n";
69 code = code + "// " + FlatBuffersGeneratedWarning();
70 code += "namespace " + name_space_name + ";\n\n";
73 code += "use \\Google\\FlatBuffers\\Struct;\n";
74 code += "use \\Google\\FlatBuffers\\Table;\n";
75 code += "use \\Google\\FlatBuffers\\ByteBuffer;\n";
76 code += "use \\Google\\FlatBuffers\\FlatBufferBuilder;\n"
98 std::string &code = *code_ptr; local
108 std::string &code = *code_ptr; local
114 std::string &code = *code_ptr; local
120 std::string &code = *code_ptr; local
129 std::string &code = *code_ptr; local
136 std::string &code = *code_ptr; local
157 std::string &code = *code_ptr; local
175 std::string &code = *code_ptr; local
193 std::string &code = *code_ptr; local
209 std::string &code = *code_ptr; local
232 std::string &code = *code_ptr; local
255 std::string &code = *code_ptr; local
274 std::string &code = *code_ptr; local
300 std::string &code = *code_ptr; local
317 std::string &code = *code_ptr; local
337 std::string &code = *code_ptr; local
400 std::string &code = *code_ptr; local
449 std::string &code = *code_ptr; local
461 std::string &code = *code_ptr; local
487 std::string &code = *code_ptr; local
554 std::string &code = *code_ptr; local
588 std::string &code = *code_ptr; local
640 std::string &code = *code_ptr; local
740 std::string &code = *code_ptr; local
773 std::string &code = *code_ptr; local
841 std::string &code = *code_ptr; local
942 std::string &code = *code_ptr; local
    [all...]
  /external/libxml2/include/libxml/
xmlunicode.h 26 XMLPUBFUN int XMLCALL xmlUCSIsAegeanNumbers (int code);
27 XMLPUBFUN int XMLCALL xmlUCSIsAlphabeticPresentationForms (int code);
28 XMLPUBFUN int XMLCALL xmlUCSIsArabic (int code);
29 XMLPUBFUN int XMLCALL xmlUCSIsArabicPresentationFormsA (int code);
30 XMLPUBFUN int XMLCALL xmlUCSIsArabicPresentationFormsB (int code);
31 XMLPUBFUN int XMLCALL xmlUCSIsArmenian (int code);
32 XMLPUBFUN int XMLCALL xmlUCSIsArrows (int code);
33 XMLPUBFUN int XMLCALL xmlUCSIsBasicLatin (int code);
34 XMLPUBFUN int XMLCALL xmlUCSIsBengali (int code);
35 XMLPUBFUN int XMLCALL xmlUCSIsBlockElements (int code);
    [all...]
  /external/elfutils/tests/
run-show-abbrev.sh 24 abbrev[0]: code = 1, tag = 17, children = 1
25 abbrev[0]: attr[0]: code = 16, form = 6, offset = 0
26 abbrev[0]: attr[1]: code = 18, form = 1, offset = 2
27 abbrev[0]: attr[2]: code = 17, form = 1, offset = 4
28 abbrev[0]: attr[3]: code = 3, form = 8, offset = 6
29 abbrev[0]: attr[4]: code = 27, form = 8, offset = 8
30 abbrev[0]: attr[5]: code = 37, form = 8, offset = 10
31 abbrev[0]: attr[6]: code = 19, form = 11, offset = 12
32 abbrev[19]: code = 2, tag = 46, children = 1
33 abbrev[19]: attr[0]: code = 1, form = 19, offset = 1
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/immutable/
Code2.java 22 private final Integer code; field in class:Code2
25 this.code = name;
29 this.code = new Integer(name);
33 return code;
39 Code2 code = (Code2) obj; local
40 return code.equals(code.code);
48 return code.hashCode();
53 return "<Code2 code=" + code + ">"
    [all...]
Code3.java 23 private final Integer code; field in class:Code3
25 public Code3(String name, Integer code) {
26 this.code = code;
31 return name + code;
37 Code3 code = (Code3) obj; local
38 return code.equals(code.code);
46 return code.hashCode()
    [all...]
Code4.java 23 private final Integer code; field in class:Code4
26 this.code = name;
30 this.code = new Integer(name.intValue());
34 return code;
40 Code4 code = (Code4) obj; local
41 return code.equals(code.code);
49 return code.hashCode();
54 return "<Code4 code=" + code + ">"
    [all...]
  /external/proguard/src/proguard/classfile/instruction/
Instruction.java 890 * Writes the Instruction at the given offset in the given code attribute.
894 write(codeAttribute.code, offset);
899 * Writes the Instruction at the given offset in the given code array.
901 public void write(byte[] code, int offset)
906 code[offset++] = InstructionConstants.OP_WIDE;
910 code[offset++] = opcode;
913 writeInfo(code, offset);
930 protected abstract void readInfo(byte[] code, int offset);
936 protected abstract void writeInfo(byte[] code, int offset);
1010 protected static int readByte(byte[] code, int offset
    [all...]
  /frameworks/base/telephony/java/com/android/ims/
ImsException.java 34 public ImsException(String message, int code) {
35 super(message + ", code = " + code);
36 mCode = code;
39 public ImsException(String message, Throwable cause, int code) {
41 mCode = code;
45 * Gets the detailed exception code when ImsException is throwed
47 * @return the exception code in {@link ImsReasonInfo}
  /external/strace/
ioctl.c 11 * 1. Redistributions of source code must retain the above copyright
46 const unsigned int code2 = ((struct_ioctlent *) b)->code;
51 ioctl_lookup(const unsigned int code)
55 iop = bsearch((const void *) (const uintptr_t) code, ioctlent,
59 if (iop->code != code) {
70 const unsigned int code = iop->code; local
72 if (iop < ioctlent + nioctlents && iop->code == code)
187 const unsigned int code = tcp->u_arg[1]; local
229 const unsigned int code = tcp->u_arg[1]; local
    [all...]
  /external/mesa3d/src/mapi/glapi/
glapi_entrypoint.c 28 * Arch-specific code for manipulating GL API entrypoints (dispatch stubs).
100 GLubyte * const code = (GLubyte *) u_execmem_alloc(DISPATCH_FUNCTION_SIZE); local
103 if ( code != NULL ) {
104 (void) memcpy(code, template_func, DISPATCH_FUNCTION_SIZE);
105 fill_in_entrypoint_offset( (_glapi_proc) code, functionOffset );
108 return (_glapi_proc) code;
119 GLubyte * const code = (GLubyte *) entrypoint; local
122 *((unsigned int *)(code + 8)) = 4 * offset;
124 *((unsigned int *)(code + 11)) = 4 * offset;
125 *((unsigned int *)(code + 22)) = 4 * offset
195 unsigned int *code = &__glapi_sparc_tls_stub; local
199 unsigned int *code = &__glapi_sparc_pthread_stub; local
283 unsigned int *code = (unsigned int *) u_execmem_alloc(sizeof(template)); local
302 unsigned int *code = (unsigned int *) entrypoint; local
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/r/
exception.i 5 %define_as(SWIG_exception(code, msg),
6 %block(switch (code) {case SWIG_IndexError: return Rf_ScalarLogical(NA_LOGICAL); default: %error(code, msg); SWIG_fail;} ))
  /art/runtime/
dex_instruction_utils.h 54 constexpr bool IsInstructionDirectConst(Instruction::Code opcode) {
58 constexpr bool IsInstructionConstWide(Instruction::Code opcode) {
62 constexpr bool IsInstructionReturn(Instruction::Code opcode) {
66 constexpr bool IsInstructionInvoke(Instruction::Code opcode) {
71 constexpr bool IsInstructionQuickInvoke(Instruction::Code opcode) {
76 constexpr bool IsInstructionInvokeStatic(Instruction::Code opcode) {
80 constexpr bool IsInstructionGoto(Instruction::Code opcode) {
84 constexpr bool IsInstructionIfCc(Instruction::Code opcode) {
88 constexpr bool IsInstructionIfCcZ(Instruction::Code opcode) {
92 constexpr bool IsInstructionIGet(Instruction::Code code)
    [all...]
  /external/valgrind/gdbserver_tests/
nlgone_exit.stdoutB.exp 2 Program exited with code 01.
  /frameworks/base/services/core/java/com/android/server/
INativeDaemonConnectorCallbacks.java 23 boolean onCheckHoldWakeLock(int code);
24 boolean onEvent(int code, String raw, String[] cooked);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/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.11-4.8/sysroot/usr/include/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.15-4.8/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
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
thumb-nop.s 2 .code 16
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/hppa/parse/
undefbug.s 1 .code
  /toolchain/binutils/binutils-2.25/libiberty/
xexit.c 22 @deftypefn Replacement void xexit (int @var{code})
25 the @code{xatexit} replacement function, they will be called first.
26 Termination is handled via the system's normal @code{exit} call.
47 xexit (int code)
51 exit (code);

Completed in 738 milliseconds

12 3 4 5 6 7 8 91011>>