HomeSort by relevance Sort by last modified time
    Searched refs:function_id (Results 1 - 25 of 59) sorted by null

1 2 3

  /external/mesa3d/src/gallium/state_trackers/vdpau/
ftab.c 118 boolean vlGetFuncFTAB(VdpFuncId function_id, void **func)
123 if (function_id < VDP_FUNC_ID_BASE_WINSYS) {
124 if (function_id < ARRAY_SIZE(ftab))
125 *func = ftab[function_id];
127 } else if (function_id < VDP_FUNC_ID_BASE_DRIVER) {
128 function_id -= VDP_FUNC_ID_BASE_WINSYS;
129 if (function_id < ARRAY_SIZE(ftab_winsys))
130 *func = ftab_winsys[function_id];
133 function_id -= VDP_FUNC_ID_BASE_DRIVER;
134 if (function_id < ARRAY_SIZE(ftab_driver)
    [all...]
device.c 249 vlVdpGetProcAddress(VdpDevice device, VdpFuncId function_id, void **function_pointer)
258 if (!vlGetFuncFTAB(function_id, function_pointer))
261 VDPAU_MSG(VDPAU_TRACE, "[VDPAU] Got proc address %p for id %d\n", *function_pointer, function_id);
  /external/v8/src/interpreter/
interpreter.h 127 // Generates code to perform delete via function_id.
128 void DoDelete(Runtime::FunctionId function_id,
131 // Generates code to perform a lookup slot load via |function_id|.
132 void DoLdaLookupSlot(Runtime::FunctionId function_id,
135 // Generates code to perform a lookup slot load via |function_id| that can
137 void DoLdaLookupContextSlot(Runtime::FunctionId function_id,
140 // Generates code to perform a lookup slot load via |function_id| that can
142 void DoLdaLookupGlobalSlot(Runtime::FunctionId function_id,
interpreter-intrinsics.h 56 compiler::Node* InvokeIntrinsic(compiler::Node* function_id,
61 static bool IsSupported(Runtime::FunctionId function_id);
62 static IntrinsicId FromRuntimeId(Runtime::FunctionId function_id);
bytecode-array-builder.cc     [all...]
interpreter-intrinsics.cc 24 bool IntrinsicsHelper::IsSupported(Runtime::FunctionId function_id) {
25 switch (function_id) {
37 Runtime::FunctionId function_id) {
38 switch (function_id) {
65 Node* IntrinsicsHelper::InvokeIntrinsic(Node* function_id, Node* context,
85 __ Switch(function_id, &abort, cases, labels, arraysize(cases));
bytecode-array-builder.h 260 // Call the runtime function with |function_id| and arguments |args|.
261 BytecodeArrayBuilder& CallRuntime(Runtime::FunctionId function_id,
263 // Call the runtime function with |function_id| with single argument |arg|.
264 BytecodeArrayBuilder& CallRuntime(Runtime::FunctionId function_id,
266 // Call the runtime function with |function_id| with no arguments.
267 BytecodeArrayBuilder& CallRuntime(Runtime::FunctionId function_id);
269 // Call the runtime function with |function_id| and arguments |args|, that
272 BytecodeArrayBuilder& CallRuntimeForPair(Runtime::FunctionId function_id,
275 // Call the runtime function with |function_id| with single argument |arg|
278 BytecodeArrayBuilder& CallRuntimeForPair(Runtime::FunctionId function_id,
    [all...]
interpreter-assembler.h 168 compiler::Node* CallRuntimeN(compiler::Node* function_id,
257 // Traces the current bytecode by calling |function_id|.
258 void TraceBytecode(Runtime::FunctionId function_id);
interpreter.cc 688 void Interpreter::DoLdaLookupSlot(Runtime::FunctionId function_id,
693 Node* result = __ CallRuntime(function_id, context, name);
714 void Interpreter::DoLdaLookupContextSlot(Runtime::FunctionId function_id,
738 Node* result = __ CallRuntime(function_id, context, name);
761 void Interpreter::DoLdaLookupGlobalSlot(Runtime::FunctionId function_id,
776 TypeofMode typeof_mode = function_id == Runtime::kLoadLookupSlotInsideTypeof
789 Node* result = __ CallRuntime(function_id, context, name);
2202 Node* function_id = __ BytecodeOperandRuntimeId(0); local
2218 Node* function_id = __ BytecodeOperandIntrinsicId(0); local
2237 Node* function_id = __ BytecodeOperandRuntimeId(0); local
    [all...]
  /system/extras/simpleperf/scripts/
pprof_proto_generator.py 153 print('%sfunction_id: %d' % (space, line.function_id))
154 self.show_function_id(line.function_id, sub_space)
157 def show_function_id(self, function_id, space=''):
158 function = self.profile.function[function_id - 1]
218 self.function_id = 0
390 function_id = self.get_function_id(symbol.symbol_name, symbol.dso_name,
392 if function_id:
396 line.function_id = function_id
435 # function_id starts from
    [all...]
  /external/perf_data_converter/src/
builder.cc 158 int64 function_id = line.function_id(); local
159 if (function_id != 0 && function_ids.count(function_id) == 0) {
160 std::cerr << "Missing function " << function_id; local
  /external/v8/src/profiler/
profile-generator-inl.h 44 inline unsigned ProfileNode::function_id() const { function in class:v8::internal::ProfileNode
allocation-tracker.h 101 SnapshotObjectId function_id; member in struct:v8::internal::AllocationTracker::FunctionInfo
sampling-heap-profiler.h 90 static FunctionId function_id(int script_id, int start_position, function in class:v8::internal::SamplingHeapProfiler::AllocationNode
allocation-tracker.cc 110 function_id(0),
267 info->function_id = id;
sampling-heap-profiler.cc 129 AllocationNode::FunctionId id = AllocationNode::function_id(
144 FunctionId id = function_id(script_id, start_position, name);
  /external/v8/src/compiler/
js-graph.h 130 Node* ExternalConstant(Runtime::FunctionId function_id);
js-graph.cc 274 Node* JSGraph::ExternalConstant(Runtime::FunctionId function_id) {
275 return ExternalConstant(ExternalReference(function_id, isolate()));
linkage.cc 209 Zone* zone, Runtime::FunctionId function_id, int js_parameter_count,
211 const Runtime::Function* function = Runtime::FunctionForId(function_id);
215 if (!Linkage::NeedsFrameStateInput(function_id)) {
  /external/lz4/examples/
compress_functions.c 107 * Runs the benchmark for LZ4_compress_* based on function_id.
111 const int function_id,
128 switch(function_id) {
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/val/
function.cpp 41 Function::Function(uint32_t function_id, uint32_t result_type_id,
44 : id_(function_id),
  /external/tensorflow/tensorflow/compiler/tf2xla/
xla_compiler.cc 177 const string function_id = local
179 VLOG(1) << "XlaCompiler::CompileFunction " << function_id;
181 auto it = cache_.find({function_id, args});
218 strings::StrCat("xla_compile_function_", function_id),
224 CompileGraph(options, function_id, std::move(graph), args, result));
227 cache_[{function_id, args}] = *result;
  /external/mesa3d/bin/
perf-annotate-jit 213 function_id = function_name + ':' + module
  /external/tensorflow/tensorflow/python/debug/lib/
source_remote.py 68 function_id=_string_to_id(func_name, string_to_id),
  /external/tensorflow/tensorflow/python/profiler/
tfprof_logger.py 120 trace.function_id = _str_id(tb[2], string_to_id) if tb[2] else 0

Completed in 448 milliseconds

1 2 3