Home
last modified time | relevance | path

Searched defs:F (Results 1 – 25 of 1620) sorted by relevance

12345678910>>...65

/external/v8/src/runtime/
Druntime.h39 #define FOR_EACH_INTRINSIC_ARRAY(F) \ argument
62 #define FOR_EACH_INTRINSIC_ATOMICS(F) \ argument
78 #define FOR_EACH_INTRINSIC_CLASSES(F) \ argument
95 #define FOR_EACH_INTRINSIC_COLLECTIONS(F) \ argument
124 #define FOR_EACH_INTRINSIC_COMPILER(F) \ argument
136 #define FOR_EACH_INTRINSIC_DATE(F) \ argument
141 #define FOR_EACH_INTRINSIC_DEBUG(F) \ argument
204 #define FOR_EACH_INTRINSIC_ERROR(F) F(ErrorToString, 1, 1) argument
206 #define FOR_EACH_INTRINSIC_FORIN(F) \ argument
212 #define FOR_EACH_INTRINSIC_INTERPRETER(F) \ argument
[all …]
/external/google-breakpad/src/testing/include/gmock/
Dgmock-generated-function-mockers.h64 typedef R F(); typedef
84 typedef R F(A1); typedef
105 typedef R F(A1, A2); typedef
126 typedef R F(A1, A2, A3); typedef
148 typedef R F(A1, A2, A3, A4); typedef
171 typedef R F(A1, A2, A3, A4, A5); typedef
195 typedef R F(A1, A2, A3, A4, A5, A6); typedef
220 typedef R F(A1, A2, A3, A4, A5, A6, A7); typedef
245 typedef R F(A1, A2, A3, A4, A5, A6, A7, A8); typedef
270 typedef R F(A1, A2, A3, A4, A5, A6, A7, A8, A9); typedef
[all …]
/external/clang/test/Analysis/
Dsimple-stream-checks.c6 FILE *F = fopen("myfile.txt", "w"); in checkDoubleFClose() local
18 FILE *F = fopen("myfile.txt", "w"); in checkLeak() local
30 FILE *F = fopen("myfile.txt", "w"); in checkLeakFollowedByAssert() local
40 FILE *F = fopen("myfile.txt", "w"); in CloseOnlyOnValidFileHandle() local
47 FILE *F = fopen("myfile.txt", "w"); in leakOnEnfOfPath1() local
51 FILE *F = fopen("myfile.txt", "w"); in leakOnEnfOfPath2() local
56 FILE *F = fopen("myfile.txt", "w"); in leakOnEnfOfPath3() local
62 FILE *F = fopen("myfile.txt", "w"); in SymbolEscapedThroughFunctionCall() local
69 FILE *F = fopen("myfile.txt", "w"); in SymbolEscapedThroughAssignmentToGloabl() local
75 FILE *F = fopen("myfile.txt", "w"); in SymbolDoesNotEscapeThoughStringAPIs() local
[all …]
/external/libcxx/test/std/numerics/rand/rand.util/rand.util.canonical/
Dgenerate_canonical.pass.cpp22 typedef float F; in main() typedef
29 typedef float F; in main() typedef
36 typedef float F; in main() typedef
43 typedef float F; in main() typedef
50 typedef float F; in main() typedef
58 typedef double F; in main() typedef
65 typedef double F; in main() typedef
72 typedef double F; in main() typedef
82 typedef double F; in main() typedef
92 typedef double F; in main() typedef
/external/llvm/include/llvm/IR/
DInstIterator.h126 inline inst_iterator inst_begin(Function *F) { return inst_iterator(*F); } in inst_begin()
127 inline inst_iterator inst_end(Function *F) { return inst_iterator(*F, true); } in inst_end()
128 inline inst_range instructions(Function *F) { in instructions()
131 inline const_inst_iterator inst_begin(const Function *F) { in inst_begin()
134 inline const_inst_iterator inst_end(const Function *F) { in inst_end()
137 inline const_inst_range instructions(const Function *F) { in instructions()
140 inline inst_iterator inst_begin(Function &F) { return inst_iterator(F); } in inst_begin()
141 inline inst_iterator inst_end(Function &F) { return inst_iterator(F, true); } in inst_end()
142 inline inst_range instructions(Function &F) { in instructions()
145 inline const_inst_iterator inst_begin(const Function &F) { in inst_begin()
[all …]
/external/ltp/testcases/kernel/hotplug/memory_hotplug/
Ddebug.h12 #define DCALL(F,X) if (_Developer_Debug & DBG_##F) X argument
13 #define DPRINTF(F,X) if (_Developer_Debug & DBG_##F) _dprintf X argument
15 #define DENTER(F) DPRINTF(F, ("%s() entered.\n",fname)) argument
16 #define DEXIT(F) DPRINTF(F, ("%s() exiting.\n",fname)) argument
17 #define DEXIT_STATUS(F,S) \ argument
44 #define DPRINTF(F,X) argument
46 #define DENTER(F) argument
47 #define DEXIT(F) argument
48 #define DEXIT_STATUS(F,S) argument
/external/llvm/include/llvm/Analysis/
DTargetLibraryInfo.h71 void setState(LibFunc::Func F, AvailabilityState State) { in setState()
75 AvailabilityState getState(LibFunc::Func F) const { in getState()
126 void setUnavailable(LibFunc::Func F) { in setUnavailable()
131 void setAvailable(LibFunc::Func F) { in setAvailable()
137 void setAvailableWithName(LibFunc::Func F, StringRef Name) { in setAvailableWithName()
162 bool isFunctionVectorizable(StringRef F, unsigned VF) const { in isFunctionVectorizable()
176 bool isFunctionScalarizable(StringRef F, unsigned &VF) const { in isFunctionScalarizable()
217 bool getLibFunc(StringRef funcName, LibFunc::Func &F) const { in getLibFunc()
221 bool getLibFunc(const Function &FDecl, LibFunc::Func &F) const { in getLibFunc()
226 bool has(LibFunc::Func F) const { in has()
[all …]
/external/llvm/lib/Transforms/Utils/
DBuildLibCalls.cpp42 static bool setDoesNotAccessMemory(Function &F) { in setDoesNotAccessMemory()
50 static bool setOnlyReadsMemory(Function &F) { in setOnlyReadsMemory()
58 static bool setOnlyAccessesArgMemory(Function &F) { in setOnlyAccessesArgMemory()
66 static bool setDoesNotThrow(Function &F) { in setDoesNotThrow()
74 static bool setDoesNotCapture(Function &F, unsigned n) { in setDoesNotCapture()
82 static bool setOnlyReadsMemory(Function &F, unsigned n) { in setOnlyReadsMemory()
90 static bool setDoesNotAlias(Function &F, unsigned n) { in setDoesNotAlias()
98 static bool setNonNull(Function &F, unsigned n) { in setNonNull()
109 bool llvm::inferLibFuncAttributes(Function &F, const TargetLibraryInfo &TLI) { in inferLibFuncAttributes()
728 if (const Function *F = dyn_cast<Function>(StrLen->stripPointerCasts())) in emitStrLen() local
[all …]
/external/spirv-llvm/lib/SPIRV/
DOCLTypeToSPIRV.cpp82 for (auto &F:Module.functions()) in runOnModule() local
88 Function *F = *WorkSet.begin(); in runOnModule() local
106 OCLTypeToSPIRV::addWork(Function *F) { in addWork()
125 getArgIndex(Function *F, Value *V) { in getArgIndex()
136 getArg(Function *F, unsigned I) { in getArg()
145 OCLTypeToSPIRV::adaptFunction(Function *F) { in adaptFunction()
182 OCLTypeToSPIRV::getArgAccessQualifierMetadata(Function *F) { in getArgAccessQualifierMetadata()
187 OCLTypeToSPIRV::getKernelMetadata(Function *F) { in getKernelMetadata()
205 OCLTypeToSPIRV::getArgMetadata(Function *F, const std::string &MDName) { in getArgMetadata()
227 OCLTypeToSPIRV::getArgBaseTypeMetadata(Function *F) { in getArgBaseTypeMetadata()
[all …]
/external/clang/test/CodeGen/
D2007-04-05-PackedBitFields-2.c6 struct pck F { struct
12 struct F f1; argument
/external/v8/tools/clang/plugins/tests/
Dvirtual_specifiers.cpp27 void F() OVERRIDE {} in F() function in CorrectOverride
33 void F() FINAL {} in F() function in CorrectFinal
40 void F() {} in F() function in MissingOverride
47 virtual void F() OVERRIDE {} in F() function in VirtualAndOverride
53 virtual void F() FINAL {} in F() function in VirtualAndFinal
59 virtual void F() OVERRIDE FINAL {} in F() function in VirtualAndOverrideFinal
65 void F() OVERRIDE FINAL {} in F() function in OverrideAndFinal
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DInstIterator.h128 inline inst_iterator inst_begin(Function *F) { return inst_iterator(*F); } in inst_begin()
129 inline inst_iterator inst_end(Function *F) { return inst_iterator(*F, true); } in inst_end()
130 inline const_inst_iterator inst_begin(const Function *F) { in inst_begin()
133 inline const_inst_iterator inst_end(const Function *F) { in inst_end()
136 inline inst_iterator inst_begin(Function &F) { return inst_iterator(F); } in inst_begin()
137 inline inst_iterator inst_end(Function &F) { return inst_iterator(F, true); } in inst_end()
138 inline const_inst_iterator inst_begin(const Function &F) { in inst_begin()
141 inline const_inst_iterator inst_end(const Function &F) { in inst_end()
/external/libcxx/test/std/containers/associative/map/
DPR28469_undefined_behavior_segfault.sh.cpp23 struct F { struct
25 F() { m[42] = &dummy; } in F() argument
/external/v8/tools/clang/rewrite_to_chrome_style/tests/
Dtemplate-expected.cc26 void F() { in F() function
34 void F() { in F() function
43 void F(int x) {} in F() function
84 void F(T) {} in F() function
105 static void F(T) {} in F() function
126 static void F(T) {} in F() function
131 void F(T x) { in F() function
156 void Class<T>::F(int data_size){}; in F() function in blink::test_unnamed_arg::Class
/external/libmicrohttpd/src/include/
Dautoinit_funcs.h142 #define W32_FPTR_IN_SEG(S,F) \ argument
159 #define W32_REG_INIT_C_USER(F) W32_FPTR_IN_SEG(W32_SEG_INIT_C_USER,F) argument
160 #define W32_REG_INIT_C_LIB(F) W32_FPTR_IN_SEG(W32_SEG_INIT_C_LIB,F) argument
161 #define W32_REG_INIT_CXX_USER(F) W32_FPTR_IN_SEG(W32_SEG_INIT_CXX_USER,F) argument
162 #define W32_REG_INIT_CXX_LIB(F) W32_FPTR_IN_SEG(W32_SEG_INIT_CXX_LIB,F) argument
173 #define W32_REGISTER_INIT(F) W32_REG_INIT_CXX_LIB(F) argument
175 #define W32_REGISTER_INIT(F) W32_REG_INIT_CXX_USER(F) argument
179 #define W32_REGISTER_INIT(F) W32_REG_INIT_C_LIB(F) argument
181 #define W32_REGISTER_INIT(F) W32_REG_INIT_C_USER(F) argument
/external/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonMCInstrInfo.cpp170 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; in getAccessSize() local
178 uint64_t const F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; in getBitCount() local
185 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; in getCExtOpNum() local
251 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; in getExtendableOp() local
269 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; in getExtentAlignment() local
275 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; in getExtentBits() local
283 uint64_t const F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; in getMaxValue() local
298 uint64_t const F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; in getMinValue() local
316 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; in getNewValueOp() local
322 uint64_t const F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; in getNewValueOperand() local
[all …]
/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/
Dtolower_1.pass.cpp31 typedef std::ctype_byname<char> F; in main() typedef
47 typedef std::ctype_byname<char> F; in main() typedef
64 typedef std::ctype_byname<wchar_t> F; in main() typedef
81 typedef std::ctype_byname<wchar_t> F; in main() typedef
Dtoupper_1.pass.cpp32 typedef std::ctype_byname<char> F; in main() typedef
49 typedef std::ctype_byname<char> F; in main() typedef
66 typedef std::ctype_byname<wchar_t> F; in main() typedef
83 typedef std::ctype_byname<wchar_t> F; in main() typedef
Dtolower_many.pass.cpp32 typedef std::ctype_byname<char> F; in main() typedef
50 typedef std::ctype_byname<char> F; in main() typedef
68 typedef std::ctype_byname<wchar_t> F; in main() typedef
86 typedef std::ctype_byname<wchar_t> F; in main() typedef
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DConstantsScanner.h39 inline constant_iterator(const Function *F) : InstI(inst_begin(F)), OpIdx(0) { in constant_iterator()
46 inline constant_iterator(const Function *F, bool) // end ctor in constant_iterator()
83 inline constant_iterator constant_begin(const Function *F) { in constant_begin()
87 inline constant_iterator constant_end(const Function *F) { in constant_end()
/external/llvm/lib/Target/Mips/
DMips16HardFloat.cpp106 static FPParamVariant whichFPParamVariantNeeded(Function &F) { in whichFPParamVariantNeeded()
157 static bool needsFPStubFromParams(Function &F) { in needsFPStubFromParams()
171 static bool needsFPReturnHelper(Function &F) { in needsFPReturnHelper()
181 static bool needsFPHelperFromSig(Function &F) { in needsFPHelperFromSig()
261 static void assureFPCallStub(Function &F, Module *M, in assureFPCallStub()
377 static bool isIntrinsicInline(Function *F) { in isIntrinsicInline()
385 static bool fixupFPReturnAndCall(Function &F, Module *M, in fixupFPReturnAndCall()
425 Value *F = (M->getOrInsertFunction(Name, A, MyVoid, T, nullptr)); in fixupFPReturnAndCall() local
454 static void createFPFnStub(Function *F, Module *M, FPParamVariant PV, in createFPFnStub()
494 static void removeUseSoftFloat(Function &F) { in removeUseSoftFloat()
[all …]
/external/clang/test/CodeGenCXX/
Dmangle-local-class-vtables.cpp32 void F() const {} in G() function
38 void F() const { G(); } in G() function
45 void F() const { H(); } in G() function
58 void F() const {} in K() function
/external/llvm/lib/Target/NVPTX/
DNVPTXUtilities.cpp257 bool llvm::getMaxNTIDx(const Function &F, unsigned &x) { in getMaxNTIDx()
262 bool llvm::getMaxNTIDy(const Function &F, unsigned &y) { in getMaxNTIDy()
267 bool llvm::getMaxNTIDz(const Function &F, unsigned &z) { in getMaxNTIDz()
272 bool llvm::getReqNTIDx(const Function &F, unsigned &x) { in getReqNTIDx()
277 bool llvm::getReqNTIDy(const Function &F, unsigned &y) { in getReqNTIDy()
282 bool llvm::getReqNTIDz(const Function &F, unsigned &z) { in getReqNTIDz()
287 bool llvm::getMinCTASm(const Function &F, unsigned &x) { in getMinCTASm()
292 bool llvm::isKernelFunction(const Function &F) { in isKernelFunction()
303 bool llvm::getAlign(const Function &F, unsigned index, unsigned &align) { in getAlign()
351 if (Function *F = dyn_cast<Function>(v)) in getParentFunction() local
[all …]
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
DBuildLibCalls.cpp46 if (const Function *F = dyn_cast<Function>(StrLen->stripPointerCasts())) in EmitStrLen() local
67 if (const Function *F = dyn_cast<Function>(StrChr->stripPointerCasts())) in EmitStrChr() local
91 if (const Function *F = dyn_cast<Function>(StrNCmp->stripPointerCasts())) in EmitStrNCmp() local
110 if (const Function *F = dyn_cast<Function>(StrCpy->stripPointerCasts())) in EmitStrCpy() local
129 if (const Function *F = dyn_cast<Function>(StrNCpy->stripPointerCasts())) in EmitStrNCpy() local
153 if (const Function *F = dyn_cast<Function>(MemCpy->stripPointerCasts())) in EmitMemCpyChk() local
174 if (const Function *F = dyn_cast<Function>(MemChr->stripPointerCasts())) in EmitMemChr() local
199 if (const Function *F = dyn_cast<Function>(MemCmp->stripPointerCasts())) in EmitMemCmp() local
230 if (const Function *F = dyn_cast<Function>(Callee->stripPointerCasts())) in EmitUnaryFloatFnCall() local
249 if (const Function *F = dyn_cast<Function>(PutChar->stripPointerCasts())) in EmitPutChar() local
[all …]
/external/skia/src/gpu/vk/
DGrVkInterface.cpp15 #define GET_PROC_GLOBAL(F) functions->f ## F = (PFN_vk ## F) vkGetInstanceProcAddr(NULL, "vk" #F) argument
16 #define GET_PROC(F) functions->f ## F = (PFN_vk ## F) vkGetInstanceProcAddr(instance, "vk" #F) argument
17 #define GET_PROC_LOCAL(inst, F) PFN_vk ## F F = (PFN_vk ## F) vkGetInstanceProcAddr(inst, "vk" #F) argument
18 #define GET_DEV_PROC(F) functions->f ## F = (PFN_vk ## F) vkGetDeviceProcAddr(device, "vk" #F) argument

12345678910>>...65