HomeSort by relevance Sort by last modified time
    Searched refs:func_index (Results 1 - 14 of 14) sorted by null

  /external/mesa3d/src/mesa/main/
remap.h 40 int func_index; member in struct:gl_function_remap
51 _mesa_get_function_spec(int func_index);
68 _mesa_get_function_spec(int func_index)
remap.c 61 * \param func_index an opaque function index.
66 _mesa_get_function_spec(GLint func_index)
68 if (func_index < Elements(_mesa_function_pool))
69 return _mesa_function_pool + func_index;
135 for (i = 0; func_array[i].func_index != -1; i++) {
139 spec = _mesa_get_function_spec(func_array[i].func_index);
142 func_array[i].func_index);
  /external/v8/src/wasm/
wasm-objects.h 46 int GetAsmWasmSourcePosition(int func_index, int byte_offset);
49 MaybeHandle<String> GetFunctionName(Isolate* isolate, int func_index);
140 int arity, int func_index);
260 Handle<WasmCompiledModule> compiled_module, uint32_t func_index);
283 int func_index);
287 int func_index);
294 Handle<WasmDebugInfo> debug_info, int func_index);
299 int func_index, int byte_offset);
wasm-debug.cc 116 int func_index, int byte_offset) {
124 DCHECK_LE(num_imported_functions, func_index);
125 func_index -= num_imported_functions;
126 DCHECK_LT(func_index, offset_tables->length());
127 ByteArray *offset_table = ByteArray::cast(offset_tables->get(func_index));
wasm-module.cc 589 Handle<WasmCompiledModule> compiled_module, int func_index) {
591 if (func_index < 0 ||
592 static_cast<size_t>(func_index) > module->functions.size()) {
595 WasmFunction& func = module->functions[func_index];
654 os << "#" << pair.function_->func_index << ":";
661 os << "+" << pair.function_->func_index;
682 int func_index) {
683 return GetFunctionOffsetAndLength(compiled_module, func_index).first;
820 int func_index = 0; local
827 int export_index = static_cast<int>(functions.size() + func_index);
856 int func_index = exported->function_index(); local
1630 int func_index = local
1762 uint32_t func_index = table_init.entries[i]; local
    [all...]
wasm-module.h 109 uint32_t func_index; // index into the function table. member in struct:v8::internal::wasm::WasmFunction
361 uint32_t func_index);
377 FunctionSig* sig, int func_index,
400 int GetAsmWasmSourcePosition(Handle<JSObject> instance, int func_index,
415 int func_index);
module-decoder.cc 296 import->index, // func_index
360 uint32_t func_index = static_cast<uint32_t>(module->functions.size()); local
362 func_index, // func_index
631 uint32_t func_index = i; local
632 if (func_index < module->functions.size()) {
633 module->functions[func_index].name_offset = name_offset;
634 module->functions[func_index].name_length = function_name_length;
    [all...]
wasm-objects.cc 279 Handle<Code> export_wrapper, int arity, int func_index) {
290 function->SetInternalField(kIndex, Smi::FromInt(func_index));
wasm-module-builder.h 146 uint32_t func_index() { return func_index_; } function in class:v8::internal::wasm::WasmFunctionBuilder
wasm-interpreter.cc 906 if (function->func_index < interpreter_code_.size()) {
907 InterpreterCode* code = &interpreter_code_[function->func_index];
947 DCHECK_EQ(interpreter_code_.size(), function->func_index);
999 TRACE(" => PushFrame(#%u @%zu)\n", code->function->func_index,
    [all...]
wasm-module-builder.cc 285 start_function_index_ = function->func_index();
  /external/v8/src/runtime/
runtime-debug.cc 555 int func_index = it.wasm_frame()->function_index(); local
557 wasm::GetWasmFunctionName(isolate, wasm_instance, func_index);
582 wasm::GetFunctionCodeOffset(compiled_module, func_index);
    [all...]
  /external/v8/src/asmjs/
asm-wasm-builder.cc 684 LookupOrInsertFunction(func->var())->func_index());
    [all...]
  /external/v8/src/compiler/
wasm-compiler.cc     [all...]

Completed in 662 milliseconds