HomeSort by relevance Sort by last modified time
    Searched defs:Function (Results 176 - 200 of 830) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/XRay/
YAMLXRayRecord.h 37 std::string Function;
56 IO.enumCase(Type, "function-enter", xray::RecordTypes::ENTER);
57 IO.enumCase(Type, "function-exit", xray::RecordTypes::EXIT);
58 IO.enumCase(Type, "function-tail-exit", xray::RecordTypes::TAIL_EXIT);
59 IO.enumCase(Type, "function-enter-arg", xray::RecordTypes::ENTER_ARG);
78 IO.mapOptional("function", Record.Function);
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/XRay/
YAMLXRayRecord.h 37 std::string Function;
56 IO.enumCase(Type, "function-enter", xray::RecordTypes::ENTER);
57 IO.enumCase(Type, "function-exit", xray::RecordTypes::EXIT);
58 IO.enumCase(Type, "function-tail-exit", xray::RecordTypes::TAIL_EXIT);
59 IO.enumCase(Type, "function-enter-arg", xray::RecordTypes::ENTER_ARG);
78 IO.mapOptional("function", Record.Function);
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/XRay/
YAMLXRayRecord.h 37 std::string Function;
56 IO.enumCase(Type, "function-enter", xray::RecordTypes::ENTER);
57 IO.enumCase(Type, "function-exit", xray::RecordTypes::EXIT);
58 IO.enumCase(Type, "function-tail-exit", xray::RecordTypes::TAIL_EXIT);
59 IO.enumCase(Type, "function-enter-arg", xray::RecordTypes::ENTER_ARG);
78 IO.mapOptional("function", Record.Function);
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/XRay/
YAMLXRayRecord.h 37 std::string Function;
56 IO.enumCase(Type, "function-enter", xray::RecordTypes::ENTER);
57 IO.enumCase(Type, "function-exit", xray::RecordTypes::EXIT);
58 IO.enumCase(Type, "function-tail-exit", xray::RecordTypes::TAIL_EXIT);
59 IO.enumCase(Type, "function-enter-arg", xray::RecordTypes::ENTER_ARG);
78 IO.mapOptional("function", Record.Function);
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/XRay/
YAMLXRayRecord.h 37 std::string Function;
56 IO.enumCase(Type, "function-enter", xray::RecordTypes::ENTER);
57 IO.enumCase(Type, "function-exit", xray::RecordTypes::EXIT);
58 IO.enumCase(Type, "function-tail-exit", xray::RecordTypes::TAIL_EXIT);
59 IO.enumCase(Type, "function-enter-arg", xray::RecordTypes::ENTER_ARG);
78 IO.mapOptional("function", Record.Function);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
storport.h 55 UCHAR Function;
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/profile/
profile.go 40 Function []*Function
122 Function *Function
128 // Function corresponds to Profile.Function
129 type Function struct {
368 functions := make(map[uint64]*Function, len(p.Function))
369 for _, f := range p.Function {
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/pprof/internal/profile/
profile.go 29 Function []*Function
101 Function *Function
107 // Function corresponds to Profile.Function
108 type Function struct {
255 functions := make(map[uint64]*Function, len(p.Function))
256 for _, f := range p.Function {
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/profile/
profile.go 40 Function []*Function
122 Function *Function
128 // Function corresponds to Profile.Function
129 type Function struct {
368 functions := make(map[uint64]*Function, len(p.Function))
369 for _, f := range p.Function {
    [all...]
  /prebuilts/go/linux-x86/src/runtime/pprof/internal/profile/
profile.go 29 Function []*Function
101 Function *Function
107 // Function corresponds to Profile.Function
108 type Function struct {
255 functions := make(map[uint64]*Function, len(p.Function))
256 for _, f := range p.Function {
    [all...]
  /prebuilts/libs/libedit/include/editline/
readline.h 40 typedef int Function(const char *, int);
65 Function *function; member in struct:_keymap_entry
111 extern Function *rl_completion_entry_function;
120 extern Function *rl_pre_input_hook;
121 extern Function *rl_startup_hook;
197 int rl_add_defun(const char *, Function *, int);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/meta/meta.unary/meta.unary.prop/
is_destructible.pass.cpp 72 typedef void (Function) ();
123 test_is_not_destructible<Function>();
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
types.cpp 291 Function::Function(Type* return_type, const std::vector<Type*>& param_types)
299 bool Function::IsSame(Type* that) const {
300 const Function* ft = that->AsFunction();
310 std::string Function::str() const {
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/val/
function.cpp 15 #include "val/function.h"
41 Function::Function(uint32_t function_id, uint32_t result_type_id,
58 bool Function::IsFirstBlock(uint32_t block_id) const {
62 spv_result_t Function::RegisterFunctionParameter(uint32_t parameter_id,
67 // TODO(umar): Validate function parameter type order and count
74 spv_result_t Function::RegisterLoopMerge(uint32_t merge_id,
98 spv_result_t Function::RegisterSelectionMerge(uint32_t merge_id) {
110 spv_result_t Function::RegisterSetFunctionDeclType(FunctionDecl type) {
116 spv_result_t Function::RegisterBlock(uint32_t block_id, bool is_definition)
    [all...]
function.h 42 kFunctionDeclUnknown, /// < Unknown function declaration
43 kFunctionDeclDeclaration, /// < Function declaration
44 kFunctionDeclDefinition /// < Function definition
47 /// This class manages all function declaration and definitions in a module. It
48 /// handles the state and id information while parsing a function in the SPIR-V
50 class Function {
52 Function(uint32_t id, uint32_t result_type_id,
55 /// Registers a function parameter in the current function
59 /// Sets the declaration type of the current function
    [all...]
  /system/extras/simpleperf/scripts/
profile_pb2.py 22 serialized_pb=_b('\n\rprofile.proto\x12\x12perftools.profiles\"\xd5\x03\n\x07Profile\x12\x32\n\x0bsample_type\x18\x01 \x03(\x0b\x32\x1d.perftools.profiles.ValueType\x12*\n\x06sample\x18\x02 \x03(\x0b\x32\x1a.perftools.profiles.Sample\x12,\n\x07mapping\x18\x03 \x03(\x0b\x32\x1b.perftools.profiles.Mapping\x12.\n\x08location\x18\x04 \x03(\x0b\x32\x1c.perftools.profiles.Location\x12.\n\x08\x66unction\x18\x05 \x03(\x0b\x32\x1c.perftools.profiles.Function\x12\x14\n\x0cstring_table\x18\x06 \x03(\t\x12\x13\n\x0b\x64rop_frames\x18\x07 \x01(\x03\x12\x13\n\x0bkeep_frames\x18\x08 \x01(\x03\x12\x12\n\ntime_nanos\x18\t \x01(\x03\x12\x16\n\x0e\x64uration_nanos\x18\n \x01(\x03\x12\x32\n\x0bperiod_type\x18\x0b \x01(\x0b\x32\x1d.perftools.profiles.ValueType\x12\x0e\n\x06period\x18\x0c \x01(\x03\x12\x0f\n\x07\x63omment\x18\r \x03(\x03\x12\x1b\n\x13\x64\x65\x66\x61ult_sample_type\x18\x0e \x01(\x03\"\'\n\tValueType\x12\x0c\n\x04type\x18\x01 \x01(\x03\x12\x0c\n\x04unit\x18\x02 \x01(\x03\"V\n\x06Sample\x12\x13\n\x0blocation_id\x18\x01 \x03(\x04\x12\r\n\x05value\x18\x02 \x03(\x03\x12(\n\x05label\x18\x03 \x03(\x0b\x32\x19.perftools.profiles.Label\".\n\x05Label\x12\x0b\n\x03key\x18\x01 \x01(\x03\x12\x0b\n\x03str\x18\x02 \x01(\x03\x12\x0b\n\x03num\x18\x03 \x01(\x03\"\xdd\x01\n\x07Mapping\x12\n\n\x02id\x18\x01 \x01(\x04\x12\x14\n\x0cmemory_start\x18\x02 \x01(\x04\x12\x14\n\x0cmemory_limit\x18\x03 \x01(\x04\x12\x13\n\x0b\x66ile_offset\x18\x04 \x01(\x04\x12\x10\n\x08\x66ilename\x18\x05 \x01(\x03\x12\x10\n\x08\x62uild_id\x18\x06 \x01(\x03\x12\x15\n\rhas_functions\x18\x07 \x01(\x08\x12\x15\n\rhas_filenames\x18\x08 \x01(\x08\x12\x18\n\x10has_line_numbers\x18\t \x01(\x08\x12\x19\n\x11has_inline_frames\x18\n \x01(\x08\"c\n\x08Location\x12\n\n\x02id\x18\x01 \x01(\x04\x12\x12\n\nmapping_id\x18\x02 \x01(\x04\x12\x0f\n\x07\x61\x64\x64ress\x18\x03 \x01(\x04\x12&\n\x04line\x18\x04 \x03(\x0b\x32\x18.perftools.profiles.Line\")\n\x04Line\x12\x13\n\x0b\x66unction_id\x18\x01 \x01(\x04\x12\x0c\n\x04line\x18\x02 \x01(\x03\"_\n\x08\x46unction\x12\n\n\x02id\x18\x01 \x01(\x04\x12\x0c\n\x04name\x18\x02 \x01(\x03\x12\x13\n\x0bsystem_name\x18\x03 \x01(\x03\x12\x10\n\x08\x66ilename\x18\x04 \x01(\x03\x12\x12\n\nstart_line\x18\x05 \x01(\x03\x42-\n\x1d\x63om.google.perftools.profilesB\x0cProfileProtob\x06proto3')
65 name='function', full_name='perftools.profiles.Profile.function', index=4,
464 name='Function',
465 full_name='perftools.profiles.Function',
471 name='id', full_name='perftools.profiles.Function.id', index=0,
478 name='name', full_name='perftools.profiles.Function.name', index=1,
485 name='system_name', full_name='perftools.profiles.Function.system_name', index=2,
492 name='filename', full_name='perftools.profiles.Function.filename', index=3,
499 name='start_line', full_name='perftools.profiles.Function.start_line', index=4
    [all...]
  /external/llvm/lib/IR/
Function.cpp 1 //===-- Function.cpp - Implement the Global object classes ----------------===//
10 // This file implements the Function class for the IR library.
14 #include "llvm/IR/Function.h"
46 Argument::Argument(Type *Ty, const Twine &Name, Function *Par)
55 void Argument::setParent(Function *parent) {
60 /// function. For example in "void foo(int a, float b)" a is 0 and b is 1.
62 const Function *F = getParent();
63 assert(F && "Argument is not in a function");
65 Function::const_arg_iterator AI = F->arg_begin();
74 /// it in its containing function. Also returns true if at least one byte i
    [all...]
  /frameworks/rs/script_api/
Specification.cpp 55 // Patterns that get substituted with C type or RS Data type names in function
321 Function::Function(const string& name) : Definition(name) {
325 Function::~Function() {
331 bool Function::someParametersAreDocumented() const {
340 void Function::addParameter(ParameterEntry* entry, Scanner* scanner) {
355 void Function::addReturn(ParameterEntry* entry, Scanner* scanner) {
499 void FunctionSpecification::createPermutations(Function* function, Scanner* scanner)
622 Function* function = systemSpecification.findOrCreateFunction(name, &created); local
798 Function* function = spec->getFunction(); local
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/SPIRV/
spvIR.h 38 // Each function's CFG of blocks. Has this hierarchy:
40 // - Function, which is a list of
61 class Function;
169 Block(Id id, Function& parent);
176 Function& getParent() const { return parent; }
230 friend Function;
235 Function& parent;
246 void inReadableOrder(Block* root, std::function<void(Block*)> callback);
249 // SPIR-V IR Function.
252 class Function {
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Drivers/Smbios/SmbiosMiscDxe/
SmbiosMisc.h 45 // Data table entry update function.
61 EFI_MISC_SMBIOS_DATA_FUNCTION *Function;
70 extern EFI_MISC_SMBIOS_DATA_FUNCTION NAME3 ## Function;
80 NAME2 ## Function \
91 EFI_STATUS EFIAPI NAME2 ## Function( \
  /device/linaro/bootloader/edk2/AppPkg/Applications/OrderedCollectionTest/
OrderedCollectionTest.c 104 Comparator function type for two user structures.
134 This function demonstrates that iterators different from the one being
167 This function demonstrates that iterators different from the one being
366 void (*Function) (ORDERED_COLLECTION *Collection);
372 void (*Function) (int Value, ORDERED_COLLECTION *Collection);
606 KeylessCmd->Function (Collection);
634 KeyedCmd->Function (Value, Collection);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
symtable.py 10 __all__ = ["symtable", "SymbolTable", "Class", "Function", "Symbol"]
25 return Function(table, filename)
64 return "function"
121 class Function(SymbolTable):
213 If the name is used as the target of a function or class
  /device/linaro/bootloader/edk2/DuetPkg/PciBusNoEnumerationDxe/
PciOptionRomSupport.c 55 UINT8 Function;
60 Function = PciIoDevice->FunctionNumber;
87 Address = EFI_PCI_ADDRESS (Bus, Device, Function, RomBarIndex);
123 DEBUG ((EFI_D_ERROR, "PCIBUS: GetOpRomInfo: B-%x, D-%x, F-%x\n", (UINTN)Bus, (UINTN)Device, (UINTN)Function));
361 //setting the memory space bit in the function's command register
  /device/linaro/bootloader/edk2/DuetPkg/PciRootBridgeNoEnumerationDxe/
PcatPciRootBridge.h 149 UINT8 Function;
169 IN UINTN Function
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/Include/Guid/
SmmBaseThunkCommunication.h 77 SMMBASE_FUNCTION Function;

Completed in 615 milliseconds

1 2 3 4 5 6 78 91011>>