HomeSort by relevance Sort by last modified time
    Searched refs:Func (Results 51 - 75 of 181) sorted by null

1 23 4 5 6 7 8

  /external/openssl/crypto/sha/asm/
sha512-s390x.pl 99 $Func="sha${label}_block_data_order";
233 .globl $Func
234 .type $Func,\@function
235 $Func:
312 .size $Func,.-$Func
  /external/clang/test/SemaCXX/
abstract.cpp 53 typedef void (*Func)(C); // expected-error {{parameter type 'C' is an abstract class}}
54 void t6(Func);
friend.cpp 36 void Func(int x);
40 friend void ::test2::foo::Func(int x);
member-expr.cpp 188 void func(); // expected-note {{'func' declared here}}
196 t->func(); // expected-error-re 2 {{member reference type 'PR15045::bar' is not a pointer$}} \
205 e->Func(); // expected-error {{member reference type 'PR15045::bar' is not a pointer; maybe you meant to use '.'?}} \
206 // expected-error {{no member named 'Func' in 'PR15045::bar'; did you mean 'func'?}}
210 f->func(); // expected-error-re {{member reference type 'PR15045::bar' is not a pointer$}}
  /external/llvm/include/llvm/IR/
Instructions.h     [all...]
  /external/clang/unittests/ASTMatchers/Dynamic/
RegistryTest.cpp 157 Matcher<Decl> Func =
163 EXPECT_TRUE(matches("void f(){};", Func));
164 EXPECT_FALSE(matches("void f();", Func));
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMELFStreamer.cpp 192 void EmitThumbFunc(MCSymbol *Func) {
195 getAssembler().setIsThumbFunc(Func);
197 MCSymbolData &SD = getAssembler().getOrCreateSymbolData(*Func);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
gen6_depthstencil.c 87 ds->ds2.depth_test_func = intel_translate_compare_func(ctx->Depth.Func);
  /external/llvm/include/llvm/MC/
MCELFStreamer.h 58 virtual void EmitThumbFunc(MCSymbol *Func);
MCAssembler.h 964 bool isThumbFunc(const MCSymbol *Func) const {
965 return ThumbFuncs.count(Func);
969 void setIsThumbFunc(const MCSymbol *Func) { ThumbFuncs.insert(Func); }
    [all...]
  /external/llvm/lib/MC/
MCNullStreamer.cpp 46 virtual void EmitThumbFunc(MCSymbol *Func) {}
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 111 ComparableFunction(Function *Func, DataLayout *TD)
112 : Func(Func), Hash(profileFunction(Func)), TD(TD) {}
114 Function *getFunc() const { return Func; }
121 assert(Func &&
123 Func = NULL;
128 : Func(NULL), Hash(Hash), TD(NULL) {}
130 AssertingVH<Function> Func;
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen6_depthstencil.c 87 ds->ds2.depth_test_func = intel_translate_compare_func(ctx->Depth.Func);
  /external/llvm/lib/IR/
Core.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 270 LibFunc::Func Func;
272 LibInfo->getLibFunc(F->getName(), Func) &&
273 LibInfo->hasOptimizedCodeGen(Func)) {
282 switch (Func) {
  /external/llvm/lib/Transforms/Scalar/
StructurizeCFG.cpp 164 Function *Func;
461 PhiInserter.AddAvailableValue(&Func->getEntryBlock(), Default);
538 Updater.AddAvailableValue(&Func->getEntryBlock(), Undef);
631 LLVMContext &Context = Func->getContext();
635 Func, Insert);
834 Updater.AddAvailableValue(&Func->getEntryBlock(), Undef);
849 Func = R->getEntry()->getParent();
  /external/chromium_org/third_party/mesa/src/include/CL/
cl.hpp 699 template <typename Func, typename T>
700 struct GetInfoHelper<Func, VECTOR_CLASS<T> >
702 static cl_int get(Func f, cl_uint name, VECTOR_CLASS<T>* param)
722 template <typename Func>
723 struct GetInfoHelper<Func, VECTOR_CLASS<char *> >
726 get(Func f, cl_uint name, VECTOR_CLASS<char *>* param)
738 template <typename Func>
739 struct GetInfoHelper<Func, STRING_CLASS>
741 static cl_int get(Func f, cl_uint name, STRING_CLASS* param)
762 template <typename Func> \
    [all...]
  /external/mesa3d/include/CL/
cl.hpp 699 template <typename Func, typename T>
700 struct GetInfoHelper<Func, VECTOR_CLASS<T> >
702 static cl_int get(Func f, cl_uint name, VECTOR_CLASS<T>* param)
722 template <typename Func>
723 struct GetInfoHelper<Func, VECTOR_CLASS<char *> >
726 get(Func f, cl_uint name, VECTOR_CLASS<char *>* param)
738 template <typename Func>
739 struct GetInfoHelper<Func, STRING_CLASS>
741 static cl_int get(Func f, cl_uint name, STRING_CLASS* param)
762 template <typename Func> \
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nv04_state_raster.c 85 get_blend_func(unsigned func)
87 switch (func) {
153 nv04->ctrl[0] |= get_comparison_op(ctx->Depth.Func) << 16;
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_atom_depth.c 49 st_compare_func_to_pipe(GLenum func)
60 assert(func >= GL_NEVER);
61 assert(func <= GL_ALWAYS);
62 return func - GL_NEVER;
70 gl_stencil_op_to_pipe(GLenum func)
72 switch (func) {
108 dsa->depth.func = st_compare_func_to_pipe(ctx->Depth.Func);
113 dsa->stencil[0].func = st_compare_func_to_pipe(ctx->Stencil.Function[0]);
124 dsa->stencil[1].func = st_compare_func_to_pipe(ctx->Stencil.Function[back])
    [all...]
  /external/llvm/lib/Target/Mips/
MipsOptimizeMathLibCalls.cpp 91 LibFunc::Func LibFunc;
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv04_state_raster.c 85 get_blend_func(unsigned func)
87 switch (func) {
153 nv04->ctrl[0] |= get_comparison_op(ctx->Depth.Func) << 16;
  /external/mesa3d/src/mesa/state_tracker/
st_atom_depth.c 49 st_compare_func_to_pipe(GLenum func)
60 assert(func >= GL_NEVER);
61 assert(func <= GL_ALWAYS);
62 return func - GL_NEVER;
70 gl_stencil_op_to_pipe(GLenum func)
72 switch (func) {
108 dsa->depth.func = st_compare_func_to_pipe(ctx->Depth.Func);
113 dsa->stencil[0].func = st_compare_func_to_pipe(ctx->Stencil.Function[0]);
124 dsa->stencil[1].func = st_compare_func_to_pipe(ctx->Stencil.Function[back])
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDILPeepholeOptimizer.cpp 660 Function *Func =
669 CallInst *CI = CallInst::Create(Func, Operands, "BitInsertOpt");
825 Function *Func =
834 CallInst *CI = CallInst::Create(Func, Operands, "ByteExtractOpt");
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchersMacros.h 321 internal::TypeTraverseMatcher, ReturnTypesF>::Func MatcherName
333 internal::TypeLocTraverseMatcher, ReturnTypesF>::Func MatcherName##Loc; \

Completed in 1465 milliseconds

1 23 4 5 6 7 8