HomeSort by relevance Sort by last modified time
    Searched refs:Array (Results 326 - 350 of 1038) sorted by null

<<11121314151617181920>>

  /external/eigen/lapack/
ilazlr.f 26 * .. Array Arguments ..
56 *> A is COMPLEX*16 array, dimension (LDA,N)
63 *> The leading dimension of the array A. LDA >= max(1,M).
89 * .. Array Arguments ..
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
CalendarUtil.java 88 UResource.Array types = value.getArray();
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
CalendarUtil.java 86 UResource.Array types = value.getArray();
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_parse.h 69 struct tgsi_declaration_array Array;
  /external/tensorflow/tensorflow/lite/toco/graph_transformations/
convert_trivial_pack_to_reshape.cc 49 // Input array cannot be 0-D.
64 Array& shape_array = model->GetOrCreateArray(shape_array_name);
resolve_constant_transpose.cc 26 // Transposes an array up to rank 4.
29 void Transpose(Model* model, const Array& input_array,
30 const std::vector<int>& perm, Array* output_array) {
132 const Array& input_array = model->GetArray(op->inputs[0]);
  /external/virglrenderer/src/gallium/auxiliary/tgsi/
tgsi_parse.h 69 struct tgsi_declaration_array Array;
  /art/runtime/entrypoints/
entrypoint_utils.h 35 class Array;
86 // Given the context of a calling Method, use its DexCache to resolve a type to an array Class. If
87 // it cannot be resolved, throw an error. If it can, use it to create an array.
91 ALWAYS_INLINE inline ObjPtr<mirror::Array> AllocArrayFromCode(dex::TypeIndex type_idx,
101 inline ObjPtr<mirror::Array> AllocArrayFromCodeResolved(ObjPtr<mirror::Class> klass,
  /external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BitSet.cs 36 using Array = System.Array;
70 /** <summary>Construction from a static array of longs</summary> */
164 Array.Resize(ref _bits, nwords);
264 /** <summary>return how much space is being used by the bits array not how many actually have member bits on.</summary> */
  /external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/
BitSet.cs 37 using Array = System.Array;
73 /** <summary>Construction from a static array of longs</summary> */
185 Array.Resize(ref _bits, nwords);
312 /** <summary>return how much space is being used by the bits array not how many actually have member bits on.</summary> */
  /external/caliper/caliper/src/main/java/com/google/caliper/memory/
ObjectExplorer.java 24 import java.lang.reflect.Array;
119 * Since we push paths to explore in a stack, we push references found in the array in
120 * reverse order, so when we pop them, they will be in the array's order.
122 for (int i = Array.getLength(value) - 1; i >= 0; i--) {
123 Object childValue = Array.get(value, i);
213 * @return An array of fields of the given class.
  /external/junit/src/main/java/org/junit/experimental/theories/internal/
AllMembersSupplier.java 3 import java.lang.reflect.Array;
132 private void addArrayValues(ParameterSignature sig, String name, List<PotentialAssignment> list, Object array) {
133 for (int i = 0; i < Array.getLength(array); i++) {
134 Object value = Array.get(array, i);
  /external/libchrome/mojo/public/tools/bindings/pylib/mojom/generate/
pack_tests.py 96 mojom.Array().MakeNullableKind(),
98 mojom.Array(length=5).MakeNullableKind(),
114 mojom.UINT64, mojom.Struct('test'), mojom.Array(),
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
codegen.ml 44 if Array.length params == Array.length args then () else
46 let args = Array.map codegen_expr args in
174 let doubles = Array.make (Array.length args) double_type in
194 Array.iteri (fun i a ->
  /external/mesa3d/src/mesa/state_tracker/
st_cb_rasterpos.c 63 struct gl_vertex_array array[VERT_ATTRIB_MAX]; member in struct:rastpos_stage
196 for (i = 0; i < ARRAY_SIZE(rs->array); i++) {
197 rs->array[i].Size = 4;
198 rs->array[i].Type = GL_FLOAT;
199 rs->array[i].Format = GL_RGBA;
200 rs->array[i].StrideB = 0;
201 rs->array[i].Ptr = (GLubyte *) ctx->Current.Attrib[i];
202 rs->array[i].Normalized = GL_TRUE;
203 rs->array[i].BufferObj = NULL;
204 rs->arrays[i] = &rs->array[i]
    [all...]
  /external/mesa3d/src/mesa/vbo/
vbo_split_inplace.c 45 const struct gl_vertex_array **array; member in struct:split_context
66 const struct gl_vertex_array **saved_arrays = ctx->Array._DrawArrays;
87 ctx->Array._DrawArrays = split->array;
99 ctx->Array._DrawArrays = saved_arrays;
240 split->array,
252 split->array,
279 split.array = arrays;
  /external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
MessageNanoPrinter.java 33 import java.lang.reflect.Array;
83 * @param object the value to print. May in fact be a primitive value or byte array and not a
127 // bytes is special since it's not repeated, but is represented by an array
131 int len = value == null ? 0 : Array.getLength(value);
133 Object elem = Array.get(value, i);
254 * Appends a quoted byte array to the provided {@code StringBuffer}.
  /external/python/cpython2/Lib/multiprocessing/
sharedctypes.py 42 __all__ = ['RawValue', 'RawArray', 'Value', 'Array', 'copy', 'synchronized']
83 Returns a ctypes array allocated from shared memory
113 def Array(typecode_or_type, size_or_initializer, **kwds):
139 elif isinstance(obj, ctypes.Array):
160 if isinstance(obj, ctypes.Array):
  /external/python/cpython3/Lib/multiprocessing/
sharedctypes.py 19 __all__ = ['RawValue', 'RawArray', 'Value', 'Array', 'copy', 'synchronized']
56 Returns a ctypes array allocated from shared memory
84 def Array(typecode_or_type, size_or_initializer, *, lock=True, ctx=None):
109 elif isinstance(obj, ctypes.Array):
130 if isinstance(obj, ctypes.Array):
  /external/swiftshader/src/Pipeline/
ShaderCore.hpp 159 x = new Array<Float4>(size);
160 y = new Array<Float4>(size);
161 z = new Array<Float4>(size);
162 w = new Array<Float4>(size);
166 x = new Array<Float4>[size];
167 y = new Array<Float4>[size];
168 z = new Array<Float4>[size];
169 w = new Array<Float4>[size];
220 Array<Float4> *x;
221 Array<Float4> *y
    [all...]
  /external/swiftshader/src/Shader/
ShaderCore.hpp 159 x = new Array<Float4>(size);
160 y = new Array<Float4>(size);
161 z = new Array<Float4>(size);
162 w = new Array<Float4>(size);
166 x = new Array<Float4>[size];
167 y = new Array<Float4>[size];
168 z = new Array<Float4>[size];
169 w = new Array<Float4>[size];
220 Array<Float4> *x;
221 Array<Float4> *y
    [all...]
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter5/
codegen.ml 44 if Array.length params == Array.length args then () else
46 let args = Array.map codegen_expr args in
174 let doubles = Array.make (Array.length args) double_type in
194 Array.iteri (fun i a ->
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/OCaml-Kaleidoscope/Chapter5/
codegen.ml 44 if Array.length params == Array.length args then () else
46 let args = Array.map codegen_expr args in
174 let doubles = Array.make (Array.length args) double_type in
194 Array.iteri (fun i a ->
  /external/v8/src/runtime/
runtime-typedarray.cc 11 #include "src/objects/js-array-buffer-inl.h"
36 // Shared array buffers should never be neutered.
112 Handle<JSTypedArray> array; local
115 isolate, array, JSTypedArray::Validate(isolate, target_obj, method));
118 // if array.[[ViewedArrayBuffer]] is neutered(v8:4648)
119 if (V8_UNLIKELY(array->WasNeutered())) return *array;
121 size_t length = array->length_value();
122 if (length <= 1) return *array;
125 FixedTypedArrayBase::cast(array->elements()), isolate)
    [all...]
  /art/runtime/mirror/
object_test.cc 23 #include "array-alloc-inl.h"
24 #include "array-inl.h"
160 MutableHandle<Array> a = hs.NewHandle(
161 Array::Alloc<true>(soa.Self(), c.Get(), 1, c->GetComponentSizeShift(), allocator_type));
166 a.Assign(Array::Alloc<true>(soa.Self(), c.Get(), 1, c->GetComponentSizeShift(), allocator_type));
171 a.Assign(Array::Alloc<true>(soa.Self(), c.Get(), 1, c->GetComponentSizeShift(), allocator_type));
181 MutableHandle<Array> a = hs.NewHandle(
182 Array::Alloc<true, true>(soa.Self(), c.Get(), 1, c->GetComponentSizeShift(), allocator_type));
188 Array::Alloc<true, true>(soa.Self(), c.Get(), 2, c->GetComponentSizeShift(), allocator_type));
194 Array::Alloc<true, true>(soa.Self(), c.Get(), 2, c->GetComponentSizeShift(), allocator_type))
564 Handle<Object> array = local
    [all...]

Completed in 1555 milliseconds

<<11121314151617181920>>