/external/mesa3d/src/glx/ |
D | indirect_vertex_array.c | 78 const struct array_state_vector *arrays, 81 const struct array_state_vector *arrays, 84 *arrays, GLenum key, 86 static void fill_array_info_cache(struct array_state_vector *arrays); 115 struct array_state_vector *arrays = state->array_state; in __glXFreeVertexArrayState() local 117 if (arrays) { in __glXFreeVertexArrayState() 118 free(arrays->stack); in __glXFreeVertexArrayState() 119 arrays->stack = NULL; in __glXFreeVertexArrayState() 120 free(arrays->arrays); in __glXFreeVertexArrayState() 121 arrays->arrays = NULL; in __glXFreeVertexArrayState() [all …]
|
/external/skia/tests/sksl/runtime_errors/ |
D | IllegalArrayOps.skvm | 3 error: 16: operator '=' can not operate on arrays (or structs containing arrays) 4 error: 17: operator '=' can not operate on arrays (or structs containing arrays) 5 error: 18: operator '=' can not operate on arrays (or structs containing arrays) 6 error: 21: functions may not return structs containing arrays 7 error: 22: functions may not return structs containing arrays 8 error: 24: operator '==' can not operate on arrays (or structs containing arrays) 9 error: 25: operator '==' can not operate on arrays (or structs containing arrays) 10 error: 26: operator '==' can not operate on arrays (or structs containing arrays) 11 error: 28: operator '!=' can not operate on arrays (or structs containing arrays) 12 error: 29: operator '!=' can not operate on arrays (or structs containing arrays) [all …]
|
/external/mesa3d/src/mesa/drivers/dri/nouveau/ |
D | nouveau_vbo_t.c | 60 const struct tnl_vertex_array *arrays) in vbo_init_arrays() argument 81 const struct tnl_vertex_array *array = &arrays[attr]; in vbo_init_arrays() 97 const struct tnl_vertex_array *arrays) in vbo_deinit_arrays() argument 121 vbo_choose_render_mode(struct gl_context *ctx, const struct tnl_vertex_array *arrays) in vbo_choose_render_mode() argument 130 if (arrays[VERT_ATTRIB_MAT(i)].BufferBinding->Stride) { in vbo_choose_render_mode() 139 vbo_emit_attr(struct gl_context *ctx, const struct tnl_vertex_array *arrays, in vbo_emit_attr() argument 144 const struct tnl_vertex_array *array = &arrays[attr]; in vbo_emit_attr() 182 vbo_choose_attrs(struct gl_context *ctx, const struct tnl_vertex_array *arrays) in vbo_choose_attrs() argument 191 vbo_emit_attr(ctx, arrays, VERT_ATTRIB_COLOR0); in vbo_choose_attrs() 193 vbo_emit_attr(ctx, arrays, VERT_ATTRIB_COLOR1); in vbo_choose_attrs() [all …]
|
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/ |
D | modernize-avoid-c-arrays.rst | 1 .. title:: clang-tidy - modernize-avoid-c-arrays 3 modernize-avoid-c-arrays 6 `cppcoreguidelines-avoid-c-arrays` redirects here as an alias for this check. 8 `hicpp-avoid-c-arrays` redirects here as an alias for this check. 11 ``std::vector<>``. All types of C arrays are diagnosed. 18 int a[] = {1, 2}; // warning: do not declare C-style arrays, use std::array<> instead 20 int b[1]; // warning: do not declare C-style arrays, use std::array<> instead 23 int c[b[0]]; // warning: do not declare C VLA arrays, use std::vector<> instead 28 T d[Size]; // warning: do not declare C-style arrays, use std::array<> instead 30 int e[1]; // warning: do not declare C-style arrays, use std::array<> instead [all …]
|
D | cppcoreguidelines-avoid-c-arrays.rst | 1 .. title:: clang-tidy - cppcoreguidelines-avoid-c-arrays 3 :http-equiv=refresh: 5;URL=modernize-avoid-c-arrays.html 5 cppcoreguidelines-avoid-c-arrays 8 The cppcoreguidelines-avoid-c-arrays check is an alias, please see 9 `modernize-avoid-c-arrays <modernize-avoid-c-arrays.html>`_
|
D | hicpp-avoid-c-arrays.rst | 1 .. title:: clang-tidy - hicpp-avoid-c-arrays 3 :http-equiv=refresh: 5;URL=modernize-avoid-c-arrays.html 5 hicpp-avoid-c-arrays 8 The hicpp-avoid-c-arrays check is an alias, please see 9 `modernize-avoid-c-arrays <modernize-avoid-c-arrays.html>`_
|
/external/deqp/doc/testspecs/GLES31/ |
D | functional.shaders.arrays_of_arrays.txt | 19 Arrays of arrays tests 30 + Arrays of arrays of 2, 3, and more levels 33 + Arrays of arrays as function return types 34 + Arrays of arrays as function in, out, and inout parameters 35 + Accessing arrays of arrays 36 - Indexing arrays of arrays with constant and dynamic expressions 41 + Arrays of arrays in function overloading 42 - Tests to verify that different sized arrays of arrays can be used to 47 - Multi-level SSBO/UBO instance arrays 48 + Arrays of arrays inside SSBOs, UBOs
|
/external/deqp/data/gles31/shaders/es32/ |
D | arrays_of_arrays.test | 20 #X1. Constructor tests test constructing arrays of arrays with different declaration syntax and dat… 21 #X2. Return value tests test arrays of arrays as function return values. 22 #X3. Parameter tests test arrays of arrays as different types of function parameters (in, out, unna… 23 #X4. Implicit size tests test constructing arrays of arrays with implicit size. 24 #X5. Assignment tests test assigning an array of arrays to another array of arrays variable. 25 #X6. Length tests test the length method of arrays of arrays. 28 group constructor "Array of arrays constructors" 33 desc "Testing constructing explicitly sized arrays of arrays" 60 desc "Testing constructing explicitly sized arrays of arrays" 87 desc "Testing constructing explicitly sized arrays of arrays" [all …]
|
/external/deqp/data/gles31/shaders/es31/ |
D | arrays_of_arrays.test | 1 #X1. Constructor tests test constructing arrays of arrays with different declaration syntax and dat… 2 #X2. Return value tests test arrays of arrays as function return values. 3 #X3. Parameter tests test arrays of arrays as different types of function parameters (in, out, unna… 4 #X4. Implicit size tests test constructing arrays of arrays with implicit size. 5 #X5. Assignment tests test assigning an array of arrays to another array of arrays variable. 6 #X6. Length tests test the length method of arrays of arrays. 9 group constructor "Array of arrays constructors" 14 desc "Testing constructing explicitly sized arrays of arrays" 41 desc "Testing constructing explicitly sized arrays of arrays" 68 desc "Testing constructing explicitly sized arrays of arrays" [all …]
|
/external/tensorflow/tensorflow/lite/toco/ |
D | toco_flags.proto | 50 // quantization of input arrays, separately from other arrays. 53 // by default input arrays are quantized like other arrays. 55 // Like inference_type, this only affects real-number arrays. By "real-number" 56 // we mean float arrays, and quantized arrays. This excludes plain 57 // integer arrays, strings arrays, and every other data type. 63 // parameters used for such input arrays are their mean_value, std_value 67 // Sets the type of real-number arrays in the output file, that is, controls 69 // except for input arrays, which are controlled by inference_input_type. 71 // NOTE: this flag only impacts real-number arrays. By "real-number" 72 // we mean float arrays, and quantized arrays. This excludes plain [all …]
|
/external/tensorflow/tensorflow/python/keras/engine/ |
D | training_utils.py | 29 def slice_arrays(arrays, indices, contiguous=True): argument 48 if not isinstance(arrays, list): 50 arrays = [arrays] 51 if any(tensor_util.is_tf_type(x) for x in arrays): 53 entries = [[x[i:i + 1] for i in indices] for x in arrays] 56 slices = [x[indices[0]:indices[-1] + 1] for x in arrays] 58 slices = generic_utils.slice_arrays(arrays, indices)
|
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/ |
D | add.pbtxt | 1 …import=false %s -tf-input-arrays=input0,input1 -tf-input-data-types=DT_INT32,DT_INT32 -tf-input-sh… 2 …-shape-inference-on-import=false %s -tf-input-arrays=input0,input1 -tf-input-shapes=10:10 -tf-outp… 3 …on-import=false %s -tf-input-arrays=input0,input1 -tf-input-shapes=10:10 -tf-input-data-types=',DT… 4 …-on-import=false %s -tf-input-arrays=input0,input1 -tf-input-shapes=*:* -tf-input-data-types=',DT_… 5 …import=false %s -tf-input-arrays=input0,input1 -tf-input-shapes=?,1,?:1,?,1 -tf-input-data-types='…
|
/external/deqp/modules/gles2/functional/ |
D | es2fVertexArrayTest.cpp | 103 spec.arrays.push_back(arraySpec); in init() 173 spec.arrays.push_back(arraySpec); in init() 244 spec.arrays.push_back(arraySpec); in init() 312 spec.arrays.push_back(arraySpec); in init() 375 spec.arrays.push_back(arraySpec); in init() 440 spec.arrays.push_back(arraySpec); in init() 511 << spec.arrays.size(); in getTestName() 542 spec.arrays.push_back(arraySpec); in init() 581 << spec.arrays.size(); in getTestName() 583 for (int arrayNdx = 0; arrayNdx < (int)spec.arrays.size(); arrayNdx++) in getTestName() [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | DateFormatSymbols.java | 1711 Map<String, String[]> arrays = new TreeMap<>(); field in DateFormatSymbols.CalendarDataSink 1775 if (!arrays.containsKey(keyString) && !maps.containsKey(keyString)) { in put() 1789 if (!keyString.endsWith("%variant") && !arrays.containsKey(keyString)) { in put() 1791 arrays.put(keyString, dataArray); in put() 1811 if (arrays.containsKey(alias)) { in put() 1812 arrays.put(aliasPathPairs.get(i + 1), arrays.get(alias)); in put() 1876 if (arrays.containsKey(currentPath) in processResource() 1891 arrays.put(currentPath, dataArray); in processResource() 2021 Map<String, String[]> arrays = calendarSink.arrays; in initializeData() local 2024 eras = arrays.get("eras/abbreviated"); in initializeData() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | DateFormatSymbols.java | 1669 Map<String, String[]> arrays = new TreeMap<>(); field in DateFormatSymbols.CalendarDataSink 1733 if (!arrays.containsKey(keyString) && !maps.containsKey(keyString)) { in put() 1747 if (!keyString.endsWith("%variant") && !arrays.containsKey(keyString)) { in put() 1749 arrays.put(keyString, dataArray); in put() 1769 if (arrays.containsKey(alias)) { in put() 1770 arrays.put(aliasPathPairs.get(i + 1), arrays.get(alias)); in put() 1834 if (arrays.containsKey(currentPath) in processResource() 1849 arrays.put(currentPath, dataArray); in processResource() 1979 Map<String, String[]> arrays = calendarSink.arrays; in initializeData() local 1982 eras = arrays.get("eras/abbreviated"); in initializeData() [all …]
|
/external/tensorflow/tensorflow/python/training/tracking/ |
D | python_state_test.py | 73 arrays = super(_NumpyState, self).__getattribute__("_arrays") 78 value = getattr(arrays, name) 81 setattr(arrays, name, _NumpyWrapper(dummy_array)) 82 value = getattr(arrays, name) 85 delattr(arrays, name) 199 arrays = _NumpyState() 200 checkpoint = util.Checkpoint(numpy_arrays=arrays) 201 arrays.x = numpy.zeros([3, 4]) 203 arrays.x[1, 1] = 4. 205 self.assertAllEqual(numpy.zeros([3, 4]), arrays.x)
|
/external/skia/modules/particles/src/ |
D | SkParticleDrawable.cpp | 84 DrawAtlasArrays arrays(particles, count, center); in REFLECTED() local 86 arrays.fRects[i].setIWH(fImage->width(), fImage->height()); in REFLECTED() 89 canvas->drawAtlas(fImage.get(), arrays.fXforms.get(), arrays.fRects.get(), in REFLECTED() 90 arrays.fColors.get(), count, SkBlendMode::kModulate, sampling, in REFLECTED() 130 DrawAtlasArrays arrays(particles, count, center); in REFLECTED() local 139 arrays.fRects[i] = baseRect.makeOffset(col * baseRect.width(), row * baseRect.height()); in REFLECTED() 141 canvas->drawAtlas(fImage.get(), arrays.fXforms.get(), arrays.fRects.get(), in REFLECTED() 142 arrays.fColors.get(), count, SkBlendMode::kModulate, in REFLECTED()
|
/external/tensorflow/tensorflow/compiler/xla/python/ |
D | types.cc | 192 std::vector<py::object> arrays(elems.size()); in LiteralToPython() local 195 arrays[i], in LiteralToPython() 200 PyTuple_SET_ITEM(result.ptr(), i, arrays[i].release().ptr()); in LiteralToPython() 225 tree.arrays.reserve(tree.arrays.size() + subtree.arrays.size()); in GetPythonBufferTree() 226 std::move(subtree.arrays.begin(), subtree.arrays.end(), in GetPythonBufferTree() 227 std::back_inserter(tree.arrays)); in GetPythonBufferTree() 236 DCHECK_EQ(caster.arrays.size(), 1); in GetPythonBufferTree() 237 tree.arrays.push_back(std::move(caster.arrays.front())); in GetPythonBufferTree()
|
/external/eigen/doc/ |
D | TutorialArrayClass.dox | 12 The Array class provides general-purpose arrays, as opposed to the Matrix class which 15 such as adding a constant to every coefficient in the array or multiplying two arrays coefficient-w… 28 …me slight differences, as the word "array" is used for both 1-dimensional and 2-dimensional arrays. 29 We adopt the convention that typedefs of the form ArrayNt stand for 1-dimensional arrays, where N a… 30 …the Matrix typedefs explained on \ref TutorialMatrixClass "this page". For 2-dimensional arrays, we 60 Furthermore, the \c << operator can be used to initialize arrays (via the comma initializer) or to … 76 Adding and subtracting two arrays is the same as for matrices. 77 The operation is valid if both arrays have the same size, and the addition or subtraction is done c… 94 … course you can multiply an array by a scalar, this works in the same way as matrices. Where arrays 96 multiplication as matrix product and arrays interpret multiplication as coefficient-wise product. T… [all …]
|
/external/mesa3d/src/mesa/tnl/ |
D | t_rebase.c | 104 const struct tnl_vertex_array *arrays, in REBASE() 223 tmp_attribs[i] = *(arrays[i].VertexAttrib); in REBASE() 224 tmp_arrays[i].BufferBinding = arrays[i].BufferBinding; in REBASE() 226 if (arrays[i].BufferBinding->BufferObj) in REBASE() 228 min_index * arrays[i].BufferBinding->Stride; in REBASE() 230 tmp_attribs[i].Ptr += min_index * arrays[i].BufferBinding->Stride; in REBASE()
|
D | t_split.c | 103 const struct tnl_vertex_array arrays[], in _tnl_split_prims() argument 132 _tnl_split_copy(ctx, arrays, prim, nr_prims, ib, draw, limits); in _tnl_split_prims() 139 _tnl_split_inplace(ctx, arrays, prim, nr_prims, ib, in _tnl_split_prims() 153 _tnl_split_inplace(ctx, arrays, prim, nr_prims, ib, in _tnl_split_prims()
|
/external/deqp/doc/testspecs/GLES3/ |
D | functional.shaders.arrays.txt | 22 + dEQP-GLES3.functional.shaders.arrays.* 30 + Negative tests for illegal multi-dimensional arrays 37 Array tests receive input values and construct different type arrays to 40 Negative tests verify that multidimensional arrays cannot be defined, 41 arrays cannot be formed using C-style array syntax and that given array
|
/external/deqp/modules/gles3/functional/ |
D | es3fVertexArrayTest.cpp | 102 spec.arrays.push_back(arraySpec); in init() 207 spec.arrays.push_back(arraySpec); in init() 310 spec.arrays.push_back(arraySpec); in init() 411 spec.arrays.push_back(arraySpec); in init() 505 spec.arrays.push_back(arraySpec); in init() 621 spec.arrays.push_back(arraySpec); in init() 724 << spec.arrays.size(); in getTestName() 755 spec.arrays.push_back(arraySpec); in init() 794 << spec.arrays.size(); in getTestName() 796 for (int arrayNdx = 0; arrayNdx < (int)spec.arrays.size(); arrayNdx++) in getTestName() [all …]
|
/external/deqp/modules/glshared/ |
D | glsVertexArrayTests.cpp | 749 … ContextShaderProgram (const glu::RenderContext& ctx, const std::vector<ContextArray*>& arrays); 755 … genVertexSource (const glu::RenderContext& ctx, const std::vector<ContextArray*>& arrays); 760 …createProgramDeclaration (const glu::RenderContext& ctx, const std::vector<ContextArray*>& arrays); 766 …ram::ContextShaderProgram (const glu::RenderContext& ctx, const std::vector<ContextArray*>& arrays) in ContextShaderProgram() argument 767 : sglr::ShaderProgram (createProgramDeclaration(ctx, arrays)) in ContextShaderProgram() 768 , m_componentCount (arrays.size()) in ContextShaderProgram() 769 , m_attrType (arrays.size()) in ContextShaderProgram() 771 for (int arrayNdx = 0; arrayNdx < (int)arrays.size(); arrayNdx++) in ContextShaderProgram() 773 m_componentCount[arrayNdx] = getComponentCount(arrays[arrayNdx]->getOutputType()); in ContextShaderProgram() 774 m_attrType[arrayNdx] = mapOutputType(arrays[arrayNdx]->getOutputType()); in ContextShaderProgram() [all …]
|
/external/angle/third_party/vulkan-deps/glslang/src/Test/baseResults/ |
D | 120.vert.out | 19 ERROR: 0:35: 'arrays of arrays' : not supported with this profile: none 20 ERROR: 0:36: 'arrays of arrays' : not supported with this profile: none 21 ERROR: 0:37: 'arrays of arrays' : not supported with this profile: none 22 ERROR: 0:37: 'arrays of arrays' : not supported with this profile: none 23 ERROR: 0:38: 'arrays of arrays' : not supported with this profile: none 24 ERROR: 0:39: 'arrays of arrays' : not supported with this profile: none 25 ERROR: 0:40: 'arrays of arrays' : not supported with this profile: none 27 ERROR: 0:40: 'arrays of arrays' : not supported with this profile: none 29 ERROR: 0:41: 'arrays of arrays' : not supported with this profile: none 31 ERROR: 0:41: 'arrays of arrays' : not supported with this profile: none [all …]
|