HomeSort by relevance Sort by last modified time
    Searched refs:code (Results 151 - 175 of 19832) sorted by null

1 2 3 4 5 67 8 91011>>

  /system/core/libpixelflinger/codeflinger/
Arm64Disassembler.cpp 8 * * Redistributions of source code must retain the above copyright
134 static void decode_token(uint32_t code, char *token, char *instr_part)
137 sprintf(instr_part, "0x%x", bits_unsigned(code, 21,10));
139 sprintf(instr_part, "0x%x", bits_unsigned(code, 20,5));
141 sprintf(instr_part, "lsl #%d", bits_unsigned(code, 23,22) * 12);
145 sprintf(instr_part, "%s", shift2_table[bits_unsigned(code, 23,22)]);
148 sprintf(instr_part, "%d", bits_unsigned(code, 22,21) * 16);
150 sprintf(instr_part, "%d", bits_unsigned(code, 15,10));
152 sprintf(instr_part, "%d", bits_unsigned(code, 12,12) * 2);
154 sprintf(instr_part, "%d", bits_unsigned(code, 12,12) * 3)
    [all...]
  /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...]
  /art/compiler/utils/arm64/
assembler_arm64.h 72 // Finalize the code.
75 // Size of generated code.
103 // Emit code checking the status of the Marking Register, and aborting
107 // Argument `temp` is used as a temporary register to generate code.
108 // Argument `code` is used to identify the different occurrences of
110 void GenerateMarkingRegisterCheck(vixl::aarch64::Register temp, int code = 0);
119 static vixl::aarch64::Register reg_x(int code) {
120 CHECK(code < kNumberOfXRegisters) << code;
121 if (code == SP)
    [all...]
  /external/strace/
bpf_filter.c 10 * 1. Redistributions of source code must retain the above copyright
46 print_bpf_filter_code(const uint16_t code)
48 uint16_t i = code & ~BPF_CLASS(code);
50 printxval(bpf_class, BPF_CLASS(code), "BPF_???");
51 switch (BPF_CLASS(code)) {
55 printxval(bpf_size, BPF_SIZE(code), "BPF_???");
57 printxval(bpf_mode, BPF_MODE(code), "BPF_???");
68 printxval(bpf_src, BPF_SRC(code), "BPF_???");
70 printxval(bpf_op_alu, BPF_OP(code), "BPF_???")
    [all...]
  /external/bouncycastle/bcprov/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)
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
ErrorCode.java 71 public static ErrorCode fromSpdy3Rst(int code) {
73 if (errorCode.spdyRstCode == code) return errorCode;
78 public static ErrorCode fromHttp2(int code) {
80 if (errorCode.httpCode == code) return errorCode;
85 public static ErrorCode fromSpdyGoAway(int code) {
87 if (errorCode.spdyGoAwayCode == code) return errorCode;
  /frameworks/base/media/java/android/mtp/
MtpDeviceInfo.java 76 * Returns operation code supported by the device.
78 * @return supported operation code. Can be null if device does not provide the property.
120 * Returns event code supported by the device.
122 * @return supported event code. Can be null if device does not provide the property.
148 * @param code Operation code.
151 public boolean isOperationSupported(int code) {
152 return isSupported(mOperationsSupported, code);
157 * @param code Event code
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
CodeAddress.java 17 package com.android.dexgen.dex.code;
19 import com.android.dexgen.rop.code.RegisterSpecList;
20 import com.android.dexgen.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";
  /external/apache-http/src/org/apache/http/
HttpResponse.java 60 * @return the status line, or <code>null</code> if not yet set
77 * @param code the status code
79 void setStatusLine(ProtocolVersion ver, int code);
85 * @param code the status code
86 * @param reason the reason phrase, or <code>null</code> to omit
88 void setStatusLine(ProtocolVersion ver, int code, String reason)
    [all...]
  /external/vixl/tools/test_generator/
data_types.py 7 # * Redistributions of source code must retain the above copyright notice,
66 Generate code to declare the operand `struct Operands`.
73 Generate code to instantiate the operand from inside a `kTests` loop, with
112 Generate code to declare the operand as a single member in
120 Generate code to instantiate the operand as a single local variable.
122 code = "{type_name} {name} = kTests[i].operands.{name};"
123 return code.format(type_name=self.type_name, name=self.name)
212 Return a string describing what C++ code to emit before the instruction
220 Return a string describing what C++ code to emit after the instruction under
228 Generate code to declare the input in `struct Inputs`
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
CharacterCompat.java 31 public static boolean isAlphabetic(final int code) {
33 return (Boolean)CompatUtils.invoke(null, false, METHOD_isAlphabetic, code);
35 switch (Character.getType(code)) {
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/hppa/parse/
space.s 1 .code
9 .code
22 .import yabba, code
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_emit_nv50.cpp 140 code[pos / 32] |= SDATA(src).id << (pos % 32);
146 code[pos / 32] |= SDATA(*src).id << (pos % 32);
164 code[pos / 32] |= offset << (pos % 32);
175 code[pos / 32] |= (offset >> 2) << (pos % 32);
182 code[pos / 32] |= DDATA(def).id << (pos % 32);
189 case ROUND_M: code[1] |= 1 << 22; break;
190 case ROUND_P: code[1] |= 2 << 22; break;
191 case ROUND_Z: code[1] |= 3 << 22; break;
201 code[1] |= i->src(0).mod.neg() << 26;
202 code[1] |= i->src(1).mod.neg() << 27
    [all...]
  /art/compiler/linker/x86_64/
relative_patcher_x86_64.cc 25 void X86_64RelativePatcher::PatchPcRelativeReference(std::vector<uint8_t>* code,
29 DCHECK_LE(patch.LiteralOffset() + 4u, code->size());
35 reinterpret_cast<unaligned_int32_t*>(&(*code)[patch.LiteralOffset()])[0] = displacement;
38 void X86_64RelativePatcher::PatchBakerReadBarrierBranch(std::vector<uint8_t>* code ATTRIBUTE_UNUSED,
  /bionic/libc/kernel/uapi/linux/
filter.h 27 __u16 code; member in struct:sock_filter
36 #define BPF_RVAL(code) ((code) & 0x18)
38 #define BPF_MISCOP(code) ((code) & 0xf8)
42 #define BPF_STMT(code,k) { (unsigned short) (code), 0, 0, k }
45 #define BPF_JUMP(code,k,jt,jf) { (unsigned short) (code), jt, jf, k }
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttCode.java 19 import com.android.dx.cf.code.ByteCatchList;
20 import com.android.dx.cf.code.BytecodeArray;
25 * Attribute class for standard {@code Code} attributes.
28 /** {@code non-null;} attribute name for attributes of this type */
29 public static final String ATTRIBUTE_NAME = "Code";
31 /** {@code >= 0;} the stack size */
34 /** {@code >= 0;} the number of locals */
37 /** {@code non-null;} array containing the bytecode per se */
38 private final BytecodeArray code; field in class:AttCode
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/cjkcodecs/
_codecs_tw.c 18 DBCHAR code; local
30 TRYMAP_ENC(big5, code, c);
33 OUT1(code >> 8)
34 OUT2(code & 0xFF)
73 DBCHAR code; local
83 TRYMAP_ENC(cp950ext, code, c);
84 else TRYMAP_ENC(big5, code, c);
87 OUT1(code >> 8)
88 OUT2(code & 0xFF)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/cjkcodecs/
_codecs_tw.c 18 DBCHAR code; local
30 TRYMAP_ENC(big5, code, c);
33 OUT1(code >> 8)
34 OUT2(code & 0xFF)
73 DBCHAR code; local
83 TRYMAP_ENC(cp950ext, code, c);
84 else TRYMAP_ENC(big5, code, c);
87 OUT1(code >> 8)
88 OUT2(code & 0xFF)
  /external/elfutils/libdw/
dwarf_getabbrevcode.c 1 /* Get abbreviation code.
42 return abbrev == NULL ? 0 : abbrev->code;
dwarf_whatattr.c 1 /* Return attribute code of given attribute.
41 return attr == NULL ? 0 : attr->code;
  /external/guava/guava/src/com/google/thirdparty/publicsuffix/
PublicSuffixType.java 51 /** Returns a PublicSuffixType of the right type according to the given code */
52 static PublicSuffixType fromCode(char code) {
54 if (value.getInnerNodeCode() == code || value.getLeafNodeCode() == code) {
58 throw new IllegalArgumentException("No enum corresponding to given code: " + code);
  /external/junit/src/main/java/org/junit/internal/
JUnitSystem.java 11 void exit(int code);
  /external/kernel-headers/original/uapi/linux/
filter.h 14 * Current version of the filter code architecture.
21 * the BPF code definitions which need to match so you can share filters
25 __u16 code; /* Actual filter code */ member in struct:sock_filter
37 #define BPF_RVAL(code) ((code) & 0x18)
41 #define BPF_MISCOP(code) ((code) & 0xf8)
49 #define BPF_STMT(code, k) { (unsigned short)(code), 0, 0, k
    [all...]
  /external/libffi/testsuite/libffi.call/
cls_double.c 23 void *code; local
24 ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
35 CHECK(ffi_prep_closure_loc(pcl, &cif, cls_ret_double_fn, NULL, code) == FFI_OK);
37 res = (*((cls_ret_double)code))(21474.789);
cls_float.c 24 void *code; local
25 ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
36 CHECK(ffi_prep_closure_loc(pcl, &cif, cls_ret_float_fn, NULL, code) == FFI_OK);
37 res = ((((cls_ret_float)code)(-2122.12)));

Completed in 230 milliseconds

1 2 3 4 5 67 8 91011>>