/prebuilts/ndk/9/platforms/android-4/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...] |
/prebuilts/ndk/9/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...] |
/prebuilts/ndk/9/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...] |
/prebuilts/ndk/9/platforms/android-9/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...] |
/prebuilts/ndk/9/platforms/android-9/arch-mips/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...] |
/prebuilts/ndk/9/platforms/android-9/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...] |
/frameworks/av/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...] |
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/ |
SQLError.h | 8 * 1. Redistributions of source code must retain the above copyright 40 static PassRefPtr<SQLError> create(unsigned code, const String& message) { return adoptRef(new SQLError(code, message)); } 41 static PassRefPtr<SQLError> create(unsigned code, const char* message, int sqliteCode) 43 return create(code, String::format("%s (%d)", message, sqliteCode)); 45 static PassRefPtr<SQLError> create(unsigned code, const char* message, int sqliteCode, const char* sqliteMessage) 47 return create(code, String::format("%s (%d %s)", message, sqliteCode, sqliteMessage)); 50 unsigned code() const { return m_code; } function in class:WebCore::SQLError 70 SQLError(unsigned code, const String& message) : m_code(code), m_message(message.isolatedCopy() [all...] |
/external/clang/utils/TestUtils/ |
pch-test.pl | 20 my $code = system("clang -fsyntax-only -x $language $file > /dev/null 2>&1"); 21 if ($code == 0) { 23 $code = system("clang -cc1 -emit-pch -x $language -o $file.pch $file > /dev/null 2>&1"); 24 if ($code == 0) { 25 $code = system("clang -cc1 -include-pch $file.pch -x $language -ast-dump /dev/null > /dev/null 2>&1"); 26 if ($code == 0) { 28 } elsif (($code & 0xFF) == SIGINT) { 36 } elsif (($code & 0xFF) == SIGINT) { 43 } elsif (($code & 0xFF) == SIGINT) {
|
/external/chromium_org/third_party/WebKit/public/platform/ |
WebIDBDatabaseError.h | 8 * 1. Redistributions of source code must retain the above copyright 45 WebIDBDatabaseError(unsigned short code) { assign(code); } 46 WebIDBDatabaseError(unsigned short code, const WebString& message) { assign(code, message); } 62 WEBKIT_EXPORT void assign(unsigned short code); 63 WEBKIT_EXPORT void assign(unsigned short code, const WebString& message);
|
/external/qemu/android/ |
keycode-array.c | 20 unsigned code, 23 if (code != 0 && keycodes->keycode_count < MAX_KEYCODES) { 25 ( (code & 0x1ff) | (down ? 0x200 : 0) ); 37 int code = keycodes->keycodes[nn]; local 38 printf(" [0x%03x,%s]", (code & 0x1ff), (code & 0x200) ? "down" : " up " );
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/ |
__init__.py | 24 # the values given in the W3C recommendation. Client code can 72 return self.code 76 code = INDEX_SIZE_ERR variable in class:IndexSizeErr 79 code = DOMSTRING_SIZE_ERR variable in class:DomstringSizeErr 82 code = HIERARCHY_REQUEST_ERR variable in class:HierarchyRequestErr 85 code = WRONG_DOCUMENT_ERR variable in class:WrongDocumentErr 88 code = INVALID_CHARACTER_ERR variable in class:InvalidCharacterErr 91 code = NO_DATA_ALLOWED_ERR variable in class:NoDataAllowedErr 94 code = NO_MODIFICATION_ALLOWED_ERR variable in class:NoModificationAllowedErr 97 code = NOT_FOUND_ER variable in class:NotFoundErr 100 code = NOT_SUPPORTED_ERR variable in class:NotSupportedErr 103 code = INUSE_ATTRIBUTE_ERR variable in class:InuseAttributeErr 106 code = INVALID_STATE_ERR variable in class:InvalidStateErr 109 code = SYNTAX_ERR variable in class:SyntaxErr 112 code = INVALID_MODIFICATION_ERR variable in class:InvalidModificationErr 115 code = NAMESPACE_ERR variable in class:NamespaceErr 118 code = INVALID_ACCESS_ERR variable in class:InvalidAccessErr 121 code = VALIDATION_ERR variable in class:ValidationErr [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/ |
__init__.py | 24 # the values given in the W3C recommendation. Client code can 72 return self.code 76 code = INDEX_SIZE_ERR variable in class:IndexSizeErr 79 code = DOMSTRING_SIZE_ERR variable in class:DomstringSizeErr 82 code = HIERARCHY_REQUEST_ERR variable in class:HierarchyRequestErr 85 code = WRONG_DOCUMENT_ERR variable in class:WrongDocumentErr 88 code = INVALID_CHARACTER_ERR variable in class:InvalidCharacterErr 91 code = NO_DATA_ALLOWED_ERR variable in class:NoDataAllowedErr 94 code = NO_MODIFICATION_ALLOWED_ERR variable in class:NoModificationAllowedErr 97 code = NOT_FOUND_ER variable in class:NotFoundErr 100 code = NOT_SUPPORTED_ERR variable in class:NotSupportedErr 103 code = INUSE_ATTRIBUTE_ERR variable in class:InuseAttributeErr 106 code = INVALID_STATE_ERR variable in class:InvalidStateErr 109 code = SYNTAX_ERR variable in class:SyntaxErr 112 code = INVALID_MODIFICATION_ERR variable in class:InvalidModificationErr 115 code = NAMESPACE_ERR variable in class:NamespaceErr 118 code = INVALID_ACCESS_ERR variable in class:InvalidAccessErr 121 code = VALIDATION_ERR variable in class:ValidationErr [all...] |
/external/chromium_org/chrome/common/ |
automation_constants.cc | 2 // Use of this source code is governed by a BSD-style license that can be 27 const char* DefaultMessageForErrorCode(ErrorCode code) { 28 switch (code) { 46 Error::Error(ErrorCode code) 47 : code_(code), 48 message_(DefaultMessageForErrorCode(code)) { } 53 Error::Error(ErrorCode code, const std::string& error_msg) 54 : code_(code), message_(error_msg) { } 58 ErrorCode Error::code() const { function in class:automation::Error
|
/external/chromium_org/third_party/icu/source/common/ |
errorcode.cpp | 23 UErrorCode code = errorCode; local 25 return code;
|
/external/chromium_org/third_party/mesa/src/src/mapi/mapi/ |
entry_x86_tsd.h | 80 char *code = (char *) entry; local 82 *((unsigned long *) (code + 11)) = slot * sizeof(mapi_func); 83 *((unsigned long *) (code + 22)) = slot * sizeof(mapi_func); 90 void *code; local 93 code = u_execmem_alloc(X86_ENTRY_SIZE); 94 if (!code) 97 memcpy(code, code_templ, X86_ENTRY_SIZE); 98 entry = (mapi_func) code;
|
/external/chromium_org/third_party/skia/src/core/ |
SkErrorInternals.h | 5 * Use of this source code is governed by a BSD-style license that can be 18 static void SetError(SkError code, const char *fmt, ...); 22 static void DefaultErrorCallback(SkError code, void *context);
|
/external/clang/test/Driver/ |
output-file-cleanup.c | 24 invalid C code 28 // RUN: echo "invalid C code" > %t2.c 41 // RUN: echo "invalid C code" > %t2.c 43 // RUN: echo "invalid C code" > %t4.c
|
/external/dexmaker/src/main/java/com/google/dexmaker/ |
Local.java | 19 import com.android.dx.rop.code.RegisterSpec; 25 private final Code code; field in class:Local 30 private Local(Code code, TypeId<T> type) { 31 this.code = code; 35 static <T> Local<T> get(Code code, TypeId<T> type) { 36 return new Local<T>(code, type) [all...] |
/external/eigen/Eigen/src/Core/util/ |
NonMPL2.h | 1 // Force error if including non MPL2 license code regardless 5 #error Including non-MPL2 code in EIGEN_MPL2_ONLY mode
|
/external/harfbuzz_ng/src/hb-ucdn/ |
ucdn.c | 54 static const UCDRecord *get_ucd_record(uint32_t code) 58 if (code >= 0x110000) 61 index = index0[code >> (SHIFT1+SHIFT2)] << SHIFT1; 62 offset = (code >> SHIFT2) & ((1<<SHIFT1) - 1); 64 offset = code & ((1<<SHIFT2) - 1); 71 static const unsigned short *get_decomp_record(uint32_t code) 75 if (code >= 0x110000) 78 index = decomp_index0[code >> (DECOMP_SHIFT1+DECOMP_SHIFT2)] 80 offset = (code >> DECOMP_SHIFT2) & ((1<<DECOMP_SHIFT1) - 1); 82 offset = code & ((1<<DECOMP_SHIFT2) - 1) 156 const unsigned short *code = *code_ptr; local [all...] |
/external/junit/src/org/junit/internal/ |
RealSystem.java | 7 public void exit(int code) { 8 System.exit(code);
|
/external/mesa3d/src/mapi/mapi/ |
entry_x86_tsd.h | 80 char *code = (char *) entry; local 82 *((unsigned long *) (code + 11)) = slot * sizeof(mapi_func); 83 *((unsigned long *) (code + 22)) = slot * sizeof(mapi_func); 90 void *code; local 93 code = u_execmem_alloc(X86_ENTRY_SIZE); 94 if (!code) 97 memcpy(code, code_templ, X86_ENTRY_SIZE); 98 entry = (mapi_func) code;
|
/external/skia/src/core/ |
SkErrorInternals.h | 5 * Use of this source code is governed by a BSD-style license that can be 18 static void SetError(SkError code, const char *fmt, ...); 22 static void DefaultErrorCallback(SkError code, void *context);
|
/external/valgrind/main/none/tests/x86/ |
smc1.c | 2 /* Test Valgrind's ability to spot writes to code which has been 18 WRONG output (if you fail to spot code-writes to code[0 .. 4]) is 47 static UChar code[10]; variable 49 /* Make `code' be PUSHL $dest ; ret */ 53 code[0] = 0x68; /* PUSH imm32 */ 54 code[1] = (dest & 0xFF); 55 code[2] = ((dest >> 8) & 0xFF); 56 code[3] = ((dest >> 16) & 0xFF); 57 code[4] = ((dest >> 24) & 0xFF) [all...] |