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

1 2 3 4 5 6 7 8 91011>>

  /external/opencv3/3rdparty/zlib/
inffixed.h 10 static const code lenfix[512] = {
87 static const code distfix[32] = {
  /external/pdfium/third_party/zlib_v128/
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.25/gas/testsuite/gas/hppa/parse/
align2.s 1 .code
versionbug.s 1 .code
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/hppa/unsorted/
fragbug.s 1 .code
locallabel.s 1 .code
  /external/curl/tests/libtest/
notexists.pl 3 my $code = 0;
12 $code = 1;
15 exit $code;
  /external/c-ares/
ares_strerror.c 21 const char *ares_strerror(int code)
52 if(code >= 0 && code < (int)(sizeof(errtext) / sizeof(*errtext)))
53 return errtext[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/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.c 193 u_errorName(UErrorCode code) {
194 if(U_ZERO_ERROR <= code && code < U_STANDARD_ERROR_LIMIT) {
195 return _uErrorName[code];
196 } else if(U_ERROR_WARNING_START <= code && code < U_ERROR_WARNING_LIMIT) {
197 return _uErrorInfoName[code - U_ERROR_WARNING_START];
198 } else if(U_PARSE_ERROR_START <= code && code < U_PARSE_ERROR_LIMIT){
199 return _uTransErrorName[code - U_PARSE_ERROR_START]
    [all...]
  /external/libmicrohttpd/src/microhttpd/
reason_phrase.h 30 * 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);
  /frameworks/av/media/mtp/
MtpDebug.h 29 static const char* getOperationCodeName(MtpOperationCode code);
30 static const char* getFormatCodeName(MtpObjectFormat code);
31 static const char* getObjectPropCodeName(MtpPropertyCode code);
32 static const char* getDevicePropCodeName(MtpPropertyCode code);
  /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...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/hppa/reloc/
blebug3.s 1 .code
3 .import yabba,code
  /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/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...]

Completed in 3893 milliseconds

1 2 3 4 5 6 7 8 91011>>