Searched refs:code (Results 1 - 25 of 4188) sorted by relevance

1234567891011>>

/external/python/cpython2/Modules/zlib/
H A Dinffixed.h10 static const code lenfix[512] = {
87 static const code distfix[32] = {
/external/python/cpython3/Modules/zlib/
H A Dinffixed.h10 static const code lenfix[512] = {
87 static const code distfix[32] = {
/external/syslinux/com32/lib/zlib/
H A Dinffixed.h10 static const code lenfix[512] = {
87 static const code distfix[32] = {
/external/zlib/src/contrib/infback9/
H A Dinffix9.h10 static const code lenfix[512] = {
99 static const code distfix[32] = {
/external/zlib/src/
H A Dinffixed.h10 static const code lenfix[512] = {
87 static const code distfix[32] = {
/external/curl/tests/libtest/
H A Dnotexists.pl3 my $code = 0;
12 $code = 1;
15 exit $code;
/external/libmojo/mojo/public/js/
H A Dthreading.js2 // Use of this source code is governed by a BSD-style license that can be
7 // Note: This file is for documentation purposes only. The code here is not
21 function quit() { [native code] }
H A Dsupport.js2 // Use of this source code is governed by a BSD-style license that can be
7 // Note: This file is for documentation purposes only. The code here is not
26 function asyncWait(handle, signals, callback) { [native code] }
35 function cancelWait(waitId) { [native code] }
47 function watch(handle, signals, callback) { [native code] }
53 function cancelWatch(watchId) { [native code] }
/external/clang/test/Driver/
H A Dinhibit-downstream-commands.c6 invalid C code!
/external/llvm/test/MC/ARM/
H A Dfixup-cpu-mode.s5 .code 16
8 .code 32
/external/syslinux/com32/gpllib/dmi/
H A Ddmi_chassis.c22 * 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 const char *dmi_chassis_type(uint8_t code) argument
67 if (code >= 0x01 && code <= 0x1D)
68 return type[code - 0x01];
72 const char *dmi_chassis_lock(uint8_t code) argument
79 return lock[code];
82 const char *dmi_chassis_state(uint8_t code) argument
94 if (code >
99 dmi_chassis_security_status(uint8_t code) argument
[all...]
H A Ddmi_battery.c22 * For the avoidance of doubt the "preferred form" of this code is one which
26 * are deemed to be part of the source code.
31 const char *dmi_battery_chemistry(uint8_t code) argument
45 if (code >= 0x01 && code <= 0x08)
46 return chemistry[code - 0x01];
50 void dmi_battery_capacity(uint16_t code, uint8_t multiplier, char *capacity) argument
52 if (code == 0)
55 sprintf(capacity, "%u mWh", code * multiplier);
58 void dmi_battery_voltage(uint16_t code, cha argument
66 dmi_battery_maximum_error(uint8_t code, char *error) argument
[all...]
H A Ddmi_cache.c26 const char *dmi_cache_mode(uint8_t code) argument
35 return mode[code];
38 const char *dmi_cache_location(uint8_t code) argument
47 if (location[code] != NULL)
48 return location[code];
52 uint16_t dmi_cache_size(uint16_t code) argument
54 if (code & 0x8000)
55 return (code & 0x7FFF) << 6; /* KB */
57 return code; /* KB */
60 void dmi_cache_types(uint16_t code, cons argument
84 dmi_cache_ec_type(uint8_t code) argument
101 dmi_cache_type(uint8_t code) argument
117 dmi_cache_associativity(uint8_t code) argument
[all...]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/
H A DChild1.java19 private Integer code; field in class:Child1
21 public Child1(Integer code) { argument
22 this.code = code;
26 return code;
/external/javassist/src/main/javassist/bytecode/
H A DByteArray.java25 public static int readU16bit(byte[] code, int index) { argument
26 return ((code[index] & 0xff) << 8) | (code[index + 1] & 0xff);
32 public static int readS16bit(byte[] code, int index) { argument
33 return (code[index] << 8) | (code[index + 1] & 0xff);
39 public static void write16bit(int value, byte[] code, int index) { argument
40 code[index] = (byte)(value >>> 8);
41 code[index + 1] = (byte)value;
47 public static int read32bit(byte[] code, in argument
55 write32bit(int value, byte[] code, int index) argument
[all...]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/immutable/
H A DCode.java19 private final Integer code; field in class:Code
22 this.code = name;
26 return code;
32 Code code = (Code) obj;
33 return code.equals(code.code);
41 return code.hashCode();
46 return "<Code code=" + code
[all...]
H A DCode2.java22 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;
40 return code.equals(code.code);
48 return code.hashCode();
53 return "<Code2 code
[all...]
H A DCode3.java23 private final Integer code; field in class:Code3
25 public Code3(String name, Integer code) { argument
26 this.code = code;
31 return name + code;
37 Code3 code = (Code3) obj;
38 return code.equals(code.code);
46 return code
[all...]
/external/icu/icu4c/source/common/
H A Dutypes.cpp195 u_errorName(UErrorCode code) { argument
196 if(U_ZERO_ERROR <= code && code < U_STANDARD_ERROR_LIMIT) {
197 return _uErrorName[code];
198 } else if(U_ERROR_WARNING_START <= code && code < U_ERROR_WARNING_LIMIT) {
199 return _uErrorInfoName[code - U_ERROR_WARNING_START];
200 } else if(U_PARSE_ERROR_START <= code && code < U_PARSE_ERROR_LIMIT){
201 return _uTransErrorName[code
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTMDOMException.java36 * @param code
39 public DTMDOMException(short code, String message) argument
41 super(code, message);
48 * @param code
50 public DTMDOMException(short code) argument
52 super(code, "");
/external/libmicrohttpd/src/microhttpd/
H A Dreason_phrase.h30 * Returns the string reason phrase for a response code.
32 * If we don't have a string for a status code, we give the first
33 * message in that status code class.
35 const char *MHD_get_reason_phrase_for (unsigned int code);
/external/doclava/res/assets/customizations/
H A Dcustomizations.cs1 <?cs # placeholder for custom clearsilver code. ?
/external/flatbuffers/src/
H A Didl_gen_php.cpp17 // 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() + "\n\n";
72 code += "namespace " + name_space_name + ";\n\n";
76 code += "use \\Google\\FlatBuffers\\Struct;\n";
77 code += "use \\Google\\FlatBuffers\\Table;\n";
78 code += "use \\Google\\FlatBuffers\\ByteBuffer;\n";
79 code
101 std::string &code = *code_ptr; local
111 std::string &code = *code_ptr; local
117 std::string &code = *code_ptr; local
123 std::string &code = *code_ptr; local
132 std::string &code = *code_ptr; local
139 std::string &code = *code_ptr; local
160 std::string &code = *code_ptr; local
178 std::string &code = *code_ptr; local
196 std::string &code = *code_ptr; local
212 std::string &code = *code_ptr; local
235 std::string &code = *code_ptr; local
258 std::string &code = *code_ptr; local
277 std::string &code = *code_ptr; local
303 std::string &code = *code_ptr; local
320 std::string &code = *code_ptr; local
340 std::string &code = *code_ptr; local
403 std::string &code = *code_ptr; local
438 std::string &code = *code_ptr; local
477 std::string &code = *code_ptr; local
489 std::string &code = *code_ptr; local
515 std::string &code = *code_ptr; local
582 std::string &code = *code_ptr; local
616 std::string &code = *code_ptr; local
668 std::string &code = *code_ptr; local
770 std::string &code = *code_ptr; local
803 std::string &code = *code_ptr; local
871 std::string &code = *code_ptr; local
973 std::string &code = *code_ptr; local
[all...]
/external/libxml2/include/libxml/
H A Dxmlunicode.h26 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/
H A Drun-show-abbrev.sh24 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
[all...]

Completed in 663 milliseconds

1234567891011>>