HomeSort by relevance Sort by last modified time
    Searched full:var2 (Results 1 - 25 of 144) sorted by null

1 2 3 4 5 6

  /frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
basic_op.h 51 #define vo_shr_r(var1, var2) ((var1+((Word16)(1L<<(var2-1))))>>var2)
60 #define vo_L_shr_r(L_var1, var2) ((L_var1+((Word32)(1L<<(var2-1))))>>var2)
68 static_vo Word16 add (Word16 var1, Word16 var2); /* Short add,1 */
69 static_vo Word16 sub (Word16 var1, Word16 var2); /* Short sub,1 */
70 static_vo Word16 shl (Word16 var1, Word16 var2); /* Short shift left, 1 */
71 static_vo Word16 shr (Word16 var1, Word16 var2); /* Short shift right, 1 *
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacenc/basic_op/
basic_op.h 70 __inline Word16 shl (Word16 var1, Word16 var2);
72 Word16 shl (Word16 var1, Word16 var2);
77 __inline Word16 shr (Word16 var1, Word16 var2);
79 Word16 shr (Word16 var1, Word16 var2);
83 __inline Word32 L_mult(Word16 var1, Word16 var2);
85 Word32 L_mult(Word16 var1, Word16 var2);
90 __inline Word32 L_msu (Word32 L_var3, Word16 var1, Word16 var2);
92 Word32 L_msu (Word32 L_var3, Word16 var1, Word16 var2);
104 __inline Word32 L_shl (Word32 L_var1, Word16 var2);
106 Word32 L_shl (Word32 L_var1, Word16 var2);
    [all...]
basicop2.c 87 | Performs the addition (var1+var2) with overflow control and saturation;|
99 | var2 |
116 Word16 add (Word16 var1, Word16 var2)
121 L_sum = (Word32)var1 + (Word32)var2;
134 | Performs the subtraction (var1+var2) with overflow control and satu- |
146 | var2 |
162 Word16 sub(Word16 var1, Word16 var2)
167 L_diff = (Word32) var1 - var2;
231 | Arithmetically shift the 16 bit input var1 left var2 positions.Zero fill|
232 | the var2 LSB of the result. If var2 is negative, arithmetically shift
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/tests/
xdfother.asm 11 mov ax, [var2 wrt bar]
21 var2 dw 2 define
  /external/llvm/test/Transforms/InstCombine/
2008-10-23-ConstFoldWithoutMask.ll 6 %var2 = ptrtoint i8* %var0 to i32 ; <i32> [#uses=1]
7 ret i32 %var2
  /external/chromium_org/media/base/
callback_holder_unittest.cc 16 static void CopyVar(int var1, int* var2) {
17 DCHECK_NE(var1, *var2);
18 *var2 = var1;
81 int var2 = 0; local
82 cb.RunOrHold(var1, &var2);
84 EXPECT_NE(var1, var2);
88 EXPECT_EQ(var1, var2);
101 int var2 = 0; local
102 cb.RunOrHold(var1, &var2);
104 EXPECT_NE(var1, var2);
119 int var2 = 0; local
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/applescript/examples/
app_info.applescript 8 set var2 to version
  /external/chromium_org/chrome/browser/ui/cocoa/applescript/examples/
app_info.applescript 8 set var2 to version
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
pvamrwbdecoder_basic_op_armv5.h 62 __inline int16 add_int16(int16 var1, int16 var2)
70 mov L_var_aux, var2, lsl #16 local
79 __inline int16 sub_int16(int16 var1, int16 var2)
87 mov L_var_aux, var2, lsl #16 local
108 __inline int32 mac_16by16_to_int32(int32 L_var3, int16 var1, int16 var2)
115 smulbb L_var_out, var1, var2
132 __inline int32 msu_16by16_from_int32(int32 L_var3, int16 var1, int16 var2)
139 smulbb L_var_out, var1, var2
145 __inline int32 mul_16by16_to_int32(int16 var1, int16 var2)
151 smulbb L_var_out, var1, var2
216 smlabb L_add, var1, var2, L_add local
    [all...]
pvamrwbdecoder_basic_op.h 94 Arithmetically shift the 16 bit input var1 left var2 positions.Zero fill
95 the var2 LSB of the result. If var2 is negative, arithmetically shift
96 var1 right by -var2 with sign extension. Saturate the result in case of
104 var2
114 __inline int16 shl_int16(int16 var1, int16 var2)
118 if (var2 < 0)
120 var2 = (-var2) & (0xf);
121 var_out = var1 >> var2;
    [all...]
pvamrwbdecoder_basic_op_cequivalent.h 67 Performs the addition (var1+var2) with overflow control and saturation;
76 var2
88 __inline int16 add_int16(int16 var1, int16 var2)
92 L_sum = (int32) var1 + var2;
105 Performs the subtraction (var1+var2) with overflow control and satu-
115 var2
127 __inline int16 sub_int16(int16 var1, int16 var2)
131 L_diff = (int32) var1 - var2;
144 Performs the multiplication of var1 by var2 and gives a 16 bit result
146 mult_int16(var1,var2) = extract_l(L_shr((var1 times var2),15)) an
    [all...]
pvamrwb_math_op.cpp 34 shr_rnd() : Same as shr(var1,var2) but with rounding
68 mult_int16_r(var1,var2) = extract_l(L_shr(((var1 * var2) + 16384),15)) and
79 var2
94 int16 mult_int16_r(int16 var1, int16 var2)
98 L_product_arr = (int32) var1 * (int32) var2; /* product */
117 Same as shr(var1,var2) but with rounding. Saturate the result in case of|
119 - If var2 is greater than zero :
120 if (sub(shl_int16(shr(var1,var2),1),shr(var1,sub(var2,1)))
    [all...]
  /external/clang/test/CodeGenCXX/
mangle-extern-local.cpp 22 extern int var2, func2();
23 return var2 + func2();
constructor-direct-call.cpp 51 // CHECK-NEXT: call void @_ZN5Test3C1Ev(%class.Test3* %var2)
52 Test3 var2; local
57 // CHECK-NEXT: call void @_ZN5Test3C1ERKS_(%class.Test3* %var, %class.Test3* %var2)
58 var.Test3::Test3(var2);
mangle-local-class-names.cpp 30 SSSS VAR2(IVAR2);
54 SSSS VAR2(IVAR2);
74 SSSS VAR2(x);
  /external/clang/test/Sema/
attr-coldhot.c 7 int var2 __attribute__((__hot__)); // expected-warning{{'__hot__' attribute only applies to functions}} variable
  /external/clang/test/SemaCXX/
MicrosoftCompatibility-cxx98.cpp 7 ENUM var2 = (ENUM)3; variable
const-cast.cpp 25 char ***var2 = const_cast<cppp>(var); local
26 char ***const &var3 = var2;
49 char **var2 = const_cast<char**>(var); // expected-error {{const_cast from 'const char *volatile *const volatile *' to 'char **' is not allowed}} local
53 char ***&var4 = const_cast<cpppr>(&var2); // expected-error {{const_cast from rvalue to reference type 'cpppr'}}
55 char v = const_cast<char>(**var2); // expected-error {{const_cast to 'char', which is not a reference, pointer-to-object, or pointer-to-data-member}}
  /external/clang/test/ASTMerge/
var.c 2 // RUN: %clang_cc1 -emit-pch -o %t.2.ast %S/Inputs/var2.c
5 // CHECK: var2.c:2:9: error: external variable 'x1' declared with incompatible types in different translation units ('double *' vs. 'float **')
7 // CHECK: var2.c:3:5: error: external variable 'x2' declared with incompatible types in different translation units ('int' vs. 'double')
  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
basic_op.h 149 the range : 0xffff 8000 <= var2 <= 0x0000 7fff.
153 the range : 0xffff 8000 <= var2 <= 0x0000 7fff.
196 the range : 0xffff 8000 <= var2 <= 0x0000 7fff.
197 var2= 16 bit short signed integer (Word16) whose value falls in
205 L_var3 = 32-bit result of L_var3 + (L_var1 * var2)(Word32)
211 Word16 var2,
216 L_var3 = L_mac(L_var3, L_var1_hi, var2, pOverflow);
218 product = mult(L_var1_lo, var2, pOverflow);
253 Arithmetically shift the 16 bit input var1 left var2 positions.Zero fill
254 the var2 LSB of the result. If var2 is negative, arithmetically shif
    [all...]
  /external/llvm/test/CodeGen/X86/
misched-fusion.ll 38 %var = phi i32 [ 0, %entry ], [ %next.var, %loop1 ], [ %var2, %loop2 ]
43 %var2 = sub i32 %var, 1
44 %cond = icmp eq i32 %var2, 0
66 %var = phi i32 [ 0, %entry ], [ %next.var, %loop1 ], [ %var2, %loop2b ]
71 %var2 = sub i32 %var, 1
72 %cond = icmp slt i32 %var2, 0
93 %var = phi i32 [ 0, %entry ], [ %next.var, %loop1 ], [ %var2, %loop2b ]
98 %var2 = sub i32 %var, 1
99 %cond = icmp ult i32 %var2, %n
  /external/llvm/test/Transforms/ConstantMerge/
merge-both.ll 2 ; Test that in one run var3 is merged into var2 and var1 into var4.
11 @var2 = unnamed_addr constant %struct.foobar { i32 2 }
17 ; CHECK: @var2 = constant %struct.foobar { i32 2 }
34 call void @zed(%struct.foobar* @var1, %struct.foobar* @var2)
  /external/clang/test/CodeGen/
mangle.c 39 extern int foo5 __asm__("var2");
45 void foo6() __asm__("var2");
  /external/llvm/test/CodeGen/Thumb/
stack-coloring-without-frame-ptr.ll 10 %var2 = alloca %insert_iterator, align 4
19 %2 = bitcast %insert_iterator* %var2 to i8*
  /external/llvm/test/MC/Mips/
mips_gprel16.ll 14 @var2 = internal global i32 0, align 4
28 %0 = load i32* @var2, align 4

Completed in 3347 milliseconds

1 2 3 4 5 6