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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Modules/Inputs/normal-module-map/
b1.h 1 int b1; variable
  /external/clang/test/Modules/Inputs/
def-include.h 12 int b1; member in struct:B
  /dalvik/dx/tests/023-code-exception-table/
small-class.txt 43 b1 # 0000: return
44 b1 # 0001: return
45 b1 # 0002: return
  /external/clang/test/CodeGenCXX/
2009-04-23-bool2.cpp 5 bool b1 : 1; member in struct:F
13 if (int (f.b1) != 1)
destructor-debug-info.cpp 17 B b1; local
18 fn (b1);
21 // Check there is a line number entry for line 19 where b1 is destructed.
move-assignment.cpp 17 B b1, b2; local
18 b1 = static_cast<B&&>(b2);
  /dalvik/dx/tests/021-code-attrib-LineNumberTable/
small-class.txt 40 b1 # 0000: return
41 b1 # 0001: return
  /dalvik/dx/tests/017-method-attrib-Code/
small-class.txt 39 b1 # 0000: return
  /external/clang/test/CodeGen/
ppc64-inline-asm.c 3 _Bool test_wc_i1(_Bool b1, _Bool b2) {
5 asm("crand %0, %1, %2" : "=wc"(o) : "wc"(b1), "wc"(b2) : );
7 // CHECK-LABEL: define zeroext i1 @test_wc_i1(i1 zeroext %b1, i1 zeroext %b2)
8 // CHECK: call i8 asm "crand $0, $1, $2", "=^wc,^wc,^wc"(i1 %b1, i1 %b2)
11 int test_wc_i32(int b1, int b2) {
13 asm("crand %0, %1, %2" : "=wc"(o) : "wc"(b1), "wc"(b2) : );
15 // CHECK-LABEL: signext i32 @test_wc_i32(i32 signext %b1, i32 signext %b2)
16 // CHECK: call i32 asm "crand $0, $1, $2", "=^wc,^wc,^wc"(i32 %b1, i32 %b2)
19 unsigned char test_wc_i8(unsigned char b1, unsigned char b2) {
21 asm("crand %0, %1, %2" : "=wc"(o) : "wc"(b1), "wc"(b2) : )
    [all...]
block-3.c 18 B b1 = ^(Z z1) { return 1; }; local
19 b1(z1);
ms-anonymous-struct.c 8 int b1; member in struct:nested1
49 var.b1;
88 var->b1;
  /external/clang/test/CXX/class.access/class.protected/
p1-cxx11.cpp 17 B b1; local
18 B b2 = b1;
19 b1 = b2;
  /dalvik/dx/tests/022-code-attrib-LocalVariableTable/
small-class.txt 44 b1 # 0000: return
45 b1 # 0001: return
  /external/clang/test/Sema/
for.c 4 void b1 (void) { for (void (*f) (void);;); } function
  /external/clang/test/SemaCXX/
warn-memsize-comparison.cpp 18 char b1[80], b2[80]; local
19 if (memset(b1, 0, sizeof(b1) != 0)) {} // \
23 if (memset(b1, 0, sizeof(b1)) != 0) {}
25 if (memmove(b1, b2, sizeof(b1) == 0)) {} // \
29 if (memmove(b1, b2, sizeof(b1)) == 0) {}
31 if (memcpy(b1, b2, sizeof(b1) < 0)) {} //
    [all...]
  /dalvik/dx/tests/002-minimal-valid/
small-class.txt 45 b1 # 0004: return
  /external/libnfc-nxp/Linux_x86/
phOsalNfc_Utils.c 40 int8_t *b1 =(int8_t *)src; local
47 for(;((n>0)&&(diff==0));n--,b1++,b2++)
49 diff = *b1 - *b2;
  /bionic/libc/include/
strings.h 47 #define bcopy(b1, b2, len) \
48 (void)(__builtin___memmove_chk((b2), (b1), (len), __bos0(b2)))
52 #define bcopy(b1, b2, len) (void)(__builtin_memmove((b2), (b1), (len)))
  /development/ndk/platforms/android-L/include/
strings.h 47 #define bcopy(b1, b2, len) \
48 (void)(__builtin___memmove_chk((b2), (b1), (len), __bos0(b2)))
52 #define bcopy(b1, b2, len) (void)(__builtin_memmove((b2), (b1), (len)))
  /external/clang/test/SemaTemplate/
instantiate-default-assignment-operator.cpp 15 B b1, b2; local
16 b1 = b2;
instantiation-default-3.cpp 19 void test(B<int> *b1, B<float> *b2) {
20 b1->foo();
  /external/compiler-rt/test/BlocksRuntime/
dispatch_call_Block_with_release.c 24 void (^b1)(void) = ^{ callsomething("argc is %d\n", argc); };
27 dispatch_call_Block_with_release2(Block_copy(b1));
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
dct.c 17 int a1, b1, c1, d1; local
24 b1 = ((ip[1] + ip[2]) * 8);
28 op[0] = a1 + b1;
29 op[2] = a1 - b1;
43 b1 = ip[4] + ip[8];
47 op[0] = ( a1 + b1 + 7)>>4;
48 op[8] = ( a1 - b1 + 7)>>4;
67 int a1, b1, c1, d1; local
78 b1 = ((ip[0] - ip[2]) * 4);
81 op[1] = b1 + c1
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
dct.c 17 int a1, b1, c1, d1; local
24 b1 = ((ip[1] + ip[2]) * 8);
28 op[0] = a1 + b1;
29 op[2] = a1 - b1;
43 b1 = ip[4] + ip[8];
47 op[0] = ( a1 + b1 + 7)>>4;
48 op[8] = ( a1 - b1 + 7)>>4;
67 int a1, b1, c1, d1; local
78 b1 = ((ip[0] - ip[2]) * 4);
81 op[1] = b1 + c1
    [all...]
  /external/chromium_org/base/win/
scoped_bstr_unittest.cc 36 ScopedBstr b1(kTestString1);
37 EXPECT_EQ(test1_len, b1.Length());
38 EXPECT_EQ(test1_len * sizeof(kTestString1[0]), b1.ByteLength());
41 b1.Swap(b2);
43 EXPECT_EQ(0, b1.Length());
63 EXPECT_TRUE(b1.Allocate(kTestString2) != NULL);
64 EXPECT_EQ(test2_len, b1.Length());
65 b1.SetByteLen((test2_len - 1) * sizeof(kTestString2[0]));
66 EXPECT_EQ(test2_len - 1, b1.Length());

Completed in 1247 milliseconds

1 2 3 4 5 6 7 8 91011>>