/third_party/pulseaudio/speex/libspeexdsp/ |
H A D | fixed_generic.h | 59 #define SHR(a,shift) ((a) >> (shift)) macro 61 #define PSHR(a,shift) (SHR((a)+((EXTEND32(1)<<((shift))>>1)),shift)) 78 #define MULT16_32_Q12(a,b) ADD32(MULT16_16((a),SHR((b),12)), SHR(MULT16_16((a),((b)&0x00000fff)),12)) 79 #define MULT16_32_Q13(a,b) ADD32(MULT16_16((a),SHR((b),13)), SHR(MULT16_16((a),((b)&0x00001fff)),13)) 80 #define MULT16_32_Q14(a,b) ADD32(MULT16_16((a),SHR((b),14)), SHR(MULT16_16((a),((b)&0x00003fff)),14)) 82 #define MULT16_32_Q11(a,b) ADD32(MULT16_16((a),SHR((b),11)), SHR(MULT16_1 [all...] |
H A D | arch.h | 173 #define SHR(a,shift) (a) macro
|
/third_party/FreeBSD/sys/crypto/sha2/ |
H A D | sha256c.c | 102 #define SHR(x, n) (x >> n) macro 106 #define s0(x) (ROTR(x, 7) ^ ROTR(x, 18) ^ SHR(x, 3)) 107 #define s1(x) (ROTR(x, 17) ^ ROTR(x, 19) ^ SHR(x, 10))
|
/third_party/node/deps/v8/src/parsing/ |
H A D | token.h | 42 E(T, SHR, ">>>", 11) \ 311 return base::IsInRange(op, BIT_OR, SHR) || op == BIT_NOT; in IsBitOp() 319 static bool IsShiftOp(Value op) { return base::IsInRange(op, SHL, SHR); } in IsShiftOp()
|
/third_party/ffmpeg/libavcodec/ |
H A D | mpegaudiodsp_template.c | 49 #define SHR(a,b) ((a)*(1.0f/(1<<(b)))) macro 69 # define SHR(a,b) (((int)(a))>>(b)) macro 291 t3 = in1[2*0] + SHR(in1[2*6],1); in imdct36() 293 tmp1[ 6] = t1 - SHR(t2,1); in imdct36()
|
H A D | mpegaudiodec_float.c | 31 #define SHR(a,b) ((a)*(1.0f/(1<<(b)))) macro
|
H A D | mpegaudiodec_fixed.c | 30 #define SHR(a,b) (((int)(a))>>(b)) macro
|
/third_party/node/deps/openssl/openssl/crypto/sha/asm/ |
H A D | sha512-s390x.pl | 86 $SHR="srlg"; # logical right shift [see even at the end] 100 $SHR="srl"; # logical right shift 158 $SHR $T1,$sigma0[2] 163 $SHR $t1,$sigma1[2]
|
H A D | sha512-ppc.pl | 88 $SHR="srdi"; 100 $SHR="srwi"; 181 $SHR $a1,@X[($i+1)%16],$sigma0[2] 183 $SHR $t1,@X[($i+14)%16],$sigma1[2]
|
/third_party/openssl/crypto/sha/asm/ |
H A D | sha512-s390x.pl | 86 $SHR="srlg"; # logical right shift [see even at the end] 100 $SHR="srl"; # logical right shift 158 $SHR $T1,$sigma0[2] 163 $SHR $t1,$sigma1[2]
|
H A D | sha512-ppc.pl | 88 $SHR="srdi"; 100 $SHR="srwi"; 181 $SHR $a1,@X[($i+1)%16],$sigma0[2] 183 $SHR $t1,@X[($i+14)%16],$sigma1[2]
|
/third_party/mbedtls/library/ |
H A D | sha256.c | 457 #define SHR(x, n) (((x) & 0xFFFFFFFF) >> (n)) macro 458 #define ROTR(x, n) (SHR(x, n) | ((x) << (32 - (n)))) 460 #define S0(x) (ROTR(x, 7) ^ ROTR(x, 18) ^ SHR(x, 3)) 461 #define S1(x) (ROTR(x, 17) ^ ROTR(x, 19) ^ SHR(x, 10))
|
H A D | sha512.c | 610 #define SHR(x, n) ((x) >> (n)) in mbedtls_internal_sha512_process_c() macro 611 #define ROTR(x, n) (SHR((x), (n)) | ((x) << (64 - (n)))) in mbedtls_internal_sha512_process_c() 613 #define S0(x) (ROTR(x, 1) ^ ROTR(x, 8) ^ SHR(x, 7)) in mbedtls_internal_sha512_process_c() 614 #define S1(x) (ROTR(x, 19) ^ ROTR(x, 61) ^ SHR(x, 6)) in mbedtls_internal_sha512_process_c()
|
/third_party/node/deps/v8/src/asmjs/ |
H A D | asm-names.h | 94 V(">>>", SHR) \
|
/third_party/mesa3d/src/intel/compiler/ |
H A D | brw_vec4_visitor.cpp | 176 ALU2(SHR) 464 emit(SHR(tmp_dst, src0, brw_imm_ud(16u))); in emit_unpack_half_2x16() 483 emit(SHR(shifted, src0, src_reg(shift))); in emit_unpack_unorm_4x8() 505 emit(SHR(shifted, src0, src_reg(shift))); in emit_unpack_snorm_4x8()
|
H A D | brw_vec4_gs_visitor.cpp | 325 emit(SHR(dst_reg(dword_index), prev_count, in emit_control_data_bits() 343 emit(SHR(dst_reg(per_slot_offset), dword_index, brw_imm_ud(2u))); in emit_control_data_bits()
|
H A D | brw_vec4.h | 205 EMIT2(SHR)
|
H A D | brw_vec4_builder.h | 435 ALU2(SHR)
|
H A D | brw_fs_visitor.cpp | 382 bld.SHR(half_int_pixel_offset_x, suboffset(r1_0, 0), brw_imm_ud(1)); in emit_interpolation_setup_gfx6() 383 bld.SHR(half_int_pixel_offset_y, suboffset(r1_0, 1), brw_imm_ud(1)); in emit_interpolation_setup_gfx6()
|
H A D | brw_mesh.cpp | 992 bld8.SHR(off, off, brw_imm_ud(2)); in emit_urb_indirect_writes() 1100 bld8.SHR(off, off, brw_imm_ud(2)); in emit_urb_indirect_reads()
|
H A D | brw_fs_builder.h | 645 ALU2(SHR)
|
/third_party/mesa3d/src/gallium/drivers/vc4/ |
H A D | vc4_qpu.h | 204 A_ALU2(SHR)
|
H A D | vc4_qir.h | 693 QIR_ALU2(SHR)
|
/third_party/node/deps/openssl/openssl/crypto/bn/asm/ |
H A D | ppc.pl | 127 $SHR= "srw"; # unsigned shift right 151 $SHR= "srd"; # unsigned shift right 1653 $SHR. r9,r3,r8 #are there any bits above r8'th? 1663 $SHR r8,r4,r8 # r8 = (l >> BN_BITS2 -i)
|
/third_party/openssl/crypto/bn/asm/ |
H A D | ppc.pl | 127 $SHR= "srw"; # unsigned shift right 151 $SHR= "srd"; # unsigned shift right 1653 $SHR. r9,r3,r8 #are there any bits above r8'th? 1663 $SHR r8,r4,r8 # r8 = (l >> BN_BITS2 -i)
|