HomeSort by relevance Sort by last modified time
    Searched defs:F2 (Results 101 - 125 of 266) sorted by null

1 2 3 45 6 7 8 91011

  /external/llvm/unittests/IR/
VerifierTest.cpp 72 Function *F2 = cast<Function>(M2.getOrInsertFunction("foo2", FTy));
79 CallInst::Create(F2,"call",Entry1);
82 F3->setPersonalityFn(F2);
  /external/swiftshader/third_party/LLVM/lib/Support/
FileUtilities.cpp 210 OwningPtr<MemoryBuffer> F2;
211 if (error_code ec = MemoryBuffer::getFile(FileB.c_str(), F2)) {
219 const char *File2Start = F2->getBufferStart();
221 const char *File2End = F2->getBufferEnd();
  /external/wpa_supplicant_8/src/crypto/
md5-internal.c 195 #define F2(x, y, z) F1(z, x, y)
234 MD5STEP(F2, a, b, c, d, in[1] + 0xf61e2562, 5);
235 MD5STEP(F2, d, a, b, c, in[6] + 0xc040b340, 9);
236 MD5STEP(F2, c, d, a, b, in[11] + 0x265e5a51, 14);
237 MD5STEP(F2, b, c, d, a, in[0] + 0xe9b6c7aa, 20);
238 MD5STEP(F2, a, b, c, d, in[5] + 0xd62f105d, 5);
239 MD5STEP(F2, d, a, b, c, in[10] + 0x02441453, 9);
240 MD5STEP(F2, c, d, a, b, in[15] + 0xd8a1e681, 14);
241 MD5STEP(F2, b, c, d, a, in[4] + 0xe7d3fbc8, 20);
242 MD5STEP(F2, a, b, c, d, in[9] + 0x21e1cde6, 5)
    [all...]
md4-internal.c 185 #define F2(x, y, z) ((x & y) | (x & z) | (y & z))
236 MD4STEP(F2, a, b, c, d, in[ 0] + 0x5a827999, 3);
237 MD4STEP(F2, d, a, b, c, in[ 4] + 0x5a827999, 5);
238 MD4STEP(F2, c, d, a, b, in[ 8] + 0x5a827999, 9);
239 MD4STEP(F2, b, c, d, a, in[12] + 0x5a827999, 13);
240 MD4STEP(F2, a, b, c, d, in[ 1] + 0x5a827999, 3);
241 MD4STEP(F2, d, a, b, c, in[ 5] + 0x5a827999, 5);
242 MD4STEP(F2, c, d, a, b, in[ 9] + 0x5a827999, 9);
243 MD4STEP(F2, b, c, d, a, in[13] + 0x5a827999, 13);
244 MD4STEP(F2, a, b, c, d, in[ 2] + 0x5a827999, 3)
    [all...]
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-frv/
fdpic2.s 4 .global F2
5 .type F2,@function
6 F2:
  /device/linaro/bootloader/edk2/Nt32Pkg/Library/PlatformBootManagerLib/
PlatformBootManager.c 332 EFI_INPUT_KEY F2;
350 // Map F2 to Boot Manager Menu
352 F2.ScanCode = SCAN_F2;
353 F2.UnicodeChar = CHAR_NULL;
355 EfiBootManagerAddKeyOptionVariable (NULL, (UINT16) BootOption.OptionNumber, 0, &F2, NULL);
372 PrintXY (10, 10, &White, &Black, L"F2 to enter Setup. ");
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Library/PlatformBootManagerLib/
PlatformBootManager.c 206 EFI_INPUT_KEY F2;
239 // Map F2 to Boot Manager Menu
241 F2.ScanCode = SCAN_F2;
242 F2.UnicodeChar = CHAR_NULL;
244 EfiBootManagerAddKeyOptionVariable (NULL, (UINT16) BootOption.OptionNumber, 0, &F2, NULL);
408 L"F2 to enter Boot Manager Menu.\n"
  /external/clang/test/Sema/
attr-aligned.c 56 array_with_overaligned_char F2;
57 char f2[__alignof__(F2) == 16 ? 1 : -1] = { 0 }; variable
  /external/clang/test/SemaCXX/
warn-enum-compare.cpp 9 enum Foo {F1, F2, F3};
  /external/flac/libFLAC/
md5.c 41 #define F2(x, y, z) F1(z, x, y)
80 MD5STEP(F2, a, b, c, d, in[1] + 0xf61e2562, 5);
81 MD5STEP(F2, d, a, b, c, in[6] + 0xc040b340, 9);
82 MD5STEP(F2, c, d, a, b, in[11] + 0x265e5a51, 14);
83 MD5STEP(F2, b, c, d, a, in[0] + 0xe9b6c7aa, 20);
84 MD5STEP(F2, a, b, c, d, in[5] + 0xd62f105d, 5);
85 MD5STEP(F2, d, a, b, c, in[10] + 0x02441453, 9);
86 MD5STEP(F2, c, d, a, b, in[15] + 0xd8a1e681, 14);
87 MD5STEP(F2, b, c, d, a, in[4] + 0xe7d3fbc8, 20);
88 MD5STEP(F2, a, b, c, d, in[9] + 0x21e1cde6, 5)
    [all...]
  /external/libchrome/base/
md5.cc 54 #define F2(x, y, z) F1(z, x, y)
92 MD5STEP(F2, a, b, c, d, in[1] + 0xf61e2562, 5);
93 MD5STEP(F2, d, a, b, c, in[6] + 0xc040b340, 9);
94 MD5STEP(F2, c, d, a, b, in[11] + 0x265e5a51, 14);
95 MD5STEP(F2, b, c, d, a, in[0] + 0xe9b6c7aa, 20);
96 MD5STEP(F2, a, b, c, d, in[5] + 0xd62f105d, 5);
97 MD5STEP(F2, d, a, b, c, in[10] + 0x02441453, 9);
98 MD5STEP(F2, c, d, a, b, in[15] + 0xd8a1e681, 14);
99 MD5STEP(F2, b, c, d, a, in[4] + 0xe7d3fbc8, 20);
100 MD5STEP(F2, a, b, c, d, in[9] + 0x21e1cde6, 5)
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/nv50/
nv50_formats.c 107 #define F2(c, p, n, r, g, b, a, t, s, u) \
230 F2(A, RGTC2_UNORM, NONE, R, G, xx, xx, UNORM, DXN2, T),
231 F2(A, RGTC2_SNORM, NONE, R, G, xx, xx, SNORM, DXN2, T),
252 F2(D, ETC2_RG11_UNORM, NONE, R, G, xx, xx, UNORM, EACX2, t),
253 F2(D, ETC2_RG11_SNORM, NONE, R, G, xx, xx, SNORM, EACX2, t),
299 F2(A, R32G32_FLOAT, RG32_FLOAT, R, G, xx, xx, FLOAT, R32_G32, IB),
300 F2(A, R32G32_UNORM, NONE, R, G, xx, xx, UNORM, R32_G32, T),
301 F2(A, R32G32_SNORM, NONE, R, G, xx, xx, SNORM, R32_G32, T),
322 F2(A, R16G16_FLOAT, RG16_FLOAT, R, G, xx, xx, FLOAT, R16_G16, IB),
323 F2(A, R16G16_UNORM, RG16_UNORM, R, G, xx, xx, UNORM, R16_G16, IC)
    [all...]
  /external/pdfium/third_party/lcms/src/
cmsmd5.c 59 #define F2(x, y, z) F1(z, x, y)
95 STEP(F2, a, b, c, d, in[1] + 0xf61e2562, 5);
96 STEP(F2, d, a, b, c, in[6] + 0xc040b340, 9);
97 STEP(F2, c, d, a, b, in[11] + 0x265e5a51, 14);
98 STEP(F2, b, c, d, a, in[0] + 0xe9b6c7aa, 20);
99 STEP(F2, a, b, c, d, in[5] + 0xd62f105d, 5);
100 STEP(F2, d, a, b, c, in[10] + 0x02441453, 9);
101 STEP(F2, c, d, a, b, in[15] + 0xd8a1e681, 14);
102 STEP(F2, b, c, d, a, in[4] + 0xe7d3fbc8, 20);
103 STEP(F2, a, b, c, d, in[9] + 0x21e1cde6, 5)
    [all...]
  /external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/JIT/
JITEventListenerTest.cpp 93 Function *F2 = buildFunction(M);
96 void *F2_addr = EE->getPointerToFunction(F2);
99 EE->freeMachineCodeForFunction(F2);
112 EXPECT_EQ(F2, Listener.EmittedEvents[1].F);
125 F2->eraseFromParent();
134 Function *F2 = buildFunction(M);
141 void *F2_addr = EE->getPointerToFunction(F2);
148 EE->freeMachineCodeForFunction(F2);
179 EXPECT_EQ(F2, Listener2.EmittedEvents[1].F);
193 EXPECT_EQ(F2, Listener3.EmittedEvents[0].F)
    [all...]
  /external/swiftshader/third_party/LLVM/unittests/Support/
Casting.cpp 118 const foo *F2 = dyn_cast<foo>(B2);
119 EXPECT_NE(F2, null_foo);
131 const foo *F2 = dyn_cast_or_null<foo>(B2);
132 EXPECT_NE(F2, null_foo);
  /frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/
UT_vector.java 32 Float2 F2 = s.get_f2();
33 if (F2.x != 1.0f || F2.y != 2.0f) {
36 F2.x = 2.99f;
37 F2.y = 3.99f;
38 s.set_f2(F2);
  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
UT_vector.java 47 Float2 F2 = s.get_f2();
48 if (F2.x != 1.0f || F2.y != 2.0f) {
51 F2.x = 2.99f;
52 F2.y = 3.99f;
53 s.set_f2(F2);
  /frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
UT_vector.java 49 Float2 F2 = s.get_f2();
50 if (F2.x != 1.0f || F2.y != 2.0f) {
53 F2.x = 2.99f;
54 F2.y = 3.99f;
55 s.set_f2(F2);
  /frameworks/rs/tests/java_api/RsTest_14/src/com/android/rs/test/
UT_vector.java 32 Float2 F2 = s.get_f2();
33 if (F2.x != 1.0f || F2.y != 2.0f) {
36 F2.x = 2.99f;
37 F2.y = 3.99f;
38 s.set_f2(F2);
  /frameworks/rs/tests/java_api/RsTest_16/src/com/android/rs/test/
UT_vector.java 32 Float2 F2 = s.get_f2();
33 if (F2.x != 1.0f || F2.y != 2.0f) {
36 F2.x = 2.99f;
37 F2.y = 3.99f;
38 s.set_f2(F2);
  /prebuilts/go/darwin-x86/test/import2.dir/
import2.go 41 func F2() func() func() int
  /prebuilts/go/linux-x86/test/import2.dir/
import2.go 41 func F2() func() func() int
  /tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/
ZipField.java 36 * a subclass of {@code ZipField}, {@code F2} for the 2-byte field and {@code F4} for the 4-byte
51 * ZipField.F2 firstField = new ZipField.F2(0, "First field");
313 static class F2 extends ZipField {
322 F2(int offset, @Nonnull String name, ZipFieldInvariant... invariants) {
333 F2(int offset, long expected, @Nonnull String name) {
  /device/linaro/bootloader/edk2/ArmPkg/Library/PlatformBootManagerLib/
PlatformBm.c 398 EFI_INPUT_KEY F2;
411 // Map F2 and ESC to Boot Manager Menu
413 F2.ScanCode = SCAN_F2;
414 F2.UnicodeChar = CHAR_NULL;
420 NULL, (UINT16) BootOption.OptionNumber, 0, &F2, NULL
  /device/linaro/bootloader/edk2/ArmVirtPkg/Library/PlatformBootManagerLib/
PlatformBm.c 529 EFI_INPUT_KEY F2;
542 // Map F2 and ESC to Boot Manager Menu
544 F2.ScanCode = SCAN_F2;
545 F2.UnicodeChar = CHAR_NULL;
551 NULL, (UINT16) BootOption.OptionNumber, 0, &F2, NULL

Completed in 465 milliseconds

1 2 3 45 6 7 8 91011