HomeSort by relevance Sort by last modified time
    Searched refs:f4 (Results 151 - 175 of 415) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/clang/test/Analysis/
malloc-overflow.c 27 void * f4(struct s4 *s) function
stack-addr-ps.cpp 60 const int *f4() { function
stream.c 35 void f4(void) { function
uninit-const.cpp 103 void f4(void) { function
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p6.cpp 46 constexpr ConstexprCtor<int, NonLiteral> f4() { return { 0, 0 }; } // expected-error {{never produces a constant expression}} expected-note {{non-constexpr constructor 'NonLiteral}} function
  /external/clang/test/CodeGen/
function-attributes.c 7 // CHECK: define signext i16 @f4(i32 %x) [[NUW]]
20 signed short f4(int x) { return x; } function
pointer-arithmetic.c 16 void *f4(void *a, int b) { return a - b; } function
  /external/clang/test/CodeGenCXX/
cxx11-exception-spec.cpp 57 void (*f4)() = &S<double>::f;
mangle-ms-back-references.cpp 12 const char *f4(const char* a, const char* b) { return 0; } function
13 // CHECK: "\01?f4@@YAPBDPBD0@Z"
mangle-neon-vectors.cpp 45 void f4(uint64x2_t v) { } function
  /external/clang/test/Parser/
attr-availability.c 15 void f4() __attribute__((availability(macosx,introduced=10.5), availability(ios,unavailable)));
  /external/clang/test/Sema/
attr-alias-elf.c 14 void f4() __attribute__((alias("g4")));
16 void h4() __attribute__((alias("f4")));
varargs.c 31 void f4(const char *msg, ...) { function
vector-cast.c 41 void f4() { function
  /external/clang/test/SemaCXX/
decl-expr-ambiguity.cpp 34 __typeof(*T()) f4(); // expected-warning {{empty parentheses interpreted as a function declaration}} expected-note {{replace parentheses with an initializer}}
function-extern-c.cpp 29 extern "C" A f4( void ); // expected-warning {{'f4' has C-linkage specified, but returns user-defined type 'A' which is incompatible with C}}
using-directive.cpp 123 void f4() { f2(1); } function
  /external/clang/test/SemaTemplate/
temp_explicit.cpp 97 void f4(X5<float&>::Inner2);
  /external/openssl/apps/
genrsa.c 99 unsigned long f4=RSA_F4; local
138 f4=3;
139 else if (strcmp(*argv,"-F4") == 0 || strcmp(*argv,"-f4") == 0)
140 f4=RSA_F4;
216 BIO_printf(bio_err," -f4 use F4 (0x10001) for the E value\n");
276 if(!BN_set_word(bn, f4) || !RSA_generate_key_ex(rsa, num, bn, &cb))
  /external/libunwind/tests/
Gia64-test-nat.c 425 unw_fpreg_t f4; local
472 if ((ret = unw_get_fpreg (c, UNW_IA64_FR + 4, &f4)) < 0)
473 panic ("%s: failed to read f4, error=%d\n", __FUNCTION__, ret);
478 if (f4.raw.bits[0] != 0 || f4.raw.bits[1] != 0x1fffe)
479 panic ("%s: f4=%016lx.%016lx instead of NaTVal!\n",
480 __FUNCTION__, f4.raw.bits[1], f4.raw.bits[0]);
484 if (f4.raw.bits[0] != r[0] || f4.raw.bits[1] != 0x1003e
    [all...]
  /external/valgrind/main/none/tests/s390x/
cu12.c 437 uint8_t f0[4], f4[4]; local
447 f4[0] = 0xf4; // valid
448 f4[1] = 0x7f; // invalid because outside [0x80 .. 0x8f]
449 f4[2] = 0x80; // valid
450 f4[3] = 0x80; // valid
451 run_test(buff, sizeof buff, f4, sizeof f4);
452 f4[1] = 0x90; // invalid because outside [0x80 .. 0x9f]
453 run_test(buff, sizeof buff, f4, sizeof f4);
    [all...]
cu12_1.c 437 uint8_t f0[4], f4[4]; local
447 f4[0] = 0xf4; // valid
448 f4[1] = 0x7f; // invalid because outside [0x80 .. 0x8f]
449 f4[2] = 0x80; // valid
450 f4[3] = 0x80; // valid
451 run_test(buff, sizeof buff, f4, sizeof f4);
452 f4[1] = 0x90; // invalid because outside [0x80 .. 0x9f]
453 run_test(buff, sizeof buff, f4, sizeof f4);
    [all...]
cu14.c 437 uint8_t f0[4], f4[4]; local
447 f4[0] = 0xf4; // valid
448 f4[1] = 0x7f; // invalid because outside [0x80 .. 0x8f]
449 f4[2] = 0x80; // valid
450 f4[3] = 0x80; // valid
451 run_test(buff, sizeof buff, f4, sizeof f4);
452 f4[1] = 0x90; // invalid because outside [0x80 .. 0x9f]
453 run_test(buff, sizeof buff, f4, sizeof f4);
    [all...]
cu14_1.c 437 uint8_t f0[4], f4[4]; local
447 f4[0] = 0xf4; // valid
448 f4[1] = 0x7f; // invalid because outside [0x80 .. 0x8f]
449 f4[2] = 0x80; // valid
450 f4[3] = 0x80; // valid
451 run_test(buff, sizeof buff, f4, sizeof f4);
452 f4[1] = 0x90; // invalid because outside [0x80 .. 0x9f]
453 run_test(buff, sizeof buff, f4, sizeof f4);
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ComputeTest.java 118 Float4 f4 = new Float4(); local
119 f4.x = 1.0f;
120 f4.y = 2.0f;
121 f4.x = 3.0f;
122 f4.w = 4.0f;
123 f4 = new Float4(1.0f, 2.0f, 3.0f, 4.0f);
124 assertTrue(f4.x == 1.0f);
125 assertTrue(f4.y == 2.0f);
126 assertTrue(f4.z == 3.0f);
127 assertTrue(f4.w == 4.0f)
    [all...]

Completed in 669 milliseconds

1 2 3 4 5 67 8 91011>>