Home
last modified time | relevance | path

Searched full:functions (Results 1 – 25 of 11233) sorted by relevance

12345678910>>...450

/external/deqp/external/vulkancts/framework/vulkan/
DvkExtensionFunctions.inl5 …ensionFunctions (deUint32 apiVersion, ::std::string extName, ::std::vector<const char*>& functions) argument
9 functions.push_back("vkDestroySurfaceKHR");
10 functions.push_back("vkGetPhysicalDeviceSurfaceSupportKHR");
11 functions.push_back("vkGetPhysicalDeviceSurfaceCapabilitiesKHR");
12 functions.push_back("vkGetPhysicalDeviceSurfaceFormatsKHR");
13 functions.push_back("vkGetPhysicalDeviceSurfacePresentModesKHR");
18 …if(apiVersion >= VK_API_VERSION_1_1) functions.push_back("vkGetPhysicalDevicePresentRectanglesKHR"…
23 functions.push_back("vkGetPhysicalDeviceDisplayPropertiesKHR");
24 functions.push_back("vkGetPhysicalDeviceDisplayPlanePropertiesKHR");
25 functions.push_back("vkGetDisplayPlaneSupportedDisplaysKHR");
[all …]
/external/angle/src/libANGLE/renderer/gl/
Drenderergl_utils.cpp7 // renderergl_utils.cpp: Conversion functions and other utility routines
44 const char *GetString(const FunctionsGL *functions, GLenum name) in GetString() argument
46 return reinterpret_cast<const char *>(functions->getString(name)); in GetString()
49 bool IsMesa(const FunctionsGL *functions, std::array<int, 3> *version) in IsMesa() argument
53 if (functions->standard != STANDARD_GL_DESKTOP) in IsMesa()
58 std::string nativeVersionString(GetString(functions, GL_VERSION)); in IsMesa()
72 int getAdrenoNumber(const FunctionsGL *functions) in getAdrenoNumber() argument
77 const char *nativeGLRenderer = GetString(functions, GL_RENDERER); in getAdrenoNumber()
87 int getMaliTNumber(const FunctionsGL *functions) in getMaliTNumber() argument
92 const char *nativeGLRenderer = GetString(functions, GL_RENDERER); in getMaliTNumber()
[all …]
DCompilerGL.cpp20 ShShaderOutput GetShaderOutputType(const FunctionsGL *functions) in GetShaderOutputType() argument
22 ASSERT(functions); in GetShaderOutputType()
24 if (functions->standard == STANDARD_GL_DESKTOP) in GetShaderOutputType()
27 if (functions->isAtLeastGL(gl::Version(4, 5))) in GetShaderOutputType()
31 else if (functions->isAtLeastGL(gl::Version(4, 4))) in GetShaderOutputType()
35 else if (functions->isAtLeastGL(gl::Version(4, 3))) in GetShaderOutputType()
39 else if (functions->isAtLeastGL(gl::Version(4, 2))) in GetShaderOutputType()
43 else if (functions->isAtLeastGL(gl::Version(4, 1))) in GetShaderOutputType()
47 else if (functions->isAtLeastGL(gl::Version(4, 0))) in GetShaderOutputType()
51 else if (functions->isAtLeastGL(gl::Version(3, 3))) in GetShaderOutputType()
[all …]
/external/deqp/framework/opengl/wrapper/
DglwImpl.inl9 const glw::Functions* gl = glw::getCurrentThreadFunctions();
17 const glw::Functions* gl = glw::getCurrentThreadFunctions();
25 const glw::Functions* gl = glw::getCurrentThreadFunctions();
33 const glw::Functions* gl = glw::getCurrentThreadFunctions();
41 const glw::Functions* gl = glw::getCurrentThreadFunctions();
49 const glw::Functions* gl = glw::getCurrentThreadFunctions();
57 const glw::Functions* gl = glw::getCurrentThreadFunctions();
65 const glw::Functions* gl = glw::getCurrentThreadFunctions();
73 const glw::Functions* gl = glw::getCurrentThreadFunctions();
81 const glw::Functions* gl = glw::getCurrentThreadFunctions();
[all …]
DglwInitFunctions.hpp33 void initES20 (Functions* gl, const FunctionLoader* loader); //!< Load all OpenGL ES 2.0 function…
34 void initES30 (Functions* gl, const FunctionLoader* loader); //!< Load all OpenGL ES 3.0 function…
35 void initES31 (Functions* gl, const FunctionLoader* loader); //!< Load all OpenGL ES 3.1 function…
36 void initES32 (Functions* gl, const FunctionLoader* loader); //!< Load all OpenGL ES 3.2 function…
38 void initGL30Core (Functions* gl, const FunctionLoader* loader); //!< Load all GL 3.0 core functio…
39 void initGL31Core (Functions* gl, const FunctionLoader* loader); //!< Load all GL 3.1 core functio…
40 void initGL32Core (Functions* gl, const FunctionLoader* loader); //!< Load all GL 3.2 core functio…
41 void initGL33Core (Functions* gl, const FunctionLoader* loader); //!< Load all GL 3.3 core functio…
42 void initGL40Core (Functions* gl, const FunctionLoader* loader); //!< Load all GL 4.0 core functio…
43 void initGL41Core (Functions* gl, const FunctionLoader* loader); //!< Load all GL 4.1 core functio…
[all …]
/external/guava/android/guava-tests/test/com/google/common/base/
DFunctionsTest.java32 * Tests for {@link Functions}.
41 Function<String, String> identity = Functions.identity(); in testIdentity_same()
47 Function<Long, Long> identity = Functions.identity(); in testIdentity_notSame()
53 checkCanReserializeSingleton(Functions.identity()); in testIdentitySerializable()
57 assertEquals("3", Functions.toStringFunction().apply(3)); in testToStringFunction_apply()
58 assertEquals("hiya", Functions.toStringFunction().apply("hiya")); in testToStringFunction_apply()
61 Functions.toStringFunction() in testToStringFunction_apply()
70 Functions.toStringFunction().apply(null); in testToStringFunction_apply()
78 checkCanReserializeSingleton(Functions.toStringFunction()); in testToStringFunctionSerializable()
84 tester.testAllPublicStaticMethods(Functions.class); in testNullPointerExceptions()
[all …]
/external/guava/guava-tests/test/com/google/common/base/
DFunctionsTest.java32 * Tests for {@link Functions}.
41 Function<String, String> identity = Functions.identity(); in testIdentity_same()
47 Function<Long, Long> identity = Functions.identity(); in testIdentity_notSame()
53 checkCanReserializeSingleton(Functions.identity()); in testIdentitySerializable()
57 assertEquals("3", Functions.toStringFunction().apply(3)); in testToStringFunction_apply()
58 assertEquals("hiya", Functions.toStringFunction().apply("hiya")); in testToStringFunction_apply()
61 Functions.toStringFunction() in testToStringFunction_apply()
70 Functions.toStringFunction().apply(null); in testToStringFunction_apply()
78 checkCanReserializeSingleton(Functions.toStringFunction()); in testToStringFunctionSerializable()
84 tester.testAllPublicStaticMethods(Functions.class); in testNullPointerExceptions()
[all …]
/external/oj-libjdwp/src/share/javavm/export/
Djni.h157 * possible return values for JNI functions.
771 * We use inlined functions for C++ so that programmers can write:
783 const struct JNINativeInterface_ *functions; member
787 return functions->GetVersion(this); in GetVersion()
791 return functions->DefineClass(this, name, loader, buf, len); in DefineClass()
794 return functions->FindClass(this, name); in FindClass()
797 return functions->FromReflectedMethod(this,method); in FromReflectedMethod()
800 return functions->FromReflectedField(this,field); in FromReflectedField()
804 return functions->ToReflectedMethod(this, cls, methodID, isStatic); in ToReflectedMethod()
808 return functions->GetSuperclass(this, sub); in GetSuperclass()
[all …]
Djvmti.h1638 /* 124 : Get Extension Functions */
1787 const struct jvmtiInterface_1_ *functions; member
1793 return functions->Allocate(this, size, mem_ptr); in Allocate()
1797 return functions->Deallocate(this, mem); in Deallocate()
1802 return functions->GetThreadState(this, thread, thread_state_ptr); in GetThreadState()
1806 return functions->GetCurrentThread(this, thread_ptr); in GetCurrentThread()
1811 return functions->GetAllThreads(this, threads_count_ptr, threads_ptr); in GetAllThreads()
1815 return functions->SuspendThread(this, thread); in SuspendThread()
1821 return functions->SuspendThreadList(this, request_count, request_list, results); in SuspendThreadList()
1825 return functions->ResumeThread(this, thread); in ResumeThread()
[all …]
/external/pdfium/testing/tools/
Dapi_check.py5 """Verifies exported functions in public/*.h are in fpdf_view_c_api_test.c.
7 This script gathers a list of functions from public/*.h that contain
8 FPDF_EXPORT. It then gathers a list of functions from
42 functions = []
47 functions.append(_FindFunction(split_line[0], filename))
61 functions.append(_FindFunction(split_line[callconv_index + 1], filename))
62 return functions
67 functions = []
70 functions.extend(_GetExportsFromHeader(public_path, filename))
71 return functions
[all …]
/external/python/cpython2/Mac/Modules/qd/
Dqdedit.py4 functions.append(f)
9 functions.append(f)
14 functions.append(f)
18 functions.append(f)
24 functions.append(f)
33 functions.append(f)
40 functions.append(f)
47 functions.append(f)
54 functions.append(f)
60 functions.append(f)
[all …]
/external/llvm-project/llvm/test/Transforms/Inline/
Dinline_stats.ll16 ; CHECK-BASIC-NOT: -- List of inlined functions:
18 ; CHECK-VERBOSE: -- List of inlined functions:
26 ; CHECK: All functions: 10, imported functions: 7
27 ; CHECK: inlined functions: 5 [50% of all functions]
28 ; CHECK: imported functions inlined anywhere: 4 [57.14% of imported functions]
29 ; CHECK: imported functions inlined into importing module: 3 [42.86% of imported functions], remain…
30 ; CHECK: non-imported functions inlined anywhere: 1 [33.33% of non-imported functions]
31 ; CHECK: non-imported functions inlined into importing module: 1 [33.33% of non-imported functions]
33 ; WRAPPER-VERBOSE: -- List of inlined functions:
36 ; WRAPPER: All functions: 10, imported functions: 7
[all …]
/external/tinyxml2/docs/
Dmenudata.js8 {text:"Class Members",url:"functions.html",children:[
9 {text:"All",url:"functions.html",children:[
10 {text:"a",url:"functions.html#index_a"},
11 {text:"b",url:"functions.html#index_b"},
12 {text:"c",url:"functions.html#index_c"},
13 {text:"d",url:"functions.html#index_d"},
14 {text:"e",url:"functions.html#index_e"},
15 {text:"f",url:"functions.html#index_f"},
16 {text:"g",url:"functions.html#index_g"},
17 {text:"h",url:"functions.html#index_h"},
[all …]
/external/clang/test/CodeGen/
Dpacked-structure.c3 // RUN: FileCheck --check-prefix=CHECK-FUNCTIONS < %t %s
19 // CHECK-FUNCTIONS-LABEL: define i32 @s0_load_x
20 // CHECK-FUNCTIONS: [[s0_load_x:%.*]] = load i32, i32* {{.*}}, align 4
21 // CHECK-FUNCTIONS: ret i32 [[s0_load_x]]
27 // CHECK-FUNCTIONS-LABEL: define i32 @s0_load_y
28 // CHECK-FUNCTIONS: [[s0_load_y:%.*]] = load i32, i32* {{.*}}, align 4
29 // CHECK-FUNCTIONS: ret i32 [[s0_load_y]]
31 // CHECK-FUNCTIONS-LABEL: define void @s0_copy
32 // CHECK-FUNCTIONS: call void @llvm.memcpy.p0i8.p0i8.i64(i8* {{.*}}, i8* {{.*}}, i64 8, i32 4, i1 f…
49 // CHECK-FUNCTIONS-LABEL: define i32 @s1_load_x
[all …]
/external/llvm-project/clang/test/CodeGen/
Dpacked-structure.c3 // RUN: FileCheck --check-prefix=CHECK-FUNCTIONS < %t %s
19 // CHECK-FUNCTIONS-LABEL: define i32 @s0_load_x
20 // CHECK-FUNCTIONS: [[s0_load_x:%.*]] = load i32, i32* {{.*}}, align 4
21 // CHECK-FUNCTIONS: ret i32 [[s0_load_x]]
27 // CHECK-FUNCTIONS-LABEL: define i32 @s0_load_y
28 // CHECK-FUNCTIONS: [[s0_load_y:%.*]] = load i32, i32* {{.*}}, align 4
29 // CHECK-FUNCTIONS: ret i32 [[s0_load_y]]
31 // CHECK-FUNCTIONS-LABEL: define void @s0_copy
32 // CHECK-FUNCTIONS: call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 {{.*}}, i8* align 4 {{.*}}, i6…
49 // CHECK-FUNCTIONS-LABEL: define i32 @s1_load_x
[all …]
/external/jsilver/src/com/google/clearsilver/jsilver/functions/bundles/
DCoreOperators.java17 package com.google.clearsilver.jsilver.functions.bundles;
19 import com.google.clearsilver.jsilver.functions.FunctionRegistry;
20 import com.google.clearsilver.jsilver.functions.operators.AddFunction;
21 import com.google.clearsilver.jsilver.functions.operators.AndFunction;
22 import com.google.clearsilver.jsilver.functions.operators.DivideFunction;
23 import com.google.clearsilver.jsilver.functions.operators.EqualFunction;
24 import com.google.clearsilver.jsilver.functions.operators.ExistsFunction;
25 import com.google.clearsilver.jsilver.functions.operators.GreaterFunction;
26 import com.google.clearsilver.jsilver.functions.operators.GreaterOrEqualFunction;
27 import com.google.clearsilver.jsilver.functions.operators.LessFunction;
[all …]
DClearSilverCompatibleFunctions.java17 package com.google.clearsilver.jsilver.functions.bundles;
19 import com.google.clearsilver.jsilver.functions.escape.*;
20 import com.google.clearsilver.jsilver.functions.html.CssUrlValidateFunction;
21 import com.google.clearsilver.jsilver.functions.html.HtmlStripFunction;
22 import com.google.clearsilver.jsilver.functions.html.HtmlUrlValidateFunction;
23 import com.google.clearsilver.jsilver.functions.html.TextHtmlFunction;
24 import com.google.clearsilver.jsilver.functions.numeric.AbsFunction;
25 import com.google.clearsilver.jsilver.functions.numeric.MaxFunction;
26 import com.google.clearsilver.jsilver.functions.numeric.MinFunction;
27 import com.google.clearsilver.jsilver.functions.string.CrcFunction;
[all …]
/external/llvm-project/llvm/test/tools/llvm-profdata/
Dsample-overlap.test10 ; OVERLAP0: overlap functions: 4
11 ; OVERLAP0: functions unique in base profile: 0
12 ; OVERLAP0: functions unique in test profile: 0
14 ; OVERLAP0: overlap hot functions: 4
15 ; OVERLAP0: hot functions unique in base profile: 0
16 ; OVERLAP0: hot functions unique in test profile: 0
31 ; OVERLAP1: overlap functions: 4
32 ; OVERLAP1: functions unique in base profile: 0
33 ; OVERLAP1: functions unique in test profile: 0
35 ; OVERLAP1: overlap hot functions: 4
[all …]
/external/llvm-project/lldb/test/API/tools/lldb-vscode/breakpoint/
DTestVSCode_setFunctionBreakpoints.py40 functions = ['twelve']
42 response = self.vscode.request_setFunctionBreakpoints(functions)
45 self.assertEquals(len(breakpoints), len(functions),
46 "expect %u source breakpoints" % (len(functions)))
53 functions.append('thirteen')
54 response = self.vscode.request_setFunctionBreakpoints(functions)
57 self.assertEquals(len(breakpoints), len(functions),
58 "expect %u source breakpoints" % (len(functions)))
65 functions.remove('thirteen')
66 response = self.vscode.request_setFunctionBreakpoints(functions)
[all …]
/external/compiler-rt/make/platform/
Dclang_darwin.mk1 # These are the functions which clang needs when it is targeting a previous
2 # version of the OS. The issue is that the backend may use functions which were
5 # the extra functions which might be referenced.
79 # Configuration for targeting 10.4. We need a few functions missing from
85 # Configuration for targeting iOS for a couple of functions that didn't
91 # Configuration for targeting OSX. These functions may not be in libSystem
190 FUNCTIONS.eprintf := eprintf
191 FUNCTIONS.10.4 := eprintf floatundidf floatundisf floatundixf
193 FUNCTIONS.ios := divmodsi4 udivmodsi4 mulosi4 mulodi4 muloti4 \
195 # On x86, the divmod functions reference divsi.
[all …]
/external/kotlinx.coroutines/kotlinx-coroutines-core/api/
Dkotlinx-coroutines-core.api15 …public final fun start (Lkotlinx/coroutines/CoroutineStart;Ljava/lang/Object;Lkotlin/jvm/functions
16 public final fun start (Lkotlinx/coroutines/CoroutineStart;Lkotlin/jvm/functions/Function1;)V
27 …outines/CoroutineContext;Lkotlinx/coroutines/CoroutineStart;Lkotlin/jvm/functions/Function2;)Lkotl…
28 …outines/CoroutineContext;Lkotlinx/coroutines/CoroutineStart;Lkotlin/jvm/functions/Function2;ILjava…
29 …public static final fun invoke (Lkotlinx/coroutines/CoroutineDispatcher;Lkotlin/jvm/functions/Func…
30 …outines/CoroutineContext;Lkotlinx/coroutines/CoroutineStart;Lkotlin/jvm/functions/Function2;)Lkotl…
31 …outines/CoroutineContext;Lkotlinx/coroutines/CoroutineStart;Lkotlin/jvm/functions/Function2;ILjava…
32 …public static final fun runBlocking (Lkotlin/coroutines/CoroutineContext;Lkotlin/jvm/functions/Fun…
33 …un runBlocking$default (Lkotlin/coroutines/CoroutineContext;Lkotlin/jvm/functions/Function2;ILjava…
34 …public static final fun withContext (Lkotlin/coroutines/CoroutineContext;Lkotlin/jvm/functions/Fun…
[all …]
/external/oss-fuzz/infra/cifuzz/test_data/
Dexample_curl_fuzzer_cov.json1functions": {"count": 0, "covered": 0, "percent": 0}, "instantiations": {"count": 0, "covered": 0,… object
/external/skia/tools/gpu/gl/interface/
Dinterface.json51 // This file specifies which functions should be attached to GrGLInterface
23 "functions": [
50 { // GL exclusive core functions
54 "functions": [
63 "functions": [
72 "functions": [
93 "functions": [
105 "functions": [
115 "functions": [
125 "functions": [
[all …]
/external/mesa3d/src/mapi/new/
Dgen_gldispatch_mapi.py48 functions = [f for f in allFunctions if(f.name in names)]
51 assert(len(functions) == len(allFunctions))
52 assert(all(functions[i] == allFunctions[i] for i in range(len(functions))))
53 assert(all(functions[i].slot == i for i in range(len(functions))))
64 print(generate_defines(functions))
66 print(generate_table(functions, allFunctions))
67 print(generate_noop_array(functions))
68 print(generate_public_stubs(functions))
69 print(generate_public_entries(functions))
71 print(generate_public_entries_table(functions))
[all …]
/external/autotest/utils/
Dparallel.py12 def __init__(self, functions, max_simultaneous_procs=20): argument
14 This takes in a dictionary of functions which map to a set of
15 functions that they depend on.
17 functions: This is either a list of or dictionary of functions to
19 of other functions this function is dependent on. If its
27 if not isinstance(functions, dict):
28 function_list = functions
29 functions = {}
31 functions[fn] = set()
34 for fn, deps in functions.iteritems():
[all …]

12345678910>>...450