Home
last modified time | relevance | path

Searched refs:w0 (Results 1 - 25 of 166) sorted by relevance

1234567

/third_party/mesa3d/src/gallium/drivers/r600/sb/
H A Dsb_bc_decoder.cpp54 CF_WORD0_EGCM w0(dw0); in decode_cf()
55 bc.addr = w0.get_ADDR(); in decode_cf()
56 bc.jumptable_sel = w0.get_JUMPTABLE_SEL(); in decode_cf()
83 CF_WORD0_R6R7 w0(dw0); in decode_cf()
84 bc.addr = w0.get_ADDR(); in decode_cf()
116 CF_ALU_WORD0_ALL w0(dw0); in decode_cf_alu()
118 bc.kc[0].bank = w0.get_KCACHE_BANK0(); in decode_cf_alu()
119 bc.kc[1].bank = w0.get_KCACHE_BANK1(); in decode_cf_alu()
120 bc.kc[0].mode = w0.get_KCACHE_MODE0(); in decode_cf_alu()
122 bc.addr = w0 in decode_cf_alu()
[all...]
/third_party/musl/src/fenv/aarch64/
H A Dfenv.s5 and w0, w0, #0xc00000
14 orr w1, w1, w0
16 mov w0, #0
22 and w0, w0, #0x1f
24 and w0, w0, w1
30 and w0, w0, #
[all...]
/third_party/libunwind/libunwind/src/sh/
H A DGis_signal_frame.c71 unw_word_t w0, ip; in unw_is_signal_frame() local
83 ret = (*a->access_mem) (as, ip, &w0, 0, arg); in unw_is_signal_frame()
87 if (w0 != 0xc3109305) in unw_is_signal_frame()
90 ret = (*a->access_mem) (as, ip+4, &w0, 0, arg); in unw_is_signal_frame()
94 if (w0 != 0x200b200b) in unw_is_signal_frame()
97 ret = (*a->access_mem) (as, ip+8, &w0, 0, arg); in unw_is_signal_frame()
101 if (w0 != 0x200b200b) in unw_is_signal_frame()
104 ret = (*a->access_mem) (as, ip+12, &w0, 0, arg); in unw_is_signal_frame()
108 if (w0 == 0x0077200b) in unw_is_signal_frame()
110 else if (w0 in unw_is_signal_frame()
[all...]
/third_party/vixl/test/aarch64/
H A Dtest-abi.cc50 VIXL_CHECK(abi.GetReturnGenericOperand<bool>().Equals(GenericOperand(w0))); in TEST()
51 VIXL_CHECK(abi.GetReturnGenericOperand<char>().Equals(GenericOperand(w0))); in TEST()
52 VIXL_CHECK(abi.GetReturnGenericOperand<int8_t>().Equals(GenericOperand(w0))); in TEST()
53 VIXL_CHECK(abi.GetReturnGenericOperand<uint8_t>().Equals(GenericOperand(w0))); in TEST()
56 GenericOperand(w0))); in TEST()
57 VIXL_CHECK(abi.GetReturnGenericOperand<int16_t>().Equals(GenericOperand(w0))); in TEST()
59 abi.GetReturnGenericOperand<uint16_t>().Equals(GenericOperand(w0))); in TEST()
60 VIXL_CHECK(abi.GetReturnGenericOperand<int>().Equals(GenericOperand(w0))); in TEST()
61 VIXL_CHECK(abi.GetReturnGenericOperand<int32_t>().Equals(GenericOperand(w0))); in TEST()
63 abi.GetReturnGenericOperand<uint32_t>().Equals(GenericOperand(w0))); in TEST()
[all...]
H A Dtest-metadata-aarch64.cc60 __ Ldr(w0, MemOperand(tagged_heap_ptr, i * 32)); in TEST()
61 __ Str(w0, MemOperand(tagged_heap_ptr, i * 32)); in TEST()
97 __ Ldr(w0, MemOperand(x21)); in TEST()
98 __ Str(w0, MemOperand(x21)); in TEST()
101 __ Ldr(w0, MemOperand(tagged_heap_ptr, 320)); in TEST()
102 __ Str(w0, MemOperand(tagged_heap_ptr, 336)); in TEST()
103 __ Ldr(w0, MemOperand(tagged_heap_ptr, -8)); in TEST()
104 __ Str(w0, MemOperand(tagged_heap_ptr, -16)); in TEST()
117 __ Ldr(w0, MemOperand(x22)); in TEST()
H A Dtest-cpu-features-aarch64.cc166 TEST_NONE(adc_0, adc(w0, w1, w2))
168 TEST_NONE(adcs_0, adcs(w0, w1, w2))
170 TEST_NONE(adds_0, adds(w0, w1, Operand(w2, UXTH, 0)))
173 TEST_NONE(adds_3, adds(w0, w1, 0x905 << 12))
175 TEST_NONE(adds_5, adds(w0, w1, Operand(w2, LSL, 10)))
177 TEST_NONE(add_0, add(w0, w1, Operand(w2, UXTW, 3)))
180 TEST_NONE(add_3, add(w0, w1, 0xb7e << 12))
182 TEST_NONE(add_5, add(w0, w1, Operand(w2, LSL, 6)))
186 TEST_NONE(ands_0, ands(w0, w1, 0x3c0000))
188 TEST_NONE(ands_2, ands(w0, w
[all...]
H A Dtest-assembler-aarch64.cc65 __ Add(w2, w0, 0xffffff1); in TEST()
67 __ Adds(w4, w0, 0xffffff1); in TEST()
69 __ Sub(w6, w0, 0xffffff1); in TEST()
71 __ Subs(w8, w0, 0xffffff1); in TEST()
75 __ Orr(w10, w0, 0xffffff1); in TEST()
178 __ Mvn(w0, 0xfff); in TEST()
180 __ Mvn(w2, Operand(w0, LSL, 1)); in TEST()
182 __ Mvn(w4, Operand(w0, LSR, 3)); in TEST()
184 __ Mvn(w6, Operand(w0, ASR, 11)); in TEST()
186 __ Mvn(w8, Operand(w0, RO in TEST()
[all...]
/third_party/libunwind/libunwind/src/s390x/
H A DGis_signal_frame.c41 unw_word_t w0, ip; in unw_is_signal_frame() local
57 ret = (*a->access_mem) (as, ip, &w0, 0, arg); in unw_is_signal_frame()
62 w0 = (w0 >> shift) & 0xffff; in unw_is_signal_frame()
65 if (w0 == 0x0a77) in unw_is_signal_frame()
69 if (w0 == 0x0aad) in unw_is_signal_frame()
/third_party/libunwind/libunwind/src/arm/
H A DGos-linux.c156 unw_word_t w0, ip; in unw_is_signal_frame() local
169 if ((ret = (*a->access_mem) (as, ip, &w0, 0, arg)) < 0) in unw_is_signal_frame()
173 if (w0 == MOV_R7_SIGRETURN || w0 == ARM_SIGRETURN || w0 == THUMB_SIGRETURN in unw_is_signal_frame()
174 || w0 == THUMB2_SIGRETURN) in unw_is_signal_frame()
177 else if (w0 == MOV_R7_RT_SIGRETURN || w0 == ARM_RT_SIGRETURN in unw_is_signal_frame()
178 || w0 == THUMB_RT_SIGRETURN || w0 in unw_is_signal_frame()
[all...]
H A DGos-freebsd.c98 unw_word_t w0, w1, w2, w3, ip; in unw_is_signal_frame() local
110 if ((ret = (*a->access_mem) (as, ip, &w0, 0, arg)) < 0) in unw_is_signal_frame()
119 if (w0 == 0xe1a0000d && w1 == 0xe2800040 && w2 == 0xe59f700c && in unw_is_signal_frame()
123 if ((ret = (*a->access_mem) (as, ip - 4, &w0, 0, arg)) < 0) in unw_is_signal_frame()
125 if (w0 == 0xef000000) in unw_is_signal_frame()
/third_party/libunwind/libunwind/src/ppc/
H A DGis_signal_frame.c34 unw_word_t w0, w1, i0, i1, i2, ip; in unw_is_signal_frame() local
60 if ((ret = (*a->access_mem) (as, ip, &w0, 0, arg)) < 0 in unw_is_signal_frame()
66 i0 = w0 >> 32; in unw_is_signal_frame()
67 i1 = w0 & 0xffffffffUL; in unw_is_signal_frame()
72 i0 = w0 & 0xffffffffUL; in unw_is_signal_frame()
73 i1 = w0 >> 32; in unw_is_signal_frame()
/third_party/ffmpeg/libavfilter/
H A Daf_aexciter.c85 double a0, a1, a2, b0, b1, b2, w0, alpha; in set_params() local
102 w0 = 2 * M_PI * freq / srate; in set_params()
103 alpha = sin(w0) / (2. * 0.707); in set_params()
105 a1 = -2 * cos(w0); in set_params()
107 b0 = (1 + cos(w0)) / 2; in set_params()
108 b1 = -(1 + cos(w0)); in set_params()
109 b2 = (1 + cos(w0)) / 2; in set_params()
117 w0 = 2 * M_PI * ceil / srate; in set_params()
118 alpha = sin(w0) / (2. * 0.707); in set_params()
120 a1 = -2 * cos(w0); in set_params()
[all...]
H A Daf_atilt.c55 static double mz(int i, double w0, double r, double alpha) in mz() argument
57 return w0 * pow(r, -alpha + i); in mz()
60 static double mp(int i, double w0, double r) in mp() argument
62 return w0 * pow(r, i); in mp()
65 static double mzh(int i, double T, double w0, double r, double alpha) in mzh() argument
67 return prewarp(mz(i, w0, r, alpha), T, w0); in mzh()
70 static double mph(int i, double T, double w0, double r) in mph() argument
72 return prewarp(mp(i, w0, r), T, w0); in mph()
92 const double w0 = 2. * M_PI * f0; set_filter() local
[all...]
H A Daf_biquads.c303 double in, out, w0; \
310 w0 = in + a1 * w1 + a2 * w2; \
311 out = b0 * w0 + b1 * w1 + b2 * w2; \
313 w1 = w0; \
634 double w0 = 2. * M_PI * frequency / sample_rate; in convert_width2qfactor() local
650 ret = 1. / (2. * sinh(log(2.) / 2. * width * w0 / sin(w0))); in convert_width2qfactor()
794 double w0 = 2 * M_PI * s->frequency / inlink->sample_rate; in config_filter() local
795 double K = tan(w0 / 2.); in config_filter()
798 s->bypass = (((w0 > M_P in config_filter()
[all...]
/third_party/python/Modules/_decimal/libmpdec/
H A Dsixstep.c59 mpd_uint_t *x, w0, w1, wstep; in six_step_fnt() local
95 w0 = 1; /* r**(i*0): initial value for k=0 */ in six_step_fnt()
101 MULMOD2(&x0, w0, &x1, w1); in six_step_fnt()
102 MULMOD2C(&w0, &w1, wstep); /* r**(i*(k+2)) = r**(i*k) * r**(2*i) */ in six_step_fnt()
144 mpd_uint_t *x, w0, w1, wstep; in inv_six_step_fnt() local
177 w0 = 1; in inv_six_step_fnt()
183 MULMOD2(&x0, w0, &x1, w1); in inv_six_step_fnt()
184 MULMOD2C(&w0, &w1, wstep); in inv_six_step_fnt()
H A Dfourstep.c144 mpd_uint_t kernel, w0, w1, wstep; in four_step_fnt() local
169 w0 = 1; /* r**(i*0): initial value for k=0 */ in four_step_fnt()
175 MULMOD2(&x0, w0, &x1, w1); in four_step_fnt()
176 MULMOD2C(&w0, &w1, wstep); /* r**(i*(k+2)) = r**(i*k) * r**(2*i) */ in four_step_fnt()
206 mpd_uint_t kernel, w0, w1, wstep; in inv_four_step_fnt() local
238 w0 = 1; in inv_four_step_fnt()
244 MULMOD2(&x0, w0, &x1, w1); in inv_four_step_fnt()
245 MULMOD2C(&w0, &w1, wstep); in inv_four_step_fnt()
/third_party/ffmpeg/libswscale/aarch64/
H A Dyuv2rgb_neon.S39 sub w3, w3, w0, lsl #2 // w3 = linesize - width * 4 (padding)
40 sub w5, w5, w0 // w5 = linesizeY - width (paddingY)
41 sub w7, w7, w0 // w7 = linesizeC - width (paddingC)
42 neg w11, w0
57 sub w3, w3, w0, lsl #2 // w3 = linesize - width * 4 (padding)
58 sub w5, w5, w0 // w5 = linesizeY - width (paddingY)
59 sub w7, w7, w0, lsr #1 // w7 = linesizeU - width / 2 (paddingU)
60 sub w14, w14, w0, lsr #1 // w14 = linesizeV - width / 2 (paddingV)
61 lsr w11, w0, #1
73 sub w3, w3, w0, ls
[all...]
/third_party/libunwind/libunwind/src/mips/
H A DGis_signal_frame.c33 unw_word_t w0, w1, ip; in unw_is_signal_frame() local
52 if ((ret = (*a->access_mem) (as, ip, &w0, 0, arg)) < 0) in unw_is_signal_frame()
58 switch (w0 & 0xffffffff) in unw_is_signal_frame()
68 switch (w0 & 0xffffffff) in unw_is_signal_frame()
/third_party/musl/src/math/
H A D__tan.c69 double w0, a0; in __tan() local
104 w0 = w; in __tan()
105 SET_LOW_WORD(w0, 0); in __tan()
106 v = r - (w0 - x); /* w0+v = r+x */ in __tan()
109 return a0 + a*(1.0 + a0*w0 + a0*v); in __tan()
/third_party/musl/porting/liteos_a/kernel/src/math/
H A D__tan.c69 double w0, a0; in __tan() local
104 w0 = w; in __tan()
105 SET_LOW_WORD(w0, 0); in __tan()
106 v = r - (w0 - x); /* w0+v = r+x */ in __tan()
109 return a0 + a*(1.0 + a0*w0 + a0*v); in __tan()
/third_party/libunwind/libunwind/src/hppa/
H A DGis_signal_frame.c33 unw_word_t w0, w1, w2, w3, ip; in unw_is_signal_frame() local
58 if ((ret = (*a->access_mem) (as, ip, &w0, 0, arg)) < 0 in unw_is_signal_frame()
66 ret = ((w0 == 0x34190000 || w0 == 0x34190002) in unw_is_signal_frame()
/third_party/ffmpeg/libavcodec/mips/
H A Daacsbr_mips.h67 float *w0; in sbr_qmf_analysis_mips() local
71 w0 = x; in sbr_qmf_analysis_mips()
85 "sw %[temp0], 0(%[w0]) \n\t" in sbr_qmf_analysis_mips()
86 "sw %[temp1], 4(%[w0]) \n\t" in sbr_qmf_analysis_mips()
87 "sw %[temp2], 8(%[w0]) \n\t" in sbr_qmf_analysis_mips()
88 "sw %[temp3], 12(%[w0]) \n\t" in sbr_qmf_analysis_mips()
89 "sw %[temp4], 16(%[w0]) \n\t" in sbr_qmf_analysis_mips()
90 "sw %[temp5], 20(%[w0]) \n\t" in sbr_qmf_analysis_mips()
91 "sw %[temp6], 24(%[w0]) \n\t" in sbr_qmf_analysis_mips()
92 "sw %[temp7], 28(%[w0]) \ in sbr_qmf_analysis_mips()
[all...]
/third_party/mesa3d/src/intel/common/
H A Dintel_l3_config.c233 * incompatible whenever the reference configuration \p w0 requires SLM, DC,
237 intel_diff_l3_weights(struct intel_l3_weights w0, struct intel_l3_weights w1) in intel_diff_l3_weights() argument
239 if ((w0.w[INTEL_L3P_SLM] && !w1.w[INTEL_L3P_SLM]) || in intel_diff_l3_weights()
240 (w0.w[INTEL_L3P_DC] && !w1.w[INTEL_L3P_DC] && !w1.w[INTEL_L3P_ALL]) || in intel_diff_l3_weights()
241 (w0.w[INTEL_L3P_URB] && !w1.w[INTEL_L3P_URB])) { in intel_diff_l3_weights()
248 dw += fabsf(w0.w[i] - w1.w[i]); in intel_diff_l3_weights()
305 struct intel_l3_weights w0) in intel_get_l3_config()
314 const float dw = intel_diff_l3_weights(w0, intel_get_l3_config_weights(cfg)); in intel_get_l3_config()
304 intel_get_l3_config(const struct intel_device_info *devinfo, struct intel_l3_weights w0) intel_get_l3_config() argument
/third_party/node/deps/openssl/openssl/crypto/aria/
H A Daria.c542 uint32_t w0[4], w1[4], w2[4], w3[4]; in ossl_aria_set_encrypt_key() local
559 w0[0] = GET_U32_BE(userKey, 0); in ossl_aria_set_encrypt_key()
560 w0[1] = GET_U32_BE(userKey, 1); in ossl_aria_set_encrypt_key()
561 w0[2] = GET_U32_BE(userKey, 2); in ossl_aria_set_encrypt_key()
562 w0[3] = GET_U32_BE(userKey, 3); in ossl_aria_set_encrypt_key()
564 reg0 = w0[0] ^ ck[0]; in ossl_aria_set_encrypt_key()
565 reg1 = w0[1] ^ ck[1]; in ossl_aria_set_encrypt_key()
566 reg2 = w0[2] ^ ck[2]; in ossl_aria_set_encrypt_key()
567 reg3 = w0[3] ^ ck[3]; in ossl_aria_set_encrypt_key()
603 reg0 ^= w0[ in ossl_aria_set_encrypt_key()
1126 ARIA_u128 kr, w0, w1, w2, w3; ossl_aria_set_encrypt_key() local
[all...]
/third_party/openssl/crypto/aria/
H A Daria.c542 uint32_t w0[4], w1[4], w2[4], w3[4]; in ossl_aria_set_encrypt_key() local
559 w0[0] = GET_U32_BE(userKey, 0); in ossl_aria_set_encrypt_key()
560 w0[1] = GET_U32_BE(userKey, 1); in ossl_aria_set_encrypt_key()
561 w0[2] = GET_U32_BE(userKey, 2); in ossl_aria_set_encrypt_key()
562 w0[3] = GET_U32_BE(userKey, 3); in ossl_aria_set_encrypt_key()
564 reg0 = w0[0] ^ ck[0]; in ossl_aria_set_encrypt_key()
565 reg1 = w0[1] ^ ck[1]; in ossl_aria_set_encrypt_key()
566 reg2 = w0[2] ^ ck[2]; in ossl_aria_set_encrypt_key()
567 reg3 = w0[3] ^ ck[3]; in ossl_aria_set_encrypt_key()
603 reg0 ^= w0[ in ossl_aria_set_encrypt_key()
1126 ARIA_u128 kr, w0, w1, w2, w3; ossl_aria_set_encrypt_key() local
[all...]

Completed in 12 milliseconds

1234567