HomeSort by relevance Sort by last modified time
    Searched refs:code (Results 1 - 25 of 19832) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
inffixed.h 10 static const code lenfix[512] = {
87 static const code distfix[32] = {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
inffixed.h 10 static const code lenfix[512] = {
87 static const code distfix[32] = {
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
inffixed.h 10 static const code lenfix[512] = {
87 static const code distfix[32] = {
  /external/python/cpython2/Modules/zlib/
inffixed.h 10 static const code lenfix[512] = {
87 static const code distfix[32] = {
  /external/python/cpython3/Modules/zlib/
inffixed.h 10 static const code lenfix[512] = {
87 static const code distfix[32] = {
  /external/syslinux/com32/lib/zlib/
inffixed.h 10 static const code lenfix[512] = {
87 static const code distfix[32] = {
  /external/zlib/src/contrib/infback9/
inffix9.h 10 static const code lenfix[512] = {
99 static const code distfix[32] = {
  /external/zlib/src/
inffixed.h 10 static const code lenfix[512] = {
87 static const code distfix[32] = {
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/hppa/parse/
align2.s 1 .code
versionbug.s 1 .code
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/hppa/unsorted/
fragbug.s 1 .code
  /toolchain/binutils/binutils-2.27/zlib/contrib/infback9/
inffix9.h 10 static const code lenfix[512] = {
99 static const code distfix[32] = {
  /toolchain/binutils/binutils-2.27/zlib/
inffixed.h 10 static const code lenfix[512] = {
87 static const code distfix[32] = {
  /external/curl/tests/libtest/
notexists.pl 3 my $code = 0;
12 $code = 1;
15 exit $code;
  /frameworks/base/services/core/java/com/android/server/pm/
PackageVerificationResponse.java 20 public final int code; field in class:PackageVerificationResponse
24 public PackageVerificationResponse(int code, int callerUid) {
25 this.code = code;
  /external/clang/test/Driver/
inhibit-downstream-commands.c 6 invalid C code!
  /external/llvm/test/MC/ARM/
fixup-cpu-mode.s 5 .code 16
8 .code 32
  /external/syslinux/com32/gpllib/dmi/
dmi_chassis.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 const char *dmi_chassis_type(uint8_t code)
67 if (code >= 0x01 && code <= 0x1D)
68 return type[code - 0x01];
72 const char *dmi_chassis_lock(uint8_t code)
79 return lock[code];
82 const char *dmi_chassis_state(uint8_t code)
94 if (code >= 0x01 && code <= 0x06
    [all...]
dmi_battery.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.
31 const char *dmi_battery_chemistry(uint8_t code)
45 if (code >= 0x01 && code <= 0x08)
46 return chemistry[code - 0x01];
50 void dmi_battery_capacity(uint16_t code, uint8_t multiplier, char *capacity)
52 if (code == 0)
55 sprintf(capacity, "%u mWh", code * multiplier);
58 void dmi_battery_voltage(uint16_t code, char *voltage
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/
Child1.java 19 private Integer code; field in class:Child1
21 public Child1(Integer code) {
22 this.code = code;
26 return code;
  /external/javassist/src/main/javassist/bytecode/
ByteArray.java 25 public static int readU16bit(byte[] code, int index) {
26 return ((code[index] & 0xff) << 8) | (code[index + 1] & 0xff);
32 public static int readS16bit(byte[] code, int index) {
33 return (code[index] << 8) | (code[index + 1] & 0xff);
39 public static void write16bit(int value, byte[] code, int index) {
40 code[index] = (byte)(value >>> 8);
41 code[index + 1] = (byte)value;
47 public static int read32bit(byte[] code, int index)
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
dec_acelp_2p_in_64.cpp 22 ANSI-C code for the Adaptive Multi-Rate - Wideband (AMR-WB) speech codec
48 int16 code[] (o): Q9 algebraic (fixed) codebook excitation
69 PSEUDO-CODE
121 ; FUNCTION CODE
126 int16 code[] /* (o): Q9 algebraic (fixed) codebook excitation */
131 pv_memset(code, 0, L_CODE*sizeof(*code));
139 code[i] = 512;
143 code[i] = -512;
150 code[i] = 512
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/immutable/
Code.java 18 public class Code {
19 private final Integer code; field in class:Code
21 public Code(Integer name) {
22 this.code = name;
26 return code;
31 if (obj instanceof Code) {
32 Code code = (Code) obj; local
33 return code.equals(code.code)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
DTMDOMException.java 36 * @param code
39 public DTMDOMException(short code, String message)
41 super(code, message);
48 * @param code
50 public DTMDOMException(short code)
52 super(code, "");
  /external/icu/icu4c/source/common/
utypes.cpp 195 u_errorName(UErrorCode code) {
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 - U_PARSE_ERROR_START]
    [all...]

Completed in 1056 milliseconds

1 2 3 4 5 6 7 8 91011>>