| /external/dtc/tests/ |
| appendprop2.c | 34 #define CHECK(code) \ 36 err = (code); \ 38 FAIL(#code ": %s", fdt_strerror(err)); \
|
| check_path.c | 27 #define CHECK(code) \ 29 int err = (code); \ 31 FAIL(#code ": %s", fdt_strerror(err)); \
|
| overlay_bad_fixup.c | 28 #define CHECK(code, expected) \ 30 err = (code); \ 32 FAIL(#code ": %s", fdt_strerror(err)); \
|
| /external/e2fsprogs/lib/et/ |
| com_err.h | 34 extern void com_err_va (const char *whoami, errcode_t code, const char *fmt, 54 extern const char *com_right(struct et_list *list, long code); 55 extern const char *com_right_r(struct et_list *list, long code, char *str, size_t len);
|
| /external/libxaac/decoder/drc_src/ |
| impd_drc_extr_delta_coded_info.h | 31 WORD32 code; member in struct:__anon26357 37 WORD32 code; member in struct:__anon26358 44 WORD32 code; member in struct:__anon26359
|
| impd_drc_uni_tables.h | 31 WORD32 code; member in struct:__anon26461 37 WORD32 code; member in struct:__anon26462 44 WORD32 code; member in struct:__anon26463
|
| /external/python/cpython3/Lib/ |
| cProfile.py | 60 func = label(entry.code) 66 callersdicts[id(entry.code)] = callers 71 func = label(entry.code) 74 callers = callersdicts[id(subentry.code)] 115 def label(code): 116 if isinstance(code, str): 117 return ('~', 0, code) # built-in functions ('~' sorts at the end) 119 return (code.co_filename, code.co_firstlineno, code.co_name [all...] |
| /external/syslinux/gpxe/src/include/gpxe/ |
| icmp6.h | 22 uint8_t code; member in struct:icmp6_header 29 uint8_t code; member in struct:neighbour_solicit 42 uint8_t code; member in struct:neighbour_advert
|
| /external/tensorflow/tensorflow/go/ |
| status.go | 24 type code C.TF_Code type 42 func (s *status) Code() code { 43 return code(C.TF_GetCode(s.c)) 52 if s == nil || s.Code() == C.TF_OK { 59 // status itself may have a TF_OK code and is not always considered an error.
|
| /external/v8/src/compiler/ |
| move-optimizer.h | 2 // Use of this source code is governed by a BSD-style license that can be 18 MoveOptimizer(Zone* local_zone, InstructionSequence* code); 25 InstructionSequence* code() const { return code_; } function in class:v8::internal::compiler::final 27 Zone* code_zone() const { return code()->zone(); }
|
| /external/valgrind/docs/html/ |
| vg_basic.css | 19 code, tt { color: #761596; } 20 code a, code a:link, code a:visited, code a:active, code a:hover {
|
| /external/valgrind/docs/lib/ |
| vg_basic.css | 19 code, tt { color: #761596; } 20 code a, code a:link, code a:visited, code a:active, code a:hover {
|
| /frameworks/base/libs/storage/ |
| IMountShutdownObserver.cpp | 37 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) 39 switch(code) { 48 return BBinder::onTransact(code, data, reply, flags);
|
| IObbActionListener.cpp | 42 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) 44 switch(code) { 55 return BBinder::onTransact(code, data, reply, flags);
|
| /frameworks/base/services/core/java/com/android/server/ |
| NativeDaemonEvent.java | 41 private NativeDaemonEvent(int cmdNumber, int code, String message, 44 mCode = code; 116 private static boolean isClassUnsolicited(int code) { 117 return code >= 600 && code < 700; 121 * Verify this event matches the given code. 125 public void checkCode(int code) { 126 if (mCode != code) { 127 throw new IllegalStateException("Expected " + code + " but was: " + this); 145 final int code; local [all...] |
| /frameworks/native/libs/input/ |
| IInputFlinger.cpp | 46 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) { 47 switch(code) { 54 return BBinder::onTransact(code, data, reply, flags);
|
| /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/ |
| MockKeyboardSwitcher.java | 161 public void onPressKey(final int code, final boolean isSinglePointer) { 162 mState.onPressKey(code, isSinglePointer, mAutoCapsState, 166 public void onReleaseKey(final int code, final boolean withSliding) { 167 onReleaseKey(code, withSliding, mAutoCapsState, RecapitalizeStatus.NOT_A_RECAPITALIZE_MODE); 170 public void onReleaseKey(final int code, final boolean withSliding, 172 mState.onReleaseKey(code, withSliding, currentAutoCapsState, currentRecapitalizeState); 173 if (mLongPressTimeoutCode == code) { 178 public void onCodeInput(final int code) { 180 if (Constants.isLetterCode(code)) { 181 mAutoCapsState = (code == MockConstants.CODE_AUTO_CAPS_TRIGGER [all...] |
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/ |
| mathinline.h | 48 better code. */ 84 /* This is the dumb, portable code for i386 and above. */ 124 code. So disable it for this version of the compiler. */ 150 code. So disable it for this version of the compiler. */ 219 # define __inline_mathcode(func, arg, code) \ 220 __inline_mathcode_ (double, func, arg, code) \ 221 __inline_mathcode_ (float, __CONCAT(func,f), arg, code) \ 222 __inline_mathcode_ (long double, __CONCAT(func,l), arg, code) 223 # define __inline_mathcodeNP(func, arg, code) \ 224 __inline_mathcodeNP_ (double, func, arg, code) \ [all...] |
| /system/netd/libnetdutils/ |
| Status.cpp | 33 return status.code() == err; 40 return binder::Status::fromServiceSpecificError(status.code(), status.msg().c_str()); 50 return os << "Status[code: " << s.code() << ", msg: \"" << s.msg() << "\"]";
|
| /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/ |
| noreorder.s | 9 # Removing this .align make the code assemble correctly 16 # Replacing this .word with a nop causes the code to be assembled corrrectly 18 # Removing this nop causes the code to be compiled correctly
|
| /prebuilts/go/darwin-x86/src/compress/lzw/ |
| reader.go | 2 // Use of this source code is governed by a BSD-style 11 // two non-literal codes are a clear code and an EOF code. 46 // stream into a code stream. 59 // with the upper bound incrementing on each code seen. 61 // overflow is the code at which hi overflows the code width. It always 64 // last is the most recently seen code, or decoderInvalidCode. 70 // Each code c in [lo, hi] expands to two or more bytes. For c != hi: 72 // prefix[c] is the code for all but the last byte [all...] |
| /prebuilts/go/linux-x86/src/compress/lzw/ |
| reader.go | 2 // Use of this source code is governed by a BSD-style 11 // two non-literal codes are a clear code and an EOF code. 46 // stream into a code stream. 59 // with the upper bound incrementing on each code seen. 61 // overflow is the code at which hi overflows the code width. It always 64 // last is the most recently seen code, or decoderInvalidCode. 70 // Each code c in [lo, hi] expands to two or more bytes. For c != hi: 72 // prefix[c] is the code for all but the last byte [all...] |
| /external/pcre/dist2/src/ |
| pcre2_compile.c | 9 Original API code Copyright (c) 1997-2012 University of Cambridge 10 New API code Copyright (c) 2016 University of Cambridge 16 * Redistributions of source code must retain the above copyright notice, 64 /* There are a few things that vary with different code unit sizes. Handle them 96 * Code parameters and static tables * 106 overrun. The code does, however, check for an overrun, which can occur for 113 defined the size in code units, we set up C32_WORK_SIZE as the number of 116 #define COMPILE_WORK_SIZE (2048*LINK_SIZE) /* Size in code units */ 134 the compiling code if it is guaranteed that there is a zero code unit at th 3036 PCRE2_UCHAR *code = (codeptr == NULL)? NULL : *codeptr; local 3876 register PCRE2_UCHAR *code = *codeptr; local 7597 PCRE2_UCHAR *code = *codeptr; local 8320 PCRE2_UCHAR *code; \/* Current pointer in compiled code *\/ local [all...] |
| /dalvik/dexgen/src/com/android/dexgen/dex/code/ |
| BlockAddresses.java | 17 package com.android.dexgen.dex.code; 19 import com.android.dexgen.rop.code.BasicBlock; 20 import com.android.dexgen.rop.code.BasicBlockList; 21 import com.android.dexgen.rop.code.Insn; 22 import com.android.dexgen.rop.code.RopMethod; 23 import com.android.dexgen.rop.code.SourcePosition; 31 /** {@code non-null;} array containing addresses for the start of each basic 35 /** {@code non-null;} array containing addresses for the final instruction 39 /** {@code non-null;} array containing addresses for the end (just past the 47 * @param method {@code non-null;} the method to have block addresses fo [all...] |
| /dalvik/dexgen/src/com/android/dexgen/dex/code/form/ |
| Form31c.java | 17 package com.android.dexgen.dex.code.form; 19 import com.android.dexgen.dex.code.CstInsn; 20 import com.android.dexgen.dex.code.DalvInsn; 21 import com.android.dexgen.dex.code.InsnFormat; 22 import com.android.dexgen.rop.code.RegisterSpec; 23 import com.android.dexgen.rop.code.RegisterSpecList; 31 * Instruction format {@code 31c}. See the instruction format spec 35 /** {@code non-null;} unique instance of this class */
|