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

<<21222324252627282930>>

  /prebuilts/tools/common/m2/repository/me/eugeniomarletti/kotlin-metadata/1.2.1/
kotlin-metadata-1.2.1.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/trove4j/trove4j/20160824/
trove4j-20160824.jar 
  /external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRenderTextureFunctionTests.cpp 23 * \brief Texture access and query function tests.
53 enum Function
72 inline bool functionHasAutoLod (glu::ShaderType shaderType, Function function)
75 (function == FUNCTION_TEXTURE ||
76 function == FUNCTION_TEXTUREPROJ ||
77 function == FUNCTION_TEXTUREPROJ2 ||
78 function == FUNCTION_TEXTUREPROJ3);
81 inline bool functionHasProj (Function function)
113 Function function; member in struct:vkt::sr::__anon17889::TextureLookupSpec
1155 Function function = m_lookupSpec.function; local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
vktSpvAsmInstructionTests.cpp 102 // Filter is a function that returns true if a value should pass, false otherwise.
235 " OpNop\n" // Inside a function body
577 "OpLine %fname1 1 1\n" // Before a function
582 "OpLine %fname1 1 1\n" // In a function
5062 const char function[] = local
5154 const char function[] = local
5267 const char function[] = local
5752 const char function[] = local
5819 const char function[] = local
6290 const char* function = local
    [all...]
  /external/google-breakpad/src/google_breakpad/common/
minidump_format.h 47 * function properly and portably in terms of interoperability with minidumps
913 uint16_t function[128]; \/* ...within this function... *\/ member in struct:__anon20881
    [all...]
  /external/google-breakpad/src/third_party/libdisasm/
libdis.h 33 * These are passed to a reporter function passed at initialization.
521 void *function; /* function containing this insn */ member in struct:__anon21003
536 /* Function prototype for caller-supplied callback routine
541 /* Function prototype for caller-supplied address resolver.
558 * function repeatedly.
570 * invoking a callback function each time an instruction
579 * func : Callback function to invoke (may be NULL)
587 * invoking a callback function each time an instruction
593 * func : Callback function to invoke (may be NULL
    [all...]
  /external/swiftshader/src/Reactor/
LLVMReactor.cpp 18 #include "llvm/Function.h"
72 llvm::Function *function = nullptr; member in namespace:__anon35656
240 ::function = nullptr;
250 llvm::Type *type = ::function->getReturnType();
281 void *entry = ::executionEngine->getPointerToFunction(::function);
333 llvm::BasicBlock &entryBlock = ::function->getEntryBlock();
353 return B(BasicBlock::Create(*::context, "", ::function));
370 ::function = llvm::Function::Create(functionType, llvm::GlobalValue::InternalLinkage, "", ::module)
    [all...]
  /external/v8/src/arm64/
macro-assembler-arm64.cc 1771 const Runtime::Function* function = Runtime::FunctionForId(fid); local
    [all...]
  /external/v8/src/
bootstrapper.cc 169 // Creates the empty function. Used for creating a context from scratch.
171 // Creates the ThrowTypeError function. ECMA 5th Ed. 13.2.3
299 // Function maps. Function maps are created initially with a read only
300 // prototype for the processing of JS builtins. Later the function maps are
364 Handle<JSFunction> function, Handle<String> function_name,
366 JSObject::AddProperty(target, property_name, function, attributes);
368 function->shared()->set_instance_class_name(*function_name);
372 void InstallFunction(Handle<JSObject> target, Handle<JSFunction> function,
376 InstallFunction(target, name, function, name_string, attributes)
404 Handle<JSFunction> function = local
647 Handle<JSFunction> function = local
1169 Handle<JSFunction> function = local
1997 Handle<JSFunction> function = local
2006 Handle<JSFunction> function = SimpleCreateFunction( local
2014 Handle<JSFunction> function = SimpleCreateFunction( local
2022 Handle<JSFunction> function = SimpleCreateFunction( local
2032 Handle<JSFunction> function = local
2043 Handle<JSFunction> function = local
2247 Handle<JSFunction> function = local
2825 Handle<JSFunction> function = factory->NewFunctionWithoutPrototype( local
3174 Handle<JSFunction> function = Handle<JSFunction>::cast(object); local
3460 Handle<JSFunction> function = local
3468 Handle<JSFunction> function = local
3496 Handle<JSFunction> function = local
3504 Handle<JSFunction> function = SimpleCreateFunction( local
4348 Handle<JSFunction> function = Handle<JSFunction>::cast(function_object); local
    [all...]
d8.cc 408 Global<Function> Shell::stringify_function_;
2023 Local<Value> function = local
    [all...]
deoptimizer.cc 52 // Search all deoptimizing code in the native context of the function.
67 // We rely on this function not causing a GC. It is called from generated code
69 Deoptimizer* Deoptimizer::New(JSFunction* function,
75 Deoptimizer* deoptimizer = new Deoptimizer(isolate, function, type,
156 JSFunction* function = JSFunction::cast(element); local
157 Object* next = function->next_function_link();
158 if (function->code()->kind() != Code::OPTIMIZED_FUNCTION ||
159 (visitor->VisitFunction(function),
160 function->code()->kind() != Code::OPTIMIZED_FUNCTION)) {
161 // The function no longer refers to optimized code, or the visito
248 JSFunction* function = local
629 JSFunction* function = local
640 JSFunction* function = local
819 JSFunction* function = JSFunction::cast(value_iterator->GetRawValue()); local
1060 JSFunction* function = JSFunction::cast(value_iterator->GetRawValue()); local
1321 JSFunction* function = JSFunction::cast(value_iterator->GetRawValue()); local
1523 JSFunction* function = JSFunction::cast(value_iterator->GetRawValue()); local
4048 Handle<JSFunction> function = local
4123 Handle<JSFunction> function = local
    [all...]
  /external/v8/src/compiler/
ast-graph-builder.cc 44 // Plug a node into this expression context. Call this function in tail
49 // result of another Visit function that already plugged the context.
112 // mutations of the context chain within the function body and allows to
183 // For function-level control.
303 // Contexts nested in the native context have a canonical empty function as
393 // Simply use the outer function context in building the graph.
429 // Visit declarations within the function scope.
438 // Visit statements in the function body.
966 Handle<SharedFunctionInfo> function = Compiler::GetSharedFunctionInfo( local
    [all...]
wasm-compiler.cc 34 #include "src/wasm/function-body-decoder.h"
68 // Only call this function for code which is not reused across instantiations,
74 const Runtime::Function* fun = Runtime::FunctionForId(f);
124 // in this function will branch to.
195 // to generate a call to a testing c-function instead of a runtime
196 // function. This code should only be called from a cctest.
1469 Node* function = graph()->NewNode(jsgraph()->common()->ExternalConstant(ref)); local
1605 Node* function = graph()->NewNode(jsgraph()->common()->ExternalConstant(ref)); local
1679 Node* function = graph()->NewNode(jsgraph()->common()->ExternalConstant(ref)); local
1779 Node* function = graph()->NewNode(jsgraph()->common()->ExternalConstant(ref)); local
2201 Node* function = graph()->NewNode(jsgraph()->common()->ExternalConstant(ref)); local
2861 Handle<JSFunction> function = Handle<JSFunction>::cast(target); local
3058 const Runtime::Function* function = Runtime::FunctionForId(function_id); local
    [all...]
  /external/v8/src/interpreter/
interpreter.cc 209 // Checks whether function passed the filter.
233 os << "[generating bytecode for function: " << info()->GetDebugName().get()
2151 Node* function = __ LoadRegister(function_reg); local
2270 Node* function = __ LoadContextElement(native_context, context_index); local
    [all...]
  /external/v8/src/ppc/
macro-assembler-ppc.cc 2409 const Runtime::Function* function = Runtime::FunctionForId(fid); local
    [all...]
  /external/v8/src/x64/
macro-assembler-x64.cc 490 // The input registers are fixed to make calling the C write barrier function
682 void MacroAssembler::CallRuntime(const Runtime::Function* f,
685 // If the expected number of arguments of the runtime function is
722 const Runtime::Function* function = Runtime::FunctionForId(fid); local
723 DCHECK_EQ(1, function->result_size);
724 if (function->nargs >= 0) {
725 Set(rax, function->nargs);
    [all...]
  /external/vixl/test/aarch64/
test-assembler-aarch64.cc 69 // be explicitly saved/restored. The END() macro replaces the function return
23194 Label function, after_function; local
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/development/
DevelopmentFragment.java 1269 String function = newValue.toString(); local
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
glslang_tab.cpp 453 glslang::TFunction* function; member in union:YYSTYPE::__anon740::__anon742
4391 TFunction *function; local
    [all...]
  /toolchain/binutils/binutils-2.27/bfd/
dwarf2.c 154 address in an inlined function, preserve a pointer into the
174 /* Hash table mapping symbol names to function infos. */
368 /* Variable and function hash tables. This is used to speed up look-up
370 In order to share code between variable and function infos, we use
371 a list of untyped pointer for all variable/function info associated with
393 /* Function to create a new entry in info hash table. */
423 /* Function to create a new info hash table. It returns a pointer to the
450 This function returns true if there is no error. */
614 in BYTES_READ_PTR. This value is set even if the function fails. Bytes
652 in BYTES_READ_PTR. This value is set even if the function fails. Byte
3890 struct funcinfo *function = NULL; local
    [all...]
  /toolchain/binutils/binutils-2.27/binutils/
ieee.c 41 /* The index of the function type, for a BB4 or BB6 block. */
43 /* TRUE if this function is being skipped. */
81 /* Kind of variable or function. */
233 /* Set for a friend function. */
235 /* Set for a const function. */
237 /* Set for a volatile function. */
239 /* Set for an overloaded function. */
241 /* Set for an operator function. */
247 /* Set for an inline function. */
1016 /* BB4: Global function. *
3769 unsigned int function; member in struct:ieee_modified_type
    [all...]
  /prebuilts/tools/common/m2/repository/net/sf/trove4j/trove4j/1.1/
trove4j-1.1.jar 
  /prebuilts/tools/common/m2/repository/net/java/dev/jna/jna/3.4.0/
jna-3.4.0.jar 
  /external/deqp/external/openglcts/modules/gl/
gl4cShaderSubroutineTests.cpp 4653 GLuint function = combination[i]; local
4708 GLchar function = (0 == combination[i]) ? '+' : '*'; local
    [all...]
gl4cShadingLanguage420PackTests.cpp 688 * @return Function address
720 * @return Function address
752 * @return Function address
784 * @return Function address
816 * @return Function address
884 * @return Function address
16468 static const GLchar* function = "bool check_values(in Structure structure, in float value)\\n" local
    [all...]

Completed in 1890 milliseconds

<<21222324252627282930>>