Searched refs:b5 (Results 1 - 25 of 106) sorted by relevance

12345

/external/Microsoft-GSL/tests/
H A Dbounds_tests.cpp85 static_bounds<dynamic_range> b5; variable
88 b5 = static_bounds<20>();
89 CHECK_THROWS_AS(b6 = b5, fail_fast);
90 b5 = static_bounds<34>();
91 b6 = b5;
93 CHECK(b5 == b6);
94 CHECK(b5.size() == b6.size());
/external/clang/test/CodeGen/
H A Dasm-variable.c13 register unsigned long long b5 asm("r9");
20 b5 = a5;
23 : "r"(addr), "r" (b0), "r" (b1), "r" (b2), "r" (b3), "r" (b4), "r" (b5));
38 register double b5 asm("xmm5");
49 b5 = a5;
54 : "r"(addr), "x" (b0), "x" (b1), "x" (b2), "x" (b3), "x" (b4), "x" (b5), "x" (b6),
/external/syslinux/gnu-efi/gnu-efi-3.0/lib/ia64/
H A Dpalproc.S48 mov loc3 = b5
87 mov b5 = in0;; // get the PalProcEntrypt from input
88 br.sptk b5 // Take the plunge.
96 mov b5 = loc3
130 mov loc3 = b5
146 mov b5 = in0;; // get the PalProcEntrypt from input
147 br.call.dpnt b0=b5;; // Take the plunge.
154 mov b5 = loc3
/external/clang/test/CXX/expr/expr.unary/expr.unary.op/
H A Dp6.cpp15 bool b5 = !F; variable
/external/libvpx/libvpx/vpx_dsp/ppc/
H A Dtranspose_vsx.h40 int16x8_t b0, b1, b2, b3, b4, b5, b6, b7; local
48 b5 = vec_mergel(v[2], v[6]);
58 // b5: 24 64 25 65 26 66 27 67
64 c2 = vec_mergeh(b1, b5);
65 c3 = vec_mergel(b1, b5);
H A Dhadamard_vsx.c22 const int16x8_t b5 = vec_sub(v[4], v[5]); local
31 const int16x8_t c5 = vec_add(b5, b7);
33 const int16x8_t c7 = vec_sub(b5, b7);
/external/llvm/test/MC/MachO/ARM/
H A Dllvm-objdump-macho.s13 # CHECK: 0: 80 b5 push {r7, lr}
16 # CHECK: 4: 80 b5 push {r7, lr}
/external/lzma/CPP/Common/
H A DMyGuidDef.h49 #define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
50 MY_EXTERN_C const GUID name = { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }
52 #define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
/external/tensorflow/tensorflow/examples/android/jni/
H A Drgb2yuv.cc88 const int b5 = (rgb & 0x1F); local
94 const int b8 = b5 << 3 | b5 >> 2;
/external/guava/guava-tests/test/com/google/common/base/
H A DCharsetsTest.java70 byte[] b5 = "スューー".getBytes(Charsets.US_ASCII);
75 assertTrue(Arrays.equals(b4, b5));
/external/libvpx/libvpx/vpx_dsp/x86/
H A Davg_intrin_avx2.c33 __m256i b5 = _mm256_sub_epi16(a4, a5); local
42 a5 = _mm256_add_epi16(b5, b7);
44 a7 = _mm256_sub_epi16(b5, b7);
54 b5 = _mm256_sub_epi16(a3, a7);
60 a4 = _mm256_unpacklo_epi16(b4, b5);
62 a6 = _mm256_unpackhi_epi16(b4, b5);
70 b5 = _mm256_unpacklo_epi32(a6, a7);
78 in[4] = _mm256_unpacklo_epi64(b4, b5);
79 in[5] = _mm256_unpackhi_epi64(b4, b5);
H A Davg_intrin_sse2.c156 __m128i b5 = _mm_sub_epi16(a4, a5); local
165 a5 = _mm_add_epi16(b5, b7);
167 a7 = _mm_sub_epi16(b5, b7);
177 b5 = _mm_sub_epi16(a3, a7);
183 a4 = _mm_unpacklo_epi16(b4, b5);
185 a6 = _mm_unpackhi_epi16(b4, b5);
193 b5 = _mm_unpacklo_epi32(a6, a7);
201 in[4] = _mm_unpacklo_epi64(b4, b5);
202 in[5] = _mm_unpackhi_epi64(b4, b5);
/external/clang/test/Sema/
H A Dstring-init.c19 wchar_t b5[] = L"a"; // No error. local
H A Dwarn-unreachable.c55 goto b5;
59 b5:
/external/clang/test/SemaCXX/
H A Dstring-init.cpp14 wchar_t b5[] = L"a"; // No error. local
H A Duser-defined-conversions.cpp68 Base b5 = ctfd; local
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
H A DHighamHall54StepInterpolator.java82 final double b5 = h * (-5.0/48.0 + theta2 * (-5.0/16.0 + theta * 5.0/12.0));
96 currentState[i] + b0 * yDot0 + b2 * yDot2 + b3 * yDot3 + b4 * yDot4 + b5 * yDot5;
/external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.enum/
H A Dp1.cpp59 B<long>::E b5; variable
61 void fb5() { b5 = decltype(b5)::e5; }
/external/guava/guava/src/com/google/common/io/
H A DLittleEndianDataInputStream.java138 byte b5 = readAndCheckByte();
143 return Longs.fromBytes(b8, b7, b6, b5, b4, b3, b2, b1);
/external/skia/tests/
H A Dskbug6653.cpp80 // clear color). Regardless, b5 will contain the oval that was just drawn, so diffing the
83 SkBitmap b5 = read_pixels(s4); local
89 uint32_t pixelB = *b5.getAddr32(x, y);
/external/skqp/tests/
H A Dskbug6653.cpp80 // clear color). Regardless, b5 will contain the oval that was just drawn, so diffing the
83 SkBitmap b5 = read_pixels(s4); local
89 uint32_t pixelB = *b5.getAddr32(x, y);
/external/clang/test/CXX/special/class.dtor/
H A Dp5-0x.cpp71 B5 b5; // expected-error {{deleted function}} variable
/external/clang/test/CXX/special/class.inhctor/
H A Dp1.cpp40 B b5{1,2,3,4,5}; // ok
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_mdls.h59 #define DEFINE_DLSID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) const DLSID name = { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }
/external/valgrind/none/tests/s390x/
H A Dicm.c27 char *b5="\x00\x00\xff\x00"; local
88 test(b5,208);

Completed in 697 milliseconds

12345