| /ndk/build/platforms/android-5/arch-arm/usr/include/linux/ |
| filter.h | 23 __u16 code; member in struct:sock_filter 35 #define BPF_CLASS(code) ((code) & 0x07) 45 #define BPF_SIZE(code) ((code) & 0x18) 49 #define BPF_MODE(code) ((code) & 0xe0) 57 #define BPF_OP(code) ((code) & 0xf0) 72 #define BPF_SRC(code) ((code) & 0x08 [all...] |
| /ndk/build/platforms/android-5/arch-x86/usr/include/linux/ |
| filter.h | 23 __u16 code; member in struct:sock_filter 35 #define BPF_CLASS(code) ((code) & 0x07) 45 #define BPF_SIZE(code) ((code) & 0x18) 49 #define BPF_MODE(code) ((code) & 0xe0) 57 #define BPF_OP(code) ((code) & 0xf0) 72 #define BPF_SRC(code) ((code) & 0x08 [all...] |
| /ndk/build/platforms/android-8/arch-arm/usr/include/linux/ |
| filter.h | 23 __u16 code; member in struct:sock_filter 35 #define BPF_CLASS(code) ((code) & 0x07) 45 #define BPF_SIZE(code) ((code) & 0x18) 49 #define BPF_MODE(code) ((code) & 0xe0) 57 #define BPF_OP(code) ((code) & 0xf0) 72 #define BPF_SRC(code) ((code) & 0x08 [all...] |
| /ndk/build/platforms/android-8/arch-x86/usr/include/linux/ |
| filter.h | 23 __u16 code; member in struct:sock_filter 35 #define BPF_CLASS(code) ((code) & 0x07) 45 #define BPF_SIZE(code) ((code) & 0x18) 49 #define BPF_MODE(code) ((code) & 0xe0) 57 #define BPF_OP(code) ((code) & 0xf0) 72 #define BPF_SRC(code) ((code) & 0x08 [all...] |
| /external/opencore/codecs_v2/video/m4v_h263/dec/src/ |
| vlc_decode.cpp | 46 * ACTS-MoMuSys partners retain full right to use the code for his/her own 47 * purpose, assign or donate the code to a third party and to inhibit third 48 * parties from using the code for non MPEG-4 Video (ISO/IEC 14496-2) Standard 71 * Donated to the Momusys-project as background code by 106 uint32 code; local 109 BitstreamShowBits32(stream, 24, &code); 111 while (code != 1) 115 BitstreamShowBits32(stream, 24, &code); 128 * 3/29/00 : added return code check to some functions and 129 * optimize the code 455 uint code; local 505 uint code; local 538 uint code; local 559 uint code; local 593 uint code; local 631 uint code; local 841 uint code; local 1024 uint code; local 1203 uint code; local 1263 uint code; local 1318 uint code; local 1391 uint code; local 1473 uint code, mask; local 1556 uint code, mask; local [all...] |
| dec_pred_intra_dc.cpp | 34 uint code; local 52 code = (int) BitstreamReadBits16_INLINE(stream, DC_size); 54 first_bit = code >> (DC_size - 1); 59 *INTRADC_delta = code ^((1 << DC_size) - 1); 64 *INTRADC_delta = code;
|
| /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/ |
| vlc_decode.cpp | 46 * ACTS-MoMuSys partners retain full right to use the code for his/her own 47 * purpose, assign or donate the code to a third party and to inhibit third 48 * parties from using the code for non MPEG-4 Video (ISO/IEC 14496-2) Standard 71 * Donated to the Momusys-project as background code by 106 uint32 code; local 109 BitstreamShowBits32(stream, 24, &code); 111 while (code != 1) 115 BitstreamShowBits32(stream, 24, &code); 128 * 3/29/00 : added return code check to some functions and 129 * optimize the code 455 uint code; local 505 uint code; local 538 uint code; local 559 uint code; local 593 uint code; local 631 uint code; local 841 uint code; local 1024 uint code; local 1203 uint code; local 1263 uint code; local 1318 uint code; local 1391 uint code; local 1473 uint code, mask; local 1556 uint code, mask; local [all...] |
| dec_pred_intra_dc.cpp | 34 uint code; local 52 code = (int) BitstreamReadBits16_INLINE(stream, DC_size); 54 first_bit = code >> (DC_size - 1); 59 *INTRADC_delta = code ^((1 << DC_size) - 1); 64 *INTRADC_delta = code;
|
| /external/icu4c/common/ |
| errorcode.cpp | 23 UErrorCode code = errorCode; local 25 return code;
|
| /external/webkit/WebCore/html/ |
| HTMLParserErrorCodes.cpp | 7 * 1. Redistributions of source code must retain the above copyright 65 bool isWarning(HTMLParserErrorCode code) 67 return code >= IncorrectXMLCloseScriptWarning;
|
| /dalvik/dx/etc/ |
| run-opcode-gen | 19 ./opcode-gen ../src/com/android/dx/dex/code/DalvOps.java 20 ./opcode-gen ../src/com/android/dx/dex/code/Dops.java
|
| /dalvik/libcore/luni/src/main/java/java/net/ |
| HttpRetryException.java | 34 * Creates a new {@code HttpRetryException} instance with the specified 35 * response code and the given detail message. 39 * @param code 40 * the HTTP response code from target host. 42 public HttpRetryException(String detail, int code) { 44 responseCode = code; 48 * Creates a new {@code HttpRetryException} instance with the specified 49 * response code, the given detail message and the value of the location 54 * @param code 55 * the HTTP response code from target host [all...] |
| /external/elfutils/libdw/ |
| dwarf_hasattr.c | 32 unsigned int code; local 33 (void) __libdw_find_attr (die, search_name, &code, NULL); 35 return code == search_name;
|
| /dalvik/libcore/nio_char/src/test/java/tests/api/java/nio/charset/ |
| Charset_TestGenerator.java | 111 abstract void consume (int code); 113 boolean isAccepted (int code) 115 return Character.isLetterOrDigit(code); 121 void consume (int code) { 122 System.out.print(code); 133 boolean isAccepted (int code) 135 return Character.isLetterOrDigit(code) || Character.isWhitespace(code); 141 void consume (int code) { 142 // System.out.print(code); 181 int code = 0; local [all...] |
| /external/v8/src/ia32/ |
| register-allocator-ia32-inl.h | 6 // * Redistributions of source code must retain the above copyright 40 // The code for this test relies on the order of register codes. 41 return reg.code() >= esp.code() && reg.code() <= esi.code(); 62 return kNumbers[reg.code()];
|
| /external/webkit/WebCore/page/ |
| GeolocationError.h | 7 * 1. Redistributions of source code must retain the above copyright 45 static PassRefPtr<GeolocationError> create(ErrorCode code, const String& message) { return adoptRef(new GeolocationError(code, message)); } 47 ErrorCode code() const { return m_code; } function in class:WebCore::GeolocationError 51 GeolocationError(ErrorCode code, const String& message) 52 : m_code(code)
|
| PositionError.h | 7 * 1. Redistributions of source code must retain the above copyright 43 static PassRefPtr<PositionError> create(ErrorCode code, const String& message) { return adoptRef(new PositionError(code, message)); } 45 ErrorCode code() const { return m_code; } function in class:WebCore::PositionError 51 PositionError(ErrorCode code, const String& message) 52 : m_code(code)
|
| /external/opencore/codecs_v2/video/avc_h264/dec/src/ |
| vlc.cpp | 311 uint code; local 317 BitstreamShowBits(stream, 16, &code); 319 if (code >= 8192) 321 pcode = (uint8*) & (TotCofNTrail1[(code>>13)+65+2][0]); 323 else if (code >= 2048) 325 pcode = (uint8*) & (TotCofNTrail1[(code>>9)+50+2][0]); 327 else if (code >= 1024) 329 pcode = (uint8*) & (TotCofNTrail1[(code>>8)+46+2][0]); 331 else if (code >= 512) 333 pcode = (uint8*) & (TotCofNTrail1[(code>>7)+42+2][0]) 519 uint code; local [all...] |
| /frameworks/base/media/libstagefright/codecs/avc/dec/src/ |
| vlc.cpp | 311 uint code; local 317 BitstreamShowBits(stream, 16, &code); 319 if (code >= 8192) 321 pcode = (uint8*) & (TotCofNTrail1[(code>>13)+65+2][0]); 323 else if (code >= 2048) 325 pcode = (uint8*) & (TotCofNTrail1[(code>>9)+50+2][0]); 327 else if (code >= 1024) 329 pcode = (uint8*) & (TotCofNTrail1[(code>>8)+46+2][0]); 331 else if (code >= 512) 333 pcode = (uint8*) & (TotCofNTrail1[(code>>7)+42+2][0]) 519 uint code; local [all...] |
| /external/kernel-headers/original/linux/ |
| filter.h | 16 * Current version of the filter code architecture. 23 * the BPF code definitions which need to match so you can share filters 28 __u16 code; /* Actual filter code */ member in struct:sock_filter 58 #define BPF_CLASS(code) ((code) & 0x07) 69 #define BPF_SIZE(code) ((code) & 0x18) 73 #define BPF_MODE(code) ((code) & 0xe0 [all...] |
| /external/v8/src/ |
| code-stubs.cc | 6 // * Redistributions of source code must retain the above copyright 31 #include "code-stubs.h" 39 bool CodeStub::FindCodeInCache(Code** code_out) { 43 *code_out = Code::cast(Heap::code_stubs()->ValueAt(index)); 51 // Update the static counter each time a new code stub is generated. 55 // Generate the code for the stub. 61 void CodeStub::RecordCodeGeneration(Code* code, MacroAssembler* masm) { 62 code->set_major_key(MajorKey()); 67 code->instruction_start() 87 Code* code; local 124 Code* code; local [all...] |
| /external/webkit/WebCore/dom/ |
| ExceptionCode.cpp | 7 * 1. Redistributions of source code must retain the above copyright 153 int code = ec; local 160 if (code >= RangeException::RangeExceptionOffset && code <= RangeException::RangeExceptionMax) { 163 code -= RangeException::RangeExceptionOffset; 168 } else if (code >= EventException::EventExceptionOffset && code <= EventException::EventExceptionMax) { 171 code -= EventException::EventExceptionOffset; 176 } else if (code >= XMLHttpRequestException::XMLHttpRequestExceptionOffset && code <= XMLHttpRequestException::XMLHttpRequestExceptionMax) [all...] |
| /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/configurations/ |
| NetworkCodeQualifier.java | 28 * Resource Qualifier for Mobile Network Code Pixel Density. 38 public final static String NAME = "Mobile Network Code"; 42 * <code>null</code> is returned. 44 * @return a new {@link CountryCodeQualifier} object or <code>null</code> 51 int code = -1; local 53 code = Integer.parseInt(v); 59 NetworkCodeQualifier qualifier = new NetworkCodeQualifier(code); 69 * @param code the value of the qualifier, as returned by {@link #getCode()} 117 int code = -1; local [all...] |
| /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/paddings/ |
| TBCPadding.java | 53 byte code; 57 code = (byte)((in[inOff - 1] & 0x01) == 0 ? 0xff : 0x00); 61 code = (byte)((in[in.length - 1] & 0x01) == 0 ? 0xff : 0x00); 66 in[inOff] = code; 79 byte code = in[in.length - 1]; 82 while (index > 0 && in[index - 1] == code)
|
| /dalvik/dx/src/com/android/dx/dex/code/ |
| CodeAddress.java | 17 package com.android.dx.dex.code; 19 import com.android.dx.rop.code.RegisterSpecList; 20 import com.android.dx.rop.code.SourcePosition; 23 * Pseudo-instruction which is used to track an address within a code 25 * exception handler ranges. Its code size is zero, and so instances 32 * unknown ({@code -1}). 34 * @param position {@code non-null;} source position 55 return "code-address";
|