Home
last modified time | relevance | path

Searched refs:SHR (Results 1 – 25 of 68) sorted by relevance

123

/third_party/openssl/crypto/sha/asm/
Dsha512-s390x.pl84 $SHR="srlg"; # logical right shift [see even at the end]
98 $SHR="srl"; # logical right shift
156 $SHR $T1,$sigma0[2]
161 $SHR $t1,$sigma1[2]
Dsha512-ppc.pl85 $SHR="srdi";
97 $SHR="srwi";
178 $SHR $a1,@X[($i+1)%16],$sigma0[2]
180 $SHR $t1,@X[($i+14)%16],$sigma1[2]
/third_party/boost/libs/locale/src/shared/
Dmo_lambda.cpp126 enum { END = 0 , SHL = 256, SHR, GTE,LTE, EQ, NEQ, AND, OR, NUM, VARIABLE }; enumerator
143 static int level8[]={2,SHL,SHR};
203 case SHR: return plural_ptr(new shr(left,right)); in bin_factory()
267 else if(strncmp(ptr,">>",2)==0) { pos+=2; next_tocken=SHR; } in step()
/third_party/FreeBSD/sys/crypto/sha2/
Dsha256c.c104 #define SHR(x, n) (x >> n) macro
108 #define s0(x) (ROTR(x, 7) ^ ROTR(x, 18) ^ SHR(x, 3))
109 #define s1(x) (ROTR(x, 17) ^ ROTR(x, 19) ^ SHR(x, 10))
/third_party/ffmpeg/libavcodec/
Dmpegaudiodsp_template.c50 #define SHR(a,b) ((a)*(1.0f/(1<<(b)))) macro
70 # define SHR(a,b) (((int)(a))>>(b)) macro
292 t3 = in1[2*0] + SHR(in1[2*6],1); in imdct36()
294 tmp1[ 6] = t1 - SHR(t2,1); in imdct36()
Dmpegaudiodec_float.c29 #define SHR(a,b) ((a)*(1.0f/(1<<(b)))) macro
Dmpegaudiodec_fixed.c28 #define SHR(a,b) (((int)(a))>>(b)) macro
/third_party/mbedtls/library/
Dsha512.c205 #define SHR(x,n) ((x) >> (n)) in mbedtls_internal_sha512_process() macro
206 #define ROTR(x,n) (SHR((x),(n)) | ((x) << (64 - (n)))) in mbedtls_internal_sha512_process()
208 #define S0(x) (ROTR(x, 1) ^ ROTR(x, 8) ^ SHR(x, 7)) in mbedtls_internal_sha512_process()
209 #define S1(x) (ROTR(x,19) ^ ROTR(x,61) ^ SHR(x, 6)) in mbedtls_internal_sha512_process()
Dsha256.c146 #define SHR(x,n) (((x) & 0xFFFFFFFF) >> (n)) macro
147 #define ROTR(x,n) (SHR(x,n) | ((x) << (32 - (n))))
149 #define S0(x) (ROTR(x, 7) ^ ROTR(x,18) ^ SHR(x, 3))
150 #define S1(x) (ROTR(x,17) ^ ROTR(x,19) ^ SHR(x,10))
/third_party/flutter/skia/src/sksl/
DSkSLLexer.h140 #undef SHR
141 SHR, enumerator
DSkSLUtil.cpp65 case Token::SHREQ: return Token::SHR; in remove_assignment()
/third_party/openssl/crypto/bn/asm/
Dppc.pl124 $SHR= "srw"; # unsigned shift right
148 $SHR= "srd"; # unsigned shift right
1649 $SHR. r9,r3,r8 #are there any bits above r8'th?
1659 $SHR r8,r4,r8 # r8 = (l >> BN_BITS2 -i)
/third_party/flutter/skia/src/sksl/lex/
Dsksl.lex61 SHR = ">>"
/third_party/skia/src/sksl/lex/
Dsksl.lex65 SHR = ">>"
/third_party/glib/glib/
Dgchecksum.c873 #define SHR(x,n) ((x & 0xFFFFFFFF) >> n) in sha256_transform() macro
874 #define ROTR(x,n) (SHR (x,n) | (x << (32 - n))) in sha256_transform()
876 #define S0(x) (ROTR (x, 7) ^ ROTR (x,18) ^ SHR (x, 3)) in sha256_transform()
877 #define S1(x) (ROTR (x,17) ^ ROTR (x,19) ^ SHR (x,10)) in sha256_transform()
966 #undef SHR in sha256_transform()
1101 #define SHR(n,x) (x >> n) macro
1102 #define ROTR(n,x) (SHR (n, x) | (x << (64 - n)))
1105 #define sigma0(x) (ROTR ( 1, x) ^ ROTR ( 8, x) ^ SHR ( 7, x))
1106 #define sigma1(x) (ROTR (19, x) ^ ROTR (61, x) ^ SHR ( 6, x))
1392 #undef SHR
/third_party/mesa3d/src/gallium/drivers/vc4/
Dvc4_qpu.h204 A_ALU2(SHR)
Dvc4_qpu_emit.c269 A(SHR), in vc4_generate_code_block()
/third_party/mesa3d/src/intel/compiler/
Dbrw_vec4_gs_visitor.cpp327 emit(SHR(dst_reg(dword_index), prev_count, in emit_control_data_bits()
345 emit(SHR(dst_reg(per_slot_offset), dword_index, brw_imm_ud(2u))); in emit_control_data_bits()
Dbrw_vec4_visitor.cpp176 ALU2(SHR) in ALU1()
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()
Dbrw_vec4.h208 EMIT2(SHR)
Dbrw_vec4_builder.h435 ALU2(SHR) in ALU2_ACC()
Dbrw_fs_visitor.cpp377 bld.SHR(half_int_pixel_offset_x, suboffset(r1_0, 0), brw_imm_ud(1)); in emit_interpolation_setup_gfx6()
378 bld.SHR(half_int_pixel_offset_y, suboffset(r1_0, 1), brw_imm_ud(1)); in emit_interpolation_setup_gfx6()
/third_party/mesa3d/src/intel/tools/
Di965_lex.l127 shr { yylval.integer = BRW_OPCODE_SHR; return SHR; }
/third_party/curl/packages/vms/
Dbuild_vms.com609 $ if f$search("SYS$SHARE:LDAP$SHR.EXE") .eqs. ""
Dgenerate_config_vms_h_curl.com155 $if f$search("SYS$SHARE:LDAP$SHR.EXE") .eqs. ""

123