/toolchain/binutils/binutils-2.25/ld/testsuite/ld-x86-64/ |
compressed1.s | 27 .value 0x3 46 .uleb128 0x3 80 .uleb128 0x3 99 .uleb128 0x3 103 .uleb128 0x3 110 .uleb128 0x3 119 .uleb128 0x3
|
/hardware/qcom/msm8960/kernel-headers/linux/mfd/ |
timpani-audio.h | 21 #define TIMPANI_A_MREF (0x3) 77 #define TIMPANI_CDAC_IDAC_REF_CUR_CDAC_REF_BUFF_CUR_V_9UA 0x3 90 #define TIMPANI_CDAC_IDAC_REF_CUR_CDAC_BIAS_CUR_V_10_0UA_NORMAL_OP 0x3 97 #define TIMPANI_CDAC_IDAC_REF_CUR_IDAC_REF_CUR_M 0x3 102 #define TIMPANI_CDAC_IDAC_REF_CUR_IDAC_REF_CUR_V_8UA 0x3 116 #define TIMPANI_TXADC12_REF_CURR_TXADC1_REF_BUFF_CUR_V_35UA 0x3 124 #define TIMPANI_TXADC12_REF_CURR_TXADC2_REF_BUFF_CUR_V_35UA 0x3 251 #define TIMPANI_TXFE1_TXFE1_GAIN_V_24DB_2 0x3 295 #define TIMPANI_TXFE2_TXFE2_GAIN_V_24DB_2 0x3 380 #define TIMPANI_TXFE_CLT_TXFE_OUT_CM_VOLT_V_1_050V_NORMAL_OP 0x3 [all...] |
/hardware/qcom/msm8960/original-kernel-headers/linux/ |
timpani-audio.h | 7 #define TIMPANI_A_MREF (0x3) 65 #define TIMPANI_CDAC_IDAC_REF_CUR_CDAC_REF_BUFF_CUR_V_9UA 0x3 76 #define TIMPANI_CDAC_IDAC_REF_CUR_CDAC_BIAS_CUR_V_10_0UA_NORMAL_OP 0x3 83 #define TIMPANI_CDAC_IDAC_REF_CUR_IDAC_REF_CUR_M 0x3 87 #define TIMPANI_CDAC_IDAC_REF_CUR_IDAC_REF_CUR_V_8UA 0x3 103 #define TIMPANI_TXADC12_REF_CURR_TXADC1_REF_BUFF_CUR_V_35UA 0x3 110 #define TIMPANI_TXADC12_REF_CURR_TXADC2_REF_BUFF_CUR_V_35UA 0x3 252 #define TIMPANI_TXFE1_TXFE1_GAIN_V_24DB_2 0x3 298 #define TIMPANI_TXFE2_TXFE2_GAIN_V_24DB_2 0x3 388 #define TIMPANI_TXFE_CLT_TXFE_OUT_CM_VOLT_V_1_050V_NORMAL_OP 0x3 [all...] |
/external/llvm/test/MC/AArch64/ |
arm64-arithmetic-encoding.s | 9 adc x1, x2, x3 11 adcs x5, x4, x3 14 ; CHECK: adc x1, x2, x3 ; encoding: [0x41,0x00,0x03,0x9a] 16 ; CHECK: adcs x5, x4, x3 ; encoding: [0x85,0x00,0x03,0xba] 19 sbc x1, x2, x3 21 sbcs x1, x2, x3 24 ; CHECK: sbc x1, x2, x3 ; encoding: [0x41,0x00,0x03,0xda] 26 ; CHECK: sbcs x1, x2, x3 ; encoding: [0x41,0x00,0x03,0xfa] 34 add x3, x4, #1024 35 add x3, x4, #1024, lsl # [all...] |
arm64-memory.s | 9 ldr x4, [x3] 16 ldrb w4, [x3] 18 ldrb w2, [x3, _foo@pageoff] 20 ldrsb w9, [x3] 44 ; CHECK: ldr x4, [x3] ; encoding: [0x64,0x00,0x40,0xf9] 51 ; CHECK: ldrb w4, [x3] ; encoding: [0x64,0x00,0x40,0x39] 53 ; CHECK: ldrb w2, [x3, _foo@PAGEOFF] ; encoding: [0x62,0bAAAAAA00,0b01AAAAAA,0x39] 55 ; CHECK: ldrsb w9, [x3] ; encoding: [0x69,0x00,0xc0,0x39] 81 str x4, [x3] 89 strb w4, [x3] [all...] |
/external/libavc/common/armv8/ |
ih264_iquant_itrans_recon_dc_av8.s | 107 //x3 => pred_strd 148 ld1 {v1.s}[0], [x1], x3 149 ld1 {v1.s}[1], [x1], x3 150 ld1 {v2.s}[0], [x1], x3 212 // x3 : pred_strd 239 ld1 {v1.d}[0], [x1], x3 240 ld1 {v1.d}[1], [x1], x3 241 ld1 {v2.d}[0], [x1], x3 242 ld1 {v2.d}[1], [x1], x3 330 //x3 => pred_str [all...] |
/external/libgdx/gdx/src/com/badlogic/gdx/math/ |
GeometryUtils.java | 98 static public boolean colinear (float x1, float y1, float x2, float y2, float x3, float y3) {
100 float dx32 = x3 - x2, dy32 = y3 - y2;
105 static public Vector2 triangleCentroid (float x1, float y1, float x2, float y2, float x3, float y3, Vector2 centroid) {
106 centroid.x = (x1 + x2 + x3) / 3;
112 static public Vector2 triangleCircumcenter (float x1, float y1, float x2, float y2, float x3, float y3, Vector2 circumcenter) {
114 float dx32 = x3 - x2, dy32 = y3 - y2;
115 float dx13 = x1 - x3, dy13 = y1 - y3;
120 float sqr1 = x1 * x1 + y1 * y1, sqr2 = x2 * x2 + y2 * y2, sqr3 = x3 * x3 + y3 * y3;
125 static public float triangleArea (float x1, float y1, float x2, float y2, float x3, float y3) { [all...] |
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/ |
unpack_bits.c | 45 enc_bits->startIdx = ((*bitstreamPtr)>>10)&0x3; /* Bit 4..5 */ 70 enc_bits->idxForMax |= ((*bitstreamPtr)>>14)&0x3; /* Bit 0..1 */ 141 (*tmpPtr) |= ((*bitstreamPtr)>>i)&0x3; /* Bit 15-i..14-i*/ 149 enc_bits->idxVec[56] |= ((*bitstreamPtr)>>14)&0x3; /* Bit 0..1 */ 157 enc_bits->gain_index[1] |= ((*bitstreamPtr)>>10)&0x3; /* Bit 4..5 */ 172 enc_bits->gain_index[3] |= ((*bitstreamPtr)>>14)&0x3; /* Bit 0..1 */ 173 enc_bits->gain_index[4] |= ((*bitstreamPtr)>>12)&0x3; /* Bit 2..3 */ 176 enc_bits->gain_index[7] |= ((*bitstreamPtr)>>4)&0x3; /* Bit 10..11 */ 180 enc_bits->idxVec[56] |= ((*bitstreamPtr)>>14)&0x3; /* Bit 0..1 */ 181 enc_bits->idxVec[57] |= ((*bitstreamPtr)>>12)&0x3; /* Bit 2..3 * [all...] |
pack_bits.c | 71 (*bitstreamPtr) = ((uint16_t)enc_bits->idxForMax&0x3)<<14; /* Bit 0..1 */ 146 (*bitstreamPtr) |= ((uint16_t)((*tmpPtr)&0x3))<<i; /* Bit 15-i..14-i*/ 154 (*bitstreamPtr) = ((uint16_t)((enc_bits->idxVec[56])&0x3))<<14;/* Bit 0..1 */ 163 (*bitstreamPtr) |= ((enc_bits->gain_index[1])&0x3)<<10; /* Bit 4..5 */ 179 (*bitstreamPtr) = ((uint16_t)((enc_bits->gain_index[3])&0x3))<<14; 181 (*bitstreamPtr) |= ((enc_bits->gain_index[4])&0x3)<<12; /* Bit 2..3 */ 184 (*bitstreamPtr) |= ((enc_bits->gain_index[7])&0x3)<<4; /* Bit 10..11 */ 188 (*bitstreamPtr) = ((uint16_t)((enc_bits->idxVec[56])&0x3))<<14;/* Bit 0..1 */ 189 (*bitstreamPtr) |= (((enc_bits->idxVec[57])&0x3))<<12; /* Bit 2..3 */ 198 (*bitstreamPtr) |= ((enc_bits->gain_index[1])&0x3)<<8; /* Bit 6..7 * [all...] |
/system/bt/stack/smp/ |
p_256_ecc_pp.c | 50 DWORD *x3; local 63 x3=q->x; y3=q->y; z3=q->z; 82 multiprecision_mersenns_squa_mod(x3, t2, keyLength); // x3=t2^2 84 multiprecision_sub_mod(x3, x3, t1, keyLength); // x3=x3-t1 85 multiprecision_sub_mod(t1, t3, x3, keyLength); // t1=t3-x3 97 DWORD *x3; local [all...] |
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-m68hc11/ |
far-hc12.d | 10 0+c003 <tramp\._far_foo\+0x3> call 0x0+c049 <__far_trampoline> \{0x0+c049 <__far_trampoline>, 0x1\} 12 0+c00a <tramp\._far_bar\+0x3> call 0x0+c049 <__far_trampoline> \{0x0+c049 <__far_trampoline>, 0x0\} 14 0+c011 <_start\+0x3> ldx \#0x0+abcd <__bank_start\+0x2bcd> 37 0+c046 <fail\+0x3> wai 44 0+10003 <_far_bar\+0x3> xgdx 49 0+14003 <_far_foo\+0x3> rtc 53 0+18003 <_far_no_tramp\+0x3> rtc
|
/art/runtime/arch/arm64/ |
quick_entrypoints_arm64.S | 200 stp x3, x4, [sp, #96] 201 .cfi_rel_offset x3, 96 281 ldp x3, x4, [sp, #96] 282 .cfi_restore x3 455 mov x3, sp 529 mov xSELF, x3 // Move thread pointer into SELF register. 631 * Thread *self, x3 756 LOADREG x8 8 x3 .LfillRegisters 795 * Thread *self, x3 881 LOADREG x8 8 x3 .LfillRegisters [all...] |
/external/libvpx/libvpx/vp9/encoder/ |
vp9_dct.c | 45 tran_high_t x0, x1, x2, x3; // canbe16 local 61 x3 = s0 - s3; 64 t2 = x2 * cospi_24_64 + x3 * cospi_8_64; 65 t3 = -x2 * cospi_8_64 + x3 * cospi_24_64; 81 x3 = s7 + t3; 84 t0 = x0 * cospi_28_64 + x3 * cospi_4_64; 87 t3 = x3 * cospi_28_64 + x0 * -cospi_4_64; 124 tran_high_t x0, x1, x2, x3; // canbe16 local 140 x3 = s0 - s3; 143 t2 = x3 * cospi_8_64 + x2 * cospi_24_64 236 tran_high_t x0, x1, x2, x3; local 281 tran_high_t x3 = input[2]; local 353 tran_high_t x3 = input[2]; local 582 tran_high_t x0, x1, x2, x3; \/\/ canbe16 local [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/ |
SecP192K1FieldElement.java | 150 int[] x3 = Nat192.create(); local 151 SecP192K1Field.square(x2, x3); 152 SecP192K1Field.multiply(x3, x1, x3); 154 SecP192K1Field.squareN(x3, 3, x6); 155 SecP192K1Field.multiply(x6, x3, x6); 164 SecP192K1Field.multiply(x19, x3, x19); 182 SecP192K1Field.multiply(t1, x3, t1); 184 SecP192K1Field.multiply(t1, x3, t1); 187 int[] t2 = x3; [all...] |
/external/libopus/celt/ |
celt.c | 92 opus_val32 x0, x1, x2, x3, x4; local 95 x3 = x[-T-1]; 103 + MULT16_32_Q15(g11,ADD32(x1,x3)) 105 x4=x3; 106 x3=x2; 121 opus_val32 x0, x1, x2, x3, x4; local 142 x3 = x[-T1-1]; 154 + MULT16_32_Q15(MULT16_16_Q15(f,g11),ADD32(x1,x3)) 156 x4=x3; 157 x3=x2 [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/mips/dspr2/ |
vp9_itrans4_dspr2.c | 324 int x0, x1, x2, x3; local 329 x3 = input[3]; 331 if (!(x0 | x1 | x2 | x3)) { 341 s5 = sinpi_2_9 * x3; 342 s6 = sinpi_4_9 * x3; 343 s7 = x0 - x2 + x3; 348 x3 = s2; 350 s0 = x0 + x3; 351 s1 = x1 + x3; 353 s3 = x0 + x1 - x3; [all...] |
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/crx/ |
cop_insn.d | 11 4: 13 31 65 87 cpi \$0x3, \$0x4321, \$0x8765 18 e: 13 30 72 31 mfcr \$0x3, c7, r2 39 2a: 13 31 01 30 loadmcr \$0x3, r1, {c0,c12,c13} 55 42: 13 30 48 77 bcop \$0x7, \$0x3, 0x[0-9a-f]* [-_<>+0-9a-z]* 60 4c: 13 30 45 b2 cpdop \$0x3, \$0x2, r4, r5
|
/external/libavc/common/ |
ih264_resi_trans_quant.c | 125 WORD32 x0, x1, x2, x3, x4, x5, x6, x7; local 143 x3 = x4 - x7; 146 pi2_out_tmp[1] = (x3 <<1) + x2; 148 pi2_out_tmp[3] = x3 - (x2<<1); 170 x3 = x4 - x7; 185 i4_value = (x3 << 1) + x2; 195 i4_value = x3 - (x2 << 1); 273 WORD32 x0, x1, x2, x3, x4, x5, x6, x7; local 291 x3 = x4 - x7; 294 pi2_out_tmp[1] = (x3 <<1) + x2 422 WORD32 x0,x1,x2,x3,x4,x5,x6,x7,i4_value; local 550 WORD32 x0, x1, x2, x3, x4, x5, x6, x7; local [all...] |
/external/opencv/otherlibs/highgui/ |
grfmt_jpeg.cpp | 666 int x2 = src[1], x3 = src[7]; local 670 x1 = x2 + x3; x2 -= x3; 671 x3 = x1 + x4; x1 -= x4; 678 x0 -= x3; 682 work[7] = x3; work[6] = x0; 686 x2 = src[2]; x3 = src[6]; 689 x4 = x2 + x3; 690 x2 = descale((x2-x3)*C1_414, fixb) - x4; 692 x3 = x0 + x1; x0 -= x1 718 int x2 = work[8*1], x3 = work[8*7]; local 1523 int x2 = src[3], x3 = src[4]; local 1570 int x2 = work[8*3], x3 = work[8*4]; local [all...] |
/external/boringssl/src/crypto/cipher/ |
e_rc2.c | 126 uint16_t x0, x1, x2, x3, t; local 134 x3 = (uint16_t)(l >> 16L); 141 t = (x0 + (x1 & ~x3) + (x2 & x3) + *(p0++)) & 0xffff; 143 t = (x1 + (x2 & ~x0) + (x3 & x0) + *(p0++)) & 0xffff; 145 t = (x2 + (x3 & ~x1) + (x0 & x1) + *(p0++)) & 0xffff; 147 t = (x3 + (x0 & ~x2) + (x1 & x2) + *(p0++)) & 0xffff; 148 x3 = (t << 5) | (t >> 11); 156 x0 += p1[x3 & 0x3f]; 159 x3 += p1[x2 & 0x3f] 170 uint16_t x0, x1, x2, x3, t; local [all...] |
/external/guava/guava/src/com/google/common/net/ |
PercentEscaper.java | 198 dest[4] = UPPER_HEX_DIGITS[0x8 | (cp & 0x3)]; 214 dest[7] = UPPER_HEX_DIGITS[0x8 | (cp & 0x3)]; 218 dest[4] = UPPER_HEX_DIGITS[0x8 | (cp & 0x3)]; 233 dest[10] = UPPER_HEX_DIGITS[0x8 | (cp & 0x3)]; 237 dest[7] = UPPER_HEX_DIGITS[0x8 | (cp & 0x3)]; 241 dest[4] = UPPER_HEX_DIGITS[0x8 | (cp & 0x3)];
|
/external/iproute2/examples/diffserv/ |
Edge1 | 38 $TC class change $EGDEV classid 1:1 dsmark mask 0x3 \ 41 $TC class change $EGDEV classid 1:2 dsmark mask 0x3 \ 44 $TC class change $EGDEV classid 1:3 dsmark mask 0x3 \
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/external/com/google/gdata/util/common/base/ |
PercentEscaper.java | 228 dest[4] = UPPER_HEX_DIGITS[0x8 | (cp & 0x3)]; 244 dest[7] = UPPER_HEX_DIGITS[0x8 | (cp & 0x3)]; 248 dest[4] = UPPER_HEX_DIGITS[0x8 | (cp & 0x3)]; 263 dest[10] = UPPER_HEX_DIGITS[0x8 | (cp & 0x3)]; 267 dest[7] = UPPER_HEX_DIGITS[0x8 | (cp & 0x3)]; 271 dest[4] = UPPER_HEX_DIGITS[0x8 | (cp & 0x3)];
|
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/ |
PercentEscaper.java | 229 dest[4] = UPPER_HEX_DIGITS[0x8 | (cp & 0x3)]; 245 dest[7] = UPPER_HEX_DIGITS[0x8 | (cp & 0x3)]; 249 dest[4] = UPPER_HEX_DIGITS[0x8 | (cp & 0x3)]; 264 dest[10] = UPPER_HEX_DIGITS[0x8 | (cp & 0x3)]; 268 dest[7] = UPPER_HEX_DIGITS[0x8 | (cp & 0x3)]; 272 dest[4] = UPPER_HEX_DIGITS[0x8 | (cp & 0x3)];
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/ |
ldstla-n64-sym32.d | 58 .*: R_MIPS_GPREL16 small_comm\+0x3 62 .*: R_MIPS_GPREL16 small_comm\+0x3 87 .*: R_MIPS_HI16 big_comm\+0x3 91 .*: R_MIPS_LO16 big_comm\+0x3 95 .*: R_MIPS_HI16 big_comm\+0x3 99 .*: R_MIPS_LO16 big_comm\+0x3 116 .*: R_MIPS_GPREL16 small_data\+0x3 120 .*: R_MIPS_GPREL16 small_data\+0x3 145 .*: R_MIPS_HI16 big_data\+0x3 149 .*: R_MIPS_LO16 big_data\+0x3 [all...] |