/external/deqp/framework/opengl/wrapper/ |
D | glwImpl.inl | 9 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 …]
|
D | glwInitFunctions.hpp | 33 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 …]
|
D | glwInitFunctions.cpp | 35 void initES20 (Functions* gl, const FunctionLoader* loader) in initES20() 40 void initES30 (Functions* gl, const FunctionLoader* loader) in initES30() 45 void initES31 (Functions* gl, const FunctionLoader* loader) in initES31() 50 void initES32 (Functions* gl, const FunctionLoader* loader) in initES32() 55 void initGL30Core (Functions* gl, const FunctionLoader* loader) in initGL30Core() 60 void initGL31Core (Functions* gl, const FunctionLoader* loader) in initGL31Core() 65 void initGL32Core (Functions* gl, const FunctionLoader* loader) in initGL32Core() 70 void initGL33Core (Functions* gl, const FunctionLoader* loader) in initGL33Core() 75 void initGL40Core (Functions* gl, const FunctionLoader* loader) in initGL40Core() 80 void initGL41Core (Functions* gl, const FunctionLoader* loader) in initGL41Core() [all …]
|
/external/guava/guava-tests/test/com/google/common/base/ |
D | FunctionsTest.java | 34 * Tests for {@link Functions}. 43 Function<String, String> identity = Functions.identity(); in testIdentity_same() 49 Function<Long, Long> identity = Functions.identity(); in testIdentity_notSame() 55 checkCanReserializeSingleton(Functions.identity()); in testIdentitySerializable() 59 assertEquals("3", Functions.toStringFunction().apply(3)); in testToStringFunction_apply() 60 assertEquals("hiya", Functions.toStringFunction().apply("hiya")); in testToStringFunction_apply() 62 Functions.toStringFunction().apply( in testToStringFunction_apply() 69 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/ |
D | jni.h | 157 * 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 …]
|
D | jvmti.h | 1638 /* 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/u-boot/doc/device-tree-bindings/pinctrl/ |
D | marvell,armada-37xx-pinctrl.txt | 25 Available groups and functions for the North Bridge: 29 - functions jtag, gpio 33 - functions sdio, gpio 37 - functions emmc, gpio 41 - functions pwm, gpio 45 - functions pwm, gpio 49 - functions pwm, gpio 53 - functions pwm, gpio 57 - functions pmic, gpio 61 - functions pmic, gpio [all …]
|
/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/ |
D | FunctionsTest.java | 30 * Tests for {@link Functions}. 39 Function<String, String> identity = Functions.identity(); in testIdentity_same() 45 Function<Long, Long> identity = Functions.identity(); in testIdentity_notSame() 50 assertEquals("3", Functions.toStringFunction().apply(3)); in testToStringFunction_apply() 51 assertEquals("hiya", Functions.toStringFunction().apply("hiya")); in testToStringFunction_apply() 53 Functions.toStringFunction().apply( in testToStringFunction_apply() 60 Functions.toStringFunction().apply(null); in testToStringFunction_apply() 72 Function<String, Integer> function = Functions.forMap(map); in testForMapWithoutDefault() 85 .addEqualityGroup(function, Functions.forMap(map)) in testForMapWithoutDefault() 86 .addEqualityGroup(Functions.forMap(map, 42)) in testForMapWithoutDefault() [all …]
|
/external/python/cpython2/Mac/Modules/qd/ |
D | qdedit.py | 4 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/tinyxml2/docs/ |
D | menudata.js | 8 {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/ |
D | packed-structure.c | 3 // 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/jsilver/src/com/google/clearsilver/jsilver/functions/bundles/ |
D | CoreOperators.java | 17 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 …]
|
D | ClearSilverCompatibleFunctions.java | 17 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/compiler-rt/make/platform/ |
D | clang_darwin.mk | 1 # 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 …]
|
D | darwin_bni.mk | 41 FUNCTIONS := absvdi2 absvsi2 addvdi3 addvsi3 ashldi3 ashrdi3 \ 56 FUNCTIONS.i386 := $(FUNCTIONS) \ 60 FUNCTIONS.ppc := $(FUNCTIONS) \ 65 FUNCTIONS.x86_64 := $(FUNCTIONS) \ 76 FUNCTIONS.armv4t := $(FUNCTIONS) 78 FUNCTIONS.armv5 := $(FUNCTIONS) \ 91 FUNCTIONS.armv6 := $(FUNCTIONS) \ 107 FUNCTIONS.armv7 := $(FUNCTIONS) \ 120 FUNCTIONS.armv7s := $(FUNCTIONS.armv7) 122 FUNCTIONS.arm64 := divti3 modti3 \
|
/external/pdfium/testing/tools/ |
D | api_check.py | 6 """Verifies exported functions in public/*.h are in fpdfview_c_api_test.c. 8 This script gathers a list of functions from public/*.h that contain 9 FPDF_EXPORT. It then gathers a list of functions from 41 functions = [] 46 functions.append(_FindFunction(split_line[0], filename)) 60 functions.append(_FindFunction(split_line[callconv_index + 1], filename)) 61 return functions 66 functions = [] 69 functions.extend(_GetExportsFromHeader(public_path, filename)) 70 return functions [all …]
|
/external/autotest/utils/ |
D | parallel.py | 12 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 …]
|
/external/apache-xml/src/main/java/org/apache/xpath/compiler/ |
D | FunctionTable.java | 24 import org.apache.xpath.functions.Function; 150 * The function table contains customized functions 155 * Table of function name to function ID associations for customized functions 160 * Number of built in functions. Be sure to update this as 161 * built-in functions are added. 166 * Number of built-in functions that may be added. 178 m_functions[FUNC_CURRENT] = org.apache.xpath.functions.FuncCurrent.class; 179 m_functions[FUNC_LAST] = org.apache.xpath.functions.FuncLast.class; 180 m_functions[FUNC_POSITION] = org.apache.xpath.functions.FuncPosition.class; 181 m_functions[FUNC_COUNT] = org.apache.xpath.functions.FuncCount.class; [all …]
|
/external/deqp/external/openglcts/data/mustpass/gles/khronos_mustpass/3.2.2.x/src/ |
D | gles2-gtf-master.txt | 347 GTF-GLES2.gtf.GL.functions.qualifiers_float_vert 348 GTF-GLES2.gtf.GL.functions.qualifiers_float_frag 349 GTF-GLES2.gtf.GL.functions.qualifiers_struct_vert 350 GTF-GLES2.gtf.GL.functions.qualifiers_struct_frag 351 GTF-GLES2.gtf.GL.functions.array_float_vert 352 GTF-GLES2.gtf.GL.functions.array_float_frag 353 GTF-GLES2.gtf.GL.functions.void_empty_empty_void_empty_frag 354 GTF-GLES2.gtf.GL.functions.void_empty_empty_void_empty_vert 355 GTF-GLES2.gtf.GL.functions.bool_empty_empty_bool_empty_frag 356 GTF-GLES2.gtf.GL.functions.bool_empty_empty_bool_empty_vert [all …]
|
/external/deqp/external/openglcts/data/mustpass/gles/khronos_mustpass/3.2.3.x/ |
D | gles2-gtf-master.txt | 347 GTF-GLES2.gtf.GL.functions.qualifiers_float_vert 348 GTF-GLES2.gtf.GL.functions.qualifiers_float_frag 349 GTF-GLES2.gtf.GL.functions.qualifiers_struct_vert 350 GTF-GLES2.gtf.GL.functions.qualifiers_struct_frag 351 GTF-GLES2.gtf.GL.functions.array_float_vert 352 GTF-GLES2.gtf.GL.functions.array_float_frag 353 GTF-GLES2.gtf.GL.functions.void_empty_empty_void_empty_frag 354 GTF-GLES2.gtf.GL.functions.void_empty_empty_void_empty_vert 355 GTF-GLES2.gtf.GL.functions.bool_empty_empty_bool_empty_frag 356 GTF-GLES2.gtf.GL.functions.bool_empty_empty_bool_empty_vert [all …]
|
/external/deqp/external/openglcts/data/mustpass/gles/khronos_mustpass/3.2.2.x/ |
D | gles2-gtf-master.txt | 347 GTF-GLES2.gtf.GL.functions.qualifiers_float_vert 348 GTF-GLES2.gtf.GL.functions.qualifiers_float_frag 349 GTF-GLES2.gtf.GL.functions.qualifiers_struct_vert 350 GTF-GLES2.gtf.GL.functions.qualifiers_struct_frag 351 GTF-GLES2.gtf.GL.functions.array_float_vert 352 GTF-GLES2.gtf.GL.functions.array_float_frag 353 GTF-GLES2.gtf.GL.functions.void_empty_empty_void_empty_frag 354 GTF-GLES2.gtf.GL.functions.void_empty_empty_void_empty_vert 355 GTF-GLES2.gtf.GL.functions.bool_empty_empty_bool_empty_frag 356 GTF-GLES2.gtf.GL.functions.bool_empty_empty_bool_empty_vert [all …]
|
/external/deqp/external/openglcts/data/mustpass/gles/khronos_mustpass/3.2.3.x/src/ |
D | gles2-gtf-master.txt | 347 GTF-GLES2.gtf.GL.functions.qualifiers_float_vert 348 GTF-GLES2.gtf.GL.functions.qualifiers_float_frag 349 GTF-GLES2.gtf.GL.functions.qualifiers_struct_vert 350 GTF-GLES2.gtf.GL.functions.qualifiers_struct_frag 351 GTF-GLES2.gtf.GL.functions.array_float_vert 352 GTF-GLES2.gtf.GL.functions.array_float_frag 353 GTF-GLES2.gtf.GL.functions.void_empty_empty_void_empty_frag 354 GTF-GLES2.gtf.GL.functions.void_empty_empty_void_empty_vert 355 GTF-GLES2.gtf.GL.functions.bool_empty_empty_bool_empty_frag 356 GTF-GLES2.gtf.GL.functions.bool_empty_empty_bool_empty_vert [all …]
|
/external/fec/ |
D | rs.3 | 53 These functions implement Reed-Solomon error control encoding and 55 sets of functions are supplied. To access these functions, add "-lfec" 58 The functions with names ending in \fB_int\fR handle data in integer arrays, 62 The functions with names ending in \fB_char\fR take unsigned char arrays and can 70 11. These functions use the conventional 78 \fBdecode_rs_ccsds\fR are provided. These functions use two lookup 84 The \fB_8\fR and \fB_ccsds\fR functions do not require initialization. 119 The \fBencode_rs_char\fR and \fBencode_rs_int\fR functions accept 128 The \fBdecode_\fR functions correct 135 To maximize performance, the encode and decode functions perform no [all …]
|
/external/deqp/external/openglcts/modules/common/ |
D | glcRobustBufferAccessBehaviorTests.hpp | 49 Buffer(const glw::Functions& gl); 62 static void Bind(const glw::Functions& gl, glw::GLuint id, glw::GLenum target); 63 …static void BindBase(const glw::Functions& gl, glw::GLuint id, glw::GLenum target, glw::GLuint ind… 64 …static void Data(const glw::Functions& gl, glw::GLenum target, glw::GLenum usage, glw::GLsizeiptr … 66 static void Generate(const glw::Functions& gl, glw::GLuint& out_id); 67 …static void SubData(const glw::Functions& gl, glw::GLenum target, glw::GLintptr offset, glw::GLsiz… 82 const glw::Functions& m_gl; 94 Framebuffer(const glw::Functions& gl); 101 static void AttachTexture(const glw::Functions& gl, glw::GLenum target, glw::GLenum attachment, 104 static void Bind(const glw::Functions& gl, glw::GLenum target, glw::GLuint id); [all …]
|
/external/deqp/framework/opengl/ |
D | gluObjectWrapper.cpp | 36 ObjectWrapper::ObjectWrapper (const glw::Functions& gl, const ObjectTraits& traits) in ObjectWrapper() 58 ObjectWrapper::ObjectWrapper (const glw::Functions& gl, const ObjectTraits& traits, deUint32 object) in ObjectWrapper() 73 { "texture", &glw::Functions::genTextures, &glw::Functions::deleteTextures }, 74 { "buffer", &glw::Functions::genBuffers, &glw::Functions::deleteBuffers }, 75 { "renderbuffer", &glw::Functions::genRenderbuffers, &glw::Functions::deleteRenderbuffers }, 76 { "framebuffer", &glw::Functions::genFramebuffers, &glw::Functions::deleteFramebuffers }, 77 …{ "transform feedback", &glw::Functions::genTransformFeedbacks, &glw::Functions::deleteTransformFe… 78 { "vertex array", &glw::Functions::genVertexArrays, &glw::Functions::deleteVertexArrays }, 79 { "query", &glw::Functions::genQueries, &glw::Functions::deleteQueries }, 80 { "sampler", &glw::Functions::genSamplers, &glw::Functions::deleteSamplers }, [all …]
|