HomeSort by relevance Sort by last modified time
    Searched refs:var1 (Results 1 - 25 of 247) sorted by null

1 2 3 4 5 6 7 8 910

  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
negate.cpp 48 var1 = 16 bit short signed integer (Word16) whose value falls in
49 the range : 0xffff 8000 <= var1 <= 0x0000 7fff.
58 var1 = negated value of input (Word16)
72 This function negates var1 with saturation; saturate in the case where input
73 is -32768: negate(var1) = sub(0,var1).
88 Word16 negate (Word16 var1)
92 var_out = (var1 == MIN_16) ? MAX_16 : -var1;
164 Word16 negate(register Word16 var1)
    [all...]
norm_s.cpp 42 Description: Updated definition of var1 to be the same as that in the
54 var1 = 16 bit signed integer of type Word16, whose value falls
55 in the range: 0x8000 <= var1 <= 0x7fff
64 var_out = number of left shifts need to normalize var1 (Word16)
79 bit variable var1 for positive values on the interval with minimum of 0x4000
81 of 0x8000 and maximum of 0xc000. Note that when var1 is zero, the resulting
97 Word16 norm_s (Word16 var1)
101 if (var1 == 0)
107 if (var1 == (Word16) 0xffff)
113 if (var1 < 0
    [all...]
l_deposit_h.cpp 47 var1 = 16 bit short signed integer (Word16) whose value falls in
48 the range : 0xffff 8000 <= var1 <= 0x0000 7fff.
57 var1 = deposit of var1 into MSWord of 32 bit value (Word32)
71 This function deposits the 16 bit var1 into the 16 MS bits of the 32 bit
87 Word32 L_deposit_h (Word16 var1)
91 L_var_out = (Word32) var1 << 16;
163 Word32 L_deposit_h(Word16 var1)
176 return ((Word32) var1 << 16);
l_deposit_l.cpp 47 var1 = 16 bit short signed integer (Word16) whose value falls in
48 the range : 0xffff 8000 <= var1 <= 0x0000 7fff.
57 var1 = deposit of var1 into LSWord of 32 bit value (Word32)
71 This function deposits the 16 bit var1 into the 16 LS bits of the 32 bit
87 Word32 L_deposit_l (Word16 var1)
91 L_var_out = (Word32) var1;
163 Word32 L_deposit_l(Word16 var1)
176 return ((Word32) var1);
shr.cpp 45 3. Deleted (var2>15&&var1!=0) condition.
102 var1 = 16 bit short signed integer (Word16) whose value falls in
103 the range : 0xffff 8000 <= var1 <= 0x0000 7fff.
125 This function arithmetically shifts the 16 bit input var1 right var2 positions
126 with sign extension. If var2 is negative, arithmetically shift var1 left by
142 Word16 shr_std (Word16 var1, Word16 var2)
150 var_out = shl_std (var1, -var2);
159 var_out = (var1 < 0) ? -1 : 0;
163 if (var1 < 0)
165 var_out = ~((~var1) >> var2)
    [all...]
shr_r.cpp 48 var1 = 16 bit short signed integer (Word16) whose value falls in
49 the range : 0xffff 8000 <= var1 <= 0x0000 7fff.
74 This function arithmetically shifts the 16 bit input var1 right var2 positions
75 with rounding. If var2 is negative, arithmetically shift var1 left by
80 if (sub(shl(shr(var1,var2),1),shr(var1,sub(var2,1))))
83 shr_r(var1,var2) = shr(var1,var2)
85 shr_r(var1,var2) = add(shr(var1,var2),1
    [all...]
div_s.cpp 56 var1 = 16 bit signed integer (Word16) whose value falls in
57 the range : 0x0000 <= var1 <= 0x7fff.
59 the range : 0x0000 <= var1 <= 0x7fff.
68 var_out = quotient of var1 divided by var2 (Word16)
83 var1 by var2; var1 and var2 must be positive and var2 must be greater or equal
84 to var1; the result is positive (leading bit equal to 0) and truncated to 16
85 bits. If var1 = var2 then div(var1,var2) = 32767.
100 Word16 div_s (Word16 var1, Word16 var2
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
norm_s.h 106 Word16 norm_s(Word16 var1);
113 Word32 var1 = var << 16; local
117 CMP var1, #0 local
118 EORNE var1, var1, var1, LSL #1 local
119 CLZNE var_out, var1
127 static inline Word16 norm_s(Word16 var1)
130 register Word32 ra = var1 << 16;
abs_s.h 102 Word16 abs_s(Word16 var1);
l_deposit_h.h 103 Word32 L_deposit_h(Word16 var1);
l_deposit_l.h 103 Word32 L_deposit_l(Word16 var1);
negate.h 102 Word16 negate(register Word16 var1);
div_s.h 103 Word16 div_s(Word16 var1, Word16 var2);
add.h 106 Word16 add(Word16 var1, Word16 var2, Flag *pOverflow);
mult_r.h 106 Word16 mult_r(Word16 var1, Word16 var2, Flag *pOverflow);
shl.h 106 Word16 shl(Word16 var1, Word16 var2, Flag *pOverflow);
shr.h 106 Word16 shr(Word16 var1, Word16 var2, Flag *pOverflow);
shr_r.h 104 Word16 shr_r(Word16 var1, Word16 var2, Flag *pOverflow);
  /external/clang/test/Sema/
attr-minsize.c 5 int var1 __attribute__((__minsize__)); // expected-error{{'__minsize__' attribute only applies to functions and methods}} variable
  /external/llvm/test/MC/MachO/ARM/
aliased-symbols.s 5 var1 = var2 define
6 .long var1
94 // var1 was another alias to an unknown variable. Not extern this time.
96 // CHECK-NEXT: Name: var1 (89)
  /external/python/cpython2/Demo/tkinter/guido/
optionmenu.py 10 var1 = StringVar() variable
11 var1.set("One") # default selection
13 menu1 = OptionMenu(root, var1, "One", "Two", "Three")
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-elf/
var1.s 25 .globl var1
26 .section .data.var1,"aw",%progbits
28 .type var1, %object
29 .size var1, 4
30 var1: label
  /frameworks/support/leanback/src/androidTest/java/androidx/leanback/widget/
ParallaxFloatTest.java 61 Parallax.FloatProperty var1 = mSource.addProperty("var1"); local
62 var1.setValue(mSource, 54);
63 assertFloatEquals((float) 54, var1.getValue(mSource));
64 assertEquals(var1.getName(), "var1");
65 var1.set(mSource, (float) 2000);
66 assertFloatEquals((float) 2000, var1.get(mSource).floatValue());
72 Parallax.FloatProperty var1 = mSource.addProperty("var1"); local
76 assertSame(keyValue.getProperty(), var1); local
83 Parallax.FloatProperty var1 = mSource.addProperty("var1"); local
87 assertSame(keyValue.getProperty(), var1); local
94 Parallax.FloatProperty var1 = mSource.addProperty("var1"); local
98 assertSame(keyValue.getProperty(), var1); local
103 assertSame(keyValue2.getProperty(), var1); local
109 Parallax.FloatProperty var1 = mSource.addProperty("var1"); local
120 Parallax.FloatProperty var1 = mSource.addProperty("var1"); local
131 Parallax.FloatProperty var1 = mSource.addProperty("var1"); local
    [all...]
ParallaxIntTest.java 58 Parallax.IntProperty var1 = mSource.addProperty("var1"); local
59 var1.setValue(mSource, 54);
60 assertEquals((int) 54, var1.getValue(mSource));
61 assertEquals(var1.getName(), "var1");
62 var1.set(mSource, (int) 2000);
63 assertEquals((int) 2000, var1.get(mSource).intValue());
69 Parallax.IntProperty var1 = mSource.addProperty("var1"); local
73 assertSame(keyValue.getProperty(), var1); local
80 Parallax.IntProperty var1 = mSource.addProperty("var1"); local
84 assertSame(keyValue.getProperty(), var1); local
91 Parallax.IntProperty var1 = mSource.addProperty("var1"); local
95 assertSame(keyValue.getProperty(), var1); local
100 assertSame(keyValue2.getProperty(), var1); local
106 Parallax.IntProperty var1 = mSource.addProperty("var1"); local
117 Parallax.IntProperty var1 = mSource.addProperty("var1"); local
128 Parallax.IntProperty var1 = mSource.addProperty("var1"); local
    [all...]
  /build/kati/testcase/
var_eval.mk 0 var1 = $($(bar))
17 echo '$(var1)'
1 var1 = $($(bar)) macro

Completed in 364 milliseconds

1 2 3 4 5 6 7 8 910