HomeSort by relevance Sort by last modified time
    Searched defs:f1 (Results 401 - 425 of 780) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
mergesort.c 111 unsigned char *f1, *f2, *t, *b, *tp2, *q, *l1, *l2;
145 f1 = l2;
150 while (f1 < l1 && f2 < l2) {
151 if ((*cmp)(f1, f2) <= 0) {
153 b = f1, t = l1;
156 q = f1;
199 if (q == f1) {
202 ICOPY_ELT(f1, tp2, i);
205 CCOPY_ELT(f1, tp2, i);
209 ICOPY_LIST(f1, tp2, b)
279 unsigned char *f1, *f2, *s, *l2, *last, *p2; local
    [all...]
  /external/chromium_org/tools/json_schema_compiler/test/
idl_schemas_unittest.cc 168 FooType f1; local
169 f1.x = 3;
170 scoped_ptr<base::DictionaryValue> serialized_foo = f1.ToValue();
173 EXPECT_EQ(f1.x, f2.x);
  /external/clang/test/Analysis/
casts.c 34 void f1(struct s **pval) { function
ptr-arith.c 6 void f1() { function
uninit-const.cpp 119 void f1(void) { function
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p6.cpp 43 constexpr ConstexprCtor<> f1() { return {}; } // ok function
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
p3.cpp 62 constexpr int (*f1)(char) = &f; member in namespace:PR13293
64 static_assert(S<char>::p == f1, "");
  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p2-0x.cpp 56 void f1(T t) { function in struct:N0::X0
92 void f1(void *);
134 template<> void N0::X0<void*>::f1(void *) { } function in class:N0::X0
137 xvp.f1(vp);
141 template<> void X0<volatile void>::f1(void *) { } // expected-error{{no function template matches}} function in class:N0::X0
143 template<> void X0<const volatile void*>::f1(const volatile void*);
147 x0.f1(cvp); // okay: we've explicitly specialized
  /external/clang/test/CodeGen/
decl.c 89 struct test8s { int f0; char f1; } test8g = {}; member in struct:test8s
exprs.c 72 unsigned f1(void) { function
function-attributes.c 4 // CHECK: define zeroext i8 @f1(i32 %x) [[NUW]]
14 unsigned char f1(int x) { return x; } function
  /external/clang/test/CodeGenCXX/
debug-info-class.cpp 69 void f1() { function
implicit-copy-constructor.cpp 92 void f1(S a) { function in namespace:test4
temp-order.cpp 57 static unsigned f1(bool val = true) { function
166 print("f1", f1());
167 if (f1() != ORDER4(3, 5, 7, 2))
template-instantiation.cpp 190 void f1() { S<1> s; } function in struct:PR10666::S
visibility-inlines-hidden.cpp 8 void __attribute__((visibility("default"))) f1() { } function in struct:X0
19 void __attribute__((visibility("default"))) f1() { } function in struct:X1
41 x0->f1();
51 x1->f1();
vtable-linkage.cpp 171 virtual void f1();
174 void G<int>::f1() {} function in class:G
  /external/clang/test/Sema/
attr-aligned.c 52 char f1[__alignof__(array_with_align_attr) == 16 ? 1 : -1] = { 0 }; variable
attr-deprecated.c 40 struct foo f1 = { .x = 17 }; // expected-warning {{'x' is deprecated}} local
complex-int.c 63 int f1[(2.0+3.0i)*(5.0+7.0i) == 29.0i-11.0 ? 1 : -1]; variable
function-redecl.c 33 int f1; local
35 void f1(double);
37 void f1(double); // expected-note{{previous declaration is here}}
39 int f1(int); // expected-error{{conflicting types for 'f1'}}
private-extern.c 27 void f1() { function
string-init.c 39 long f1[] = "a"; // expected-error{{array initializer must be an initializer list}} local
  /external/clang/test/SemaCXX/
address-of-temporary.cpp 9 void f1() { (void)&X(1); } // expected-warning{{taking the address of a temporary object}} function
decl-expr-ambiguity.cpp 85 const foo* f1 = 0; // expected-error {{must use 'class' tag to refer to type 'foo' in this scope}} local

Completed in 3336 milliseconds

<<11121314151617181920>>