HomeSort by relevance Sort by last modified time
    Searched defs:function (Results 251 - 275 of 956) sorted by null

<<11121314151617181920>>

  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_state_fs.h 109 LLVMValueRef function[2]; member in struct:lp_fragment_shader_variant
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_program.h 171 * The function will be called once for each instruction.
176 * The function gets passed the userData as last parameter.
179 int (*function)( member in struct:radeon_program_transformation
  /external/selinux/mcstrans/src/
mcstransd.c 85 send_response(int fd, uint32_t function, char *data, int32_t ret_val)
97 resp_hdr[0].iov_base = &function;
98 resp_hdr[0].iov_len = sizeof(function);
105 if (count != (sizeof(function) + sizeof(data_size) + sizeof(ret_val))) {
141 process_request(int fd, uint32_t function, char *data1, char *UNUSED(data2))
156 switch (function) {
159 ret = send_response(fd, function, NULL, result);
163 ret = send_response(fd, function, out, result);
167 ret = send_response(fd, function, out, result);
171 ret = send_response(fd, function, out, result)
196 uint32_t function; local
    [all...]
  /external/swiftshader/src/Main/
FrameBuffer.cpp 179 Function<Void(Pointer<Byte>, Pointer<Byte>, Pointer<Byte>)> function; local
181 Pointer<Byte> dst(function.Arg<0>());
182 Pointer<Byte> src(function.Arg<1>());
183 Pointer<Byte> cursor(function.Arg<2>());
538 return function(L"FrameBuffer");
  /external/swiftshader/src/OpenGL/compiler/
ValidateLimitations.cpp 434 TFunction* function = static_cast<TFunction*>(symbol); local
437 const TParameter& param = function->getParam(*i);
441 "Loop index cannot be used as argument to a function out or inout parameter",
  /external/swiftshader/src/Reactor/
Optimizer.cpp 28 void run(Ice::Cfg *function);
31 void analyzeUses(Ice::Cfg *function);
51 Ice::Cfg *function; member in class:__anon35658::Optimizer
69 void Optimizer::run(Ice::Cfg *function)
71 this->function = function;
72 this->context = function->getContext();
74 analyzeUses(function);
89 for(Ice::CfgNode *basicBlock : function->getNodes())
111 Ice::CfgNode *entryBlock = function->getEntryNode()
    [all...]
SubzeroReactor.cpp 53 Ice::Cfg *function = nullptr; member in namespace:__anon35661
562 delete ::function;
580 ::function->setFunctionName(Ice::GlobalString::createWithString(::context, asciiName));
584 ::function->translate();
585 assert(!::function->hasError());
587 auto globals = ::function->getGlobalInits();
595 ::function->emitIAS();
596 auto assembler = ::function->releaseAssembler();
599 objectWriter->writeFunctionCode(::function->getFunctionName(), false, assembler.get());
614 sw::optimize(::function);
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
parallel_cpu_executable.cc 73 // Type of the computation function we expect in the JIT.
125 // Schedules a parallel invocation of compute function for 'instruction' on
262 auto function = FindOrDie(functions_, instruction); local
265 partition_buffers, exec_run_options, function]() {
266 function(result_buffer, exec_run_options, operand_buffers, temps_array_,
411 // Call the function for each HLO instruction in topological order.
  /external/v8/src/builtins/
builtins-arguments.cc 19 ArgumentsBuiltinsAssembler::GetArgumentsFrameAndCount(Node* function,
21 CSA_ASSERT(this, HasInstanceType(function, JS_FUNCTION_TYPE));
26 WordEqual(function,
35 // in an arguments adapter frame or fetched from the shared function info.
40 LoadObjectField(function, JSFunction::kSharedFunctionInfoOffset);
149 Node* function) {
158 GetArgumentsFrameAndCount(function, mode);
194 result.Bind(CallRuntime(Runtime::kNewRestParameter, context, function));
203 Node* function = Parameter(FastNewArgumentsDescriptor::kFunction); local
205 Return(EmitFastNewRestParameter(context, function));
259 Node* function = Parameter(FastNewArgumentsDescriptor::kFunction); local
419 Node* function = Parameter(FastNewArgumentsDescriptor::kFunction); local
    [all...]
builtins-function.cc 60 // character - it may make the combined function expression
74 // function must be rejected. Since JavaScript does not allow nested
104 Handle<JSFunction> function; local
107 isolate, function,
115 Execution::Call(isolate, function, target_global_proxy, 0, nullptr),
117 function = Handle<JSFunction>::cast(result);
118 function->shared()->set_name_should_print_as_anonymous(true);
121 // If new.target is equal to target then the function created
124 // have a Function builtin subclassing case and therefore the
125 // function has wrong initial map. To fix that we create a ne
204 Handle<JSBoundFunction> function; local
    [all...]
  /external/v8/src/compiler/
js-inlining-heuristic.cc 270 Handle<JSFunction> function = candidate.functions[i]; local
274 cumulative_count_ += function->shared()->ast_node_count();
linkage.cc 130 // If we are compiling a JS function, use a JS call descriptor,
142 bool Linkage::NeedsFrameStateInput(Runtime::FunctionId function) {
143 switch (function) {
211 const Runtime::Function* function = Runtime::FunctionForId(function_id); local
212 const int return_count = function->result_size;
213 const char* debug_name = function->name;
254 // Add runtime function itself.
315 // The target for JS function calls is the JSFunction object.
317 // When entering into an OSR function from unoptimized code the JSFunctio
    [all...]
  /external/v8/src/crankshaft/arm/
lithium-codegen-arm.h 196 void CallRuntime(const Runtime::Function* function,
204 const Runtime::Function* function = Runtime::FunctionForId(id); local
205 CallRuntime(function, num_arguments, instr);
209 const Runtime::Function* function = Runtime::FunctionForId(id); local
210 CallRuntime(function, function->nargs, instr);
222 // Generate a direct call to a known function. Expects the functio
    [all...]
  /external/v8/src/crankshaft/arm64/
lithium-codegen-arm64.h 297 void CallRuntime(const Runtime::Function* function,
305 const Runtime::Function* function = Runtime::FunctionForId(id); local
306 CallRuntime(function, num_arguments, instr);
310 const Runtime::Function* function = Runtime::FunctionForId(id); local
311 CallRuntime(function, function->nargs, instr);
323 // Generate a direct call to a known function. Expects the functio
    [all...]
  /external/v8/src/crankshaft/ia32/
lithium-codegen-ia32.h 168 void CallRuntime(const Runtime::Function* fun,
176 const Runtime::Function* function = Runtime::FunctionForId(id); local
177 CallRuntime(function, argc, instr);
181 const Runtime::Function* function = Runtime::FunctionForId(id); local
182 CallRuntime(function, function->nargs, instr);
195 // Generate a direct call to a known function. Expects the function
    [all...]
  /external/v8/src/crankshaft/mips/
lithium-codegen-mips.h 190 void CallRuntime(const Runtime::Function* function,
198 const Runtime::Function* function = Runtime::FunctionForId(id); local
199 CallRuntime(function, num_arguments, instr);
203 const Runtime::Function* function = Runtime::FunctionForId(id); local
204 CallRuntime(function, function->nargs, instr);
216 // Generate a direct call to a known function. Expects the functio
    [all...]
  /external/v8/src/crankshaft/mips64/
lithium-codegen-mips64.h 192 void CallRuntime(const Runtime::Function* function,
200 const Runtime::Function* function = Runtime::FunctionForId(id); local
201 CallRuntime(function, num_arguments, instr);
205 const Runtime::Function* function = Runtime::FunctionForId(id); local
206 CallRuntime(function, function->nargs, instr);
218 // Generate a direct call to a known function. Expects the functio
    [all...]
  /external/v8/src/crankshaft/ppc/
lithium-codegen-ppc.h 176 void CallRuntime(const Runtime::Function* function, int num_arguments,
182 const Runtime::Function* function = Runtime::FunctionForId(id); local
183 CallRuntime(function, num_arguments, instr);
187 const Runtime::Function* function = Runtime::FunctionForId(id); local
188 CallRuntime(function, function->nargs, instr);
198 // Generate a direct call to a known function. Expects the functio
    [all...]
  /external/v8/src/crankshaft/s390/
lithium-codegen-s390.h 176 void CallRuntime(const Runtime::Function* function, int num_arguments,
182 const Runtime::Function* function = Runtime::FunctionForId(id); local
183 CallRuntime(function, num_arguments, instr);
187 const Runtime::Function* function = Runtime::FunctionForId(id); local
188 CallRuntime(function, function->nargs, instr);
198 // Generate a direct call to a known function. Expects the functio
    [all...]
  /external/v8/src/crankshaft/x64/
lithium-codegen-x64.h 169 void CallRuntime(const Runtime::Function* function,
177 const Runtime::Function* function = Runtime::FunctionForId(id); local
178 CallRuntime(function, num_arguments, instr);
182 const Runtime::Function* function = Runtime::FunctionForId(id); local
183 CallRuntime(function, function->nargs, instr);
196 // Generate a direct call to a known function. Expects the functio
    [all...]
  /external/v8/src/
execution.cc 40 static void PrintDeserializedCodeInfo(Handle<JSFunction> function) {
41 if (function->code() == function->shared()->code() &&
42 function->shared()->deserialized()) {
44 Object* script = function->shared()->script();
66 // are performed whenever a JS function is called. However, it can be the case
81 Handle<JSFunction> function = Handle<JSFunction>::cast(target); local
82 if ((!is_construct || function->IsConstructor()) &&
83 function->shared()->IsApiFunction()) {
85 isolate->set_context(function->context())
    [all...]
  /external/v8/src/heap/
objects-visiting-inl.h 434 // This function's code looks flushable. But we have to postpone
454 JSFunction* function = JSFunction::cast(object); local
457 if (IsFlushable(heap, function)) {
458 // This function's code looks flushable. But we have to postpone
464 collector->code_flusher()->AddCandidate(function);
470 StaticVisitor::MarkObject(heap, function->shared()->code());
520 JSFunction* function) {
521 SharedFunctionInfo* shared_info = function->shared();
524 // by optimized version of function.
525 if (ObjectMarking::IsBlackOrGrey(function->code()))
    [all...]
  /external/v8/src/ic/
handler-compiler.cc 296 Handle<Object> function = handle( local
298 CallOptimization call_optimization(function);
  /external/v8/src/interpreter/
interpreter-intrinsics.cc 271 // First argument register contains the function target.
272 Node* function = __ LoadRegister(args_reg); local
278 // Subtract function and receiver from arg count.
291 Node* result = __ CallJS(function, context, receiver_arg, target_args_count,
  /external/v8/src/regexp/mips/
regexp-macro-assembler-mips.cc 76 * code entry as cast to a function with the signature:
338 ExternalReference function = variable
340 __ CallCFunction(function, argument_count);
348 // Check if function returned non-zero for success or zero for failure.
    [all...]

Completed in 611 milliseconds

<<11121314151617181920>>