HomeSort by relevance Sort by last modified time
    Searched defs:shr (Results 1 - 25 of 57) sorted by null

1 2 3

  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
shr.cpp 31 Filename: /audio/gsm_amr/c/src/shr.c
36 Description: Created separate file for the shr function. Sync'ed up with
97 FUNCTION NAME: shr
136 [1] shr() function in basic_op2.c, UMTS GSM AMR speech codec, R99 -
205 Word16 shr(Word16 var1, Word16 var2, Flag *pOverflow) function
  /prebuilts/go/darwin-x86/src/math/big/
decimal.go 11 // The key observation and some code (shr) is borrowed from
72 m = nat(nil).shr(m, s)
96 shr(x, maxShift)
99 shr(x, uint(-shift))
103 // shr implements x >> s, for s <= maxShift.
104 func shr(x *decimal, s uint) { func
nat.go 730 func (z nat) shr(x nat, s uint) nat { func
1248 z2 = z2.shr(z2, 1)
  /prebuilts/go/linux-x86/src/math/big/
decimal.go 11 // The key observation and some code (shr) is borrowed from
72 m = nat(nil).shr(m, s)
96 shr(x, maxShift)
99 shr(x, uint(-shift))
103 // shr implements x >> s, for s <= maxShift.
104 func shr(x *decimal, s uint) { func
nat.go 730 func (z nat) shr(x nat, s uint) nat { func
1248 z2 = z2.shr(z2, 1)
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/microblaze/
allinsn.s 20 .global shr
21 shr: label
22 shr r0,r0,r0
  /external/libconstrainedcrypto/
sha256.c 37 #define shr(value, bits) ((value) >> (bits)) macro
72 uint32_t s0 = ror(W[t-15], 7) ^ ror(W[t-15], 18) ^ shr(W[t-15], 3);
73 uint32_t s1 = ror(W[t-2], 17) ^ ror(W[t-2], 19) ^ shr(W[t-2], 10);
  /frameworks/av/media/libstagefright/codecs/aacenc/basic_op/
basicop2.c 270 var_out = shr (var1, (Word16)-var2);
294 | Function Name : shr |
328 Word16 shr (Word16 var1, Word16 var2) function
    [all...]
basic_op.h 77 __inline Word16 shr (Word16 var1, Word16 var2);
79 Word16 shr (Word16 var1, Word16 var2);
361 var_out = shr (var1, (Word16)-var2);
383 __inline Word16 shr (Word16 var1, Word16 var2) function
1085 var_out = shr(var1, var2);
  /external/boringssl/src/crypto/curve25519/asm/
x25519-asm-x86_64.S 78 shr $51,%r12 label
82 shr $51,%r12 label
86 shr $51,%r12 label
90 shr $51,%r12 label
94 shr $51,%r12 label
272 shr $51,%rdx label
275 shr $51,%rdx label
279 shr $51,%rdx label
283 shr $51,%rdx label
287 shr $51,%rd label
412 shr $51,%rdx label
416 shr $51,%rdx label
420 shr $51,%rdx label
424 shr $51,%rdx label
428 shr $51,%rdx label
589 shr $51,%rcx label
593 shr $51,%rcx label
597 shr $51,%rcx label
601 shr $51,%rcx label
605 shr $51,%rcx label
704 shr $51,%rcx label
708 shr $51,%rcx label
712 shr $51,%rcx label
716 shr $51,%rcx label
720 shr $51,%rcx label
909 shr $51,%rcx label
912 shr $51,%rcx label
916 shr $51,%rcx label
920 shr $51,%rcx label
924 shr $51,%rcx label
1059 shr $51,%rcx label
1062 shr $51,%rcx label
1066 shr $51,%rcx label
1070 shr $51,%rcx label
1074 shr $51,%rcx label
1199 shr $51,%rcx label
1203 shr $51,%rcx label
1207 shr $51,%rcx label
1211 shr $51,%rcx label
1215 shr $51,%rcx label
1314 shr $51,%rcx label
1318 shr $51,%rcx label
1322 shr $51,%rcx label
1326 shr $51,%rcx label
1330 shr $51,%rcx label
1464 shr $51,%rcx label
1467 shr $51,%rcx label
1471 shr $51,%rcx label
1475 shr $51,%rcx label
1479 shr $51,%rcx label
1614 shr $51,%rcx label
1617 shr $51,%rcx label
1621 shr $51,%rcx label
1625 shr $51,%rcx label
1629 shr $51,%rcx label
1641 shr $13,%rax label
1646 shr $13,%rax label
1651 shr $13,%rax label
1656 shr $13,%rax label
1661 shr $13,%rax label
1800 shr $51,%rcx label
1803 shr $51,%rcx label
1807 shr $51,%rcx label
1811 shr $51,%rcx label
1815 shr $51,%rcx label
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
basic_op.h 71 static_vo Word16 shr (Word16 var1, Word16 var2); /* Short shift right, 1 */
244 | Function Name : shr |
277 static_vo Word16 shr (Word16 var1, Word16 var2) function
    [all...]
  /art/compiler/optimizing/
induction_var_analysis_test.cc 647 HInstruction* shr = InsertInstruction( local
649 k_header->AddInput(shr);
654 EXPECT_STREQ("", GetInductionInfo(shr, 0).c_str());
667 HInstruction* shr = InsertInstruction( local
669 k_header->AddInput(shr);
673 EXPECT_STREQ("", GetInductionInfo(shr, 0).c_str());
    [all...]
bounds_check_elimination.cc 1102 FindAndHandlePartialArrayLength(shr); variable
    [all...]
  /external/v8/src/compiler/
machine-operator-reducer.cc 1235 Node* shr = nullptr; local
    [all...]
  /frameworks/base/core/jni/
com_google_android_gles_jni_EGLImpl.cpp 234 EGLContext shr = getContext(_env, share_context); local
236 EGLContext ctx = eglCreateContext(dpy, cnf, shr, base);
  /external/v8/src/x87/
assembler-x87.cc 1052 void Assembler::shr(const Operand& dst, uint8_t imm8) { function in class:v8::internal::Assembler
    [all...]
  /external/v8/src/ia32/
assembler-ia32.cc 1181 void Assembler::shr(const Operand& dst, uint8_t imm8) { function in class:v8::internal::Assembler
    [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
microblaze-opcm.h 40 shr, sw, swr, swx, lbui, lhui, lwi, enumerator in enum:microblaze_instr
  /external/valgrind/VEX/priv/
guest_x86_toIR.c 5709 Bool shl, shr, sar; local
5782 Bool shl, shr, sar; local
7411 Bool shl, shr, sar; local
7482 Bool shl, shr, sar; local
    [all...]
  /external/jarjar/lib/
asm-commons-4.0.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
asm-commons-3.3.jar 
  /prebuilts/misc/common/asm/
asm-commons-5.2.jar 
  /prebuilts/misc/common/robolectric/lib/
asm-commons-5.0.1.jar 
  /prebuilts/tools/common/asm-tools/
asm-commons-4.0.jar 
  /prebuilts/tools/common/m2/repository/asm/asm-commons/3.3/
asm-commons-3.3.jar 

Completed in 1427 milliseconds

1 2 3