| /external/zlib/src/ |
| inftrees.h | 12 information needed to do the operation requested by the code that 14 table that indexes more bits of the code. op indicates whether 16 distance, an end-of-block, or an invalid code. For a table 19 is the number of extra bits to get after the code. bits is 20 the number of bits in this code or part of the code to drop off 26 unsigned char bits; /* bits in this part of the code */ 27 unsigned short val; /* offset in table or code value */ 28 } code; typedef in typeref:struct:__anon27242 35 01000000 - invalid code [all...] |
| /external/zopfli/src/zopfli/ |
| tree.c | 35 unsigned code; local 41 /* 1) Count the number of codes for each code length. Let bl_count[N] be the 50 /* 2) Find the numerical value of the smallest code for each code length. */ 51 code = 0; 54 code = (code + bl_count[bits-1]) << 1; 55 next_code[bits] = code;
|
| /frameworks/av/media/audioserver/ |
| main_audioserver.cpp | 70 const char *code; local 73 code = "CLD_EXITED"; 76 code = "CLD_KILLED"; 79 code = "CLD_DUMPED"; 82 code = "CLD_STOPPED"; 85 code = "CLD_TRAPPED"; 88 code = "CLD_CONTINUED"; 92 code = buffer; 97 ALOG(LOG_ERROR, "media.log", "pid %d status %d code %s user %ld.%03lds sys %ld.%03lds", 98 info.si_pid, info.si_status, code, [all...] |
| /frameworks/av/media/mtp/ |
| MtpDebug.cpp | 23 uint16_t code; member in struct:android::CodeEntry 371 static const char* getCodeName(uint16_t code, const CodeEntry* table) { 374 if (entry->code == code) 381 const char* MtpDebug::getOperationCodeName(MtpOperationCode code) { 382 return getCodeName(code, sOperationCodes); 385 const char* MtpDebug::getFormatCodeName(MtpObjectFormat code) { 386 if (code == 0) 388 return getCodeName(code, sFormatCodes); 391 const char* MtpDebug::getObjectPropCodeName(MtpPropertyCode code) { [all...] |
| /frameworks/base/core/tests/coretests/src/android/animation/ |
| AnimatorInflaterTest.java | 39 final int code = System.identityHashCode(object); local 40 assertTrue("object should be unique " + msg + ", obj:" + object, identityHashes.add(code));
|
| /frameworks/base/telephony/java/com/android/ims/ |
| ImsSuppServiceNotification.java | 37 public int code; field in class:ImsSuppServiceNotification 57 ", code=" + code + 73 out.writeInt(code); 82 code = in.readInt();
|
| /frameworks/compile/mclinker/lib/Target/AArch64/ |
| AArch64CA53Erratum835769Stub.cpp | 51 ErratumSequence code; local 52 pFragRef.memcpy(&code, sizeof(ErratumSequence), 0); 54 if (AArch64InsnHelpers::isMLXL(code.insns[1]) && 55 AArch64InsnHelpers::isMemOp(code.insns[0], rt, rt2, is_pair, is_load)) { 58 if (AArch64InsnHelpers::getBit(code.insns[0], 26) != 0) { 63 unsigned ra = AArch64InsnHelpers::getRa(code.insns[1]); 64 unsigned rm = AArch64InsnHelpers::getRm(code.insns[1]); 65 unsigned rn = AArch64InsnHelpers::getRn(code.insns[1]);
|
| AArch64CA53Erratum843419Stub.cpp | 75 ErratumSequence code; local 76 pFragRef.memcpy(&code, AArch64InsnHelpers::InsnSize * 3, 0); 78 if (isErratum843419Sequence(code.insns[0], code.insns[1], code.insns[2])) {
|
| /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/h264/parser/ |
| h264parse_sps.c | 53 uint32_t code; local 65 viddec_pm_get_bits(parent, &code, 8); 66 pVUI_Seq_Not_Used->nal_hrd_bit_rate_scale = (uint8_t)(code>>4); 67 pVUI_Seq_Not_Used->nal_hrd_cpb_size_scale = (uint8_t)(code & 0xf); 74 viddec_pm_get_bits(parent, &code, 1); 75 pVUI_Seq_Not_Used->nal_hrd_parameters.cbr_flag[i] = (uint8_t)code; 78 if( viddec_pm_get_bits(parent, &code, 20) == -1) 81 SPS->sps_disp.vui_seq_parameters.nal_hrd_initial_cpb_removal_delay_length_minus1 = (uint8_t)((code>>15)&0x1f); 82 SPS->sps_disp.vui_seq_parameters.nal_hrd_cpb_removal_delay_length_minus1 = (uint8_t)((code>>10)&0x1f);; 83 SPS->sps_disp.vui_seq_parameters.nal_hrd_dpb_output_delay_length_minus1 = (uint8_t)((code>>5)&0x1f); 127 uint32_t code; local 270 uint32_t code = 0; local [all...] |
| /ndk/sources/host-tools/ndk-stack/regex/ |
| regerror.c | 7 * This code is derived from software contributed to Berkeley by 13 * 1. Redistributions of source code must retain the above copyright 50 int code; member in struct:rerr 70 { 0, "", "*** unknown regexp error code ***" } 90 for (r = rerrs; r->code != 0; r++) 91 if (r->code == target) 95 if (r->code != 0) { 122 for (r = rerrs; r->code != 0; r++) 125 if (r->code == 0) 128 (void)snprintf(localbuf, localbufsize, "%d", r->code); [all...] |
| /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
| PunctuationSuggestions.java | 74 final int code = KeySpecParser.getCode(keySpec); local 75 return (code == Constants.CODE_OUTPUT_TEXT) 77 : StringUtils.newSingleCodePointString(code);
|
| /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/ |
| KeyboardListPreferenceJAJP.java | 26 * This class notices to {@code OpenWnnJAJP} that the keyboard image is changed. 46 int code = OpenWnnEvent.CHANGE_INPUT_VIEW; local 47 OpenWnnEvent ev = new OpenWnnEvent(code);
|
| /prebuilts/gdb/darwin-x86/include/python2.7/ |
| import.h | 59 unsigned char *code; member in struct:_frozen
|
| /prebuilts/gdb/linux-x86/include/python2.7/ |
| import.h | 59 unsigned char *code; member in struct:_frozen
|
| /prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
| import.h | 59 unsigned char *code; member in struct:_frozen
|
| /prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
| import.h | 59 unsigned char *code; member in struct:_frozen
|
| /system/core/libpixelflinger/tests/arch-mips64/disassembler/ |
| mips64_disassembler_test.cpp | 8 * * Redistributions of source code must retain the above copyright 38 uint32_t code; member in struct:test_table_entry_t 120 uint32_t code; member in struct:test_branches_table_entry_t 137 uint32_t code; member in struct:test_jump_table_entry_t 156 mips_disassem(&test->code, instr, 0); 160 "Code : 0x%0x\n" 162 "Actual : %s\n", test->code, test->instr, instr); 170 mips_disassem(&test->code, instr, 0); 171 //printf("DBG code address: %lx\n", (uint64_t)(&test->code)); [all...] |
| /system/extras/tests/framebuffer/ |
| minui.h | 38 unsigned code; member in struct:event
|
| /system/update_engine/common/ |
| http_common.cc | 27 const char *GetHttpResponseDescription(HttpResponseCode code) { 29 HttpResponseCode code; member in struct:chromeos_update_engine::__anon74691 60 if ((is_found = (http_response_table[i].code == code)))
|
| /toolchain/binutils/binutils-2.25/include/opcode/ |
| tahoe.h | 33 tahoe_opcodeT code; /* op-code (may be > 8 bits!) */ member in struct:vot_wot 43 #define vot_code code
|
| vax.h | 29 vax_opcodeT code; /* op-code (may be > 8 bits!) */ member in struct:vot_wot 39 #define vot_code code
|
| /external/dexmaker/src/test/java/com/google/dexmaker/ |
| DexMakerTest.java | 91 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local 92 Local<Long> localA = code.getParameter(0, TypeId.LONG); 93 Local<Boolean> localB = code.getParameter(1, TypeId.BOOLEAN); 96 Local<Constructable> localResult = code.newLocal(constructable); 97 code.newInstance(localResult, constructor, localA, localB); 98 code.returnValue(localResult); 120 Code code = dexMaker.declare(methodId, PUBLIC); local 121 code.returnVoid() 139 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local 158 Code code = dexMaker.declare(methodId, PUBLIC); local 184 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local 222 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local 277 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local 301 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local 320 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local 340 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local 358 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local 434 Code code = dexMaker.declare(constructor, PUBLIC); local 470 Code code = dexMaker.declare(GENERATED.getMethod(returnType, "call"), PUBLIC | STATIC); local 529 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local 664 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local 694 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local 735 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local 891 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local 975 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local 1058 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local 1074 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local 1099 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local 1125 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local 1170 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local 1215 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local 1258 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local 1303 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local 1379 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local 1425 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local 1446 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local 1504 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local 1521 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local 1571 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local 1613 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local 1660 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local 1679 Code code = dexMaker.declare(methodId, PUBLIC | SYNCHRONIZED); local 1710 Code code = dexMaker.declare(methodId, PUBLIC); local 1737 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local 1808 Code code = dexMaker.declare(GENERATED.getConstructor(), PUBLIC); local 1923 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local 1984 Code code = dexMaker.declare(constructor, PUBLIC); local [all...] |
| /external/dexmaker/src/main/java/com/google/dexmaker/stock/ |
| ProxyBuilder.java | 19 import com.google.dexmaker.Code; 51 * This is similar to the {@code java.lang.reflect.Proxy} class, but works for classes instead of 54 * The following example demonstrates the creation of a dynamic proxy for {@code java.util.Random} 99 * The {@link #finalize()} method on {@code Object} will not be proxied. 102 * care not to make this a world-writable directory, so that third parties cannot inject code into 105 * <pre>{@code 109 * If the base class to be proxied leaks the {@code this} pointer in the constructor (bad practice), 153 * <p>If null, {@code ProxyBuilder.class.getClassLoader()} will be used. 166 * Sets the directory where executable code is stored. See {@link 201 * @throws IOException if an exception occurred writing to the {@code dexCache} directory 423 Code code = dexMaker.declare(methodId, PUBLIC); local [all...] |
| /dalvik/dexgen/src/com/android/dexgen/dex/file/ |
| EncodedMethod.java | 19 import com.android.dexgen.dex.code.DalvCode; 20 import com.android.dexgen.rop.code.AccessFlags; 35 /** {@code non-null;} constant for the method */ 39 * {@code null-ok;} code for the method, if the method is neither 40 * {@code abstract} nor {@code native} 42 private final CodeItem code; field in class:EncodedMethod 47 * @param method {@code non-null;} constant for the method 49 * @param code {@code null-ok;} code for the method, if it is neithe [all...] |
| /dalvik/dx/src/com/android/dx/dex/file/ |
| EncodedMethod.java | 20 import com.android.dx.dex.code.DalvCode; 21 import com.android.dx.rop.code.AccessFlags; 34 /** {@code non-null;} constant for the method */ 38 * {@code null-ok;} code for the method, if the method is neither 39 * {@code abstract} nor {@code native} 41 private final CodeItem code; field in class:EncodedMethod 46 * @param method {@code non-null;} constant for the method 48 * @param code {@code null-ok;} code for the method, if it is neithe [all...] |