/external/eigen/lapack/ |
dlarf.f | 28 * .. Array Arguments .. 72 *> V is DOUBLE PRECISION array, dimension 93 *> C is DOUBLE PRECISION array, dimension (LDC,N) 102 *> The leading dimension of the array C. LDC >= max(1,M). 107 *> WORK is DOUBLE PRECISION array, dimension 137 * .. Array Arguments ..
|
dlarfg.f | 27 * .. Array Arguments .. 76 *> X is DOUBLE PRECISION array, dimension 118 * .. Array Arguments ..
|
slarf.f | 28 * .. Array Arguments .. 72 *> V is REAL array, dimension 93 *> C is REAL array, dimension (LDC,N) 102 *> The leading dimension of the array C. LDC >= max(1,M). 107 *> WORK is REAL array, dimension 137 * .. Array Arguments ..
|
zlarf.f | 28 * .. Array Arguments .. 76 *> V is COMPLEX*16 array, dimension 97 *> C is COMPLEX*16 array, dimension (LDC,N) 106 *> The leading dimension of the array C. LDC >= max(1,M). 111 *> WORK is COMPLEX*16 array, dimension 141 * .. Array Arguments ..
|
zlarfg.f | 27 * .. Array Arguments .. 76 *> X is COMPLEX*16 array, dimension 118 * .. Array Arguments ..
|
/external/eigen/test/ |
geo_eulerangles.cpp | 63 typedef Array<Scalar,3,1> Array3;
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/ |
parser.ml | 42 Ast.Call (id, Array.of_list (List.rev args)) 140 Ast.Prototype (id, Array.of_list (List.rev args))
|
/external/mesa3d/src/mesa/main/ |
nvprogram.c | 352 * Get a vertex (or vertex array) attribute. 359 const struct gl_client_array *array; local 368 array = &ctx->Array.ArrayObj->VertexAttrib[VERT_ATTRIB_GENERIC(index)]; 372 params[0] = array->Size; 375 params[0] = array->Stride; 378 params[0] = array->Type; 396 * Get a vertex (or vertex array) attribute. 403 const struct gl_client_array *array; local 412 array = &ctx->Array.ArrayObj->VertexAttrib[VERT_ATTRIB_GENERIC(index)] 447 const struct gl_client_array *array; local [all...] |
/external/mesa3d/src/mesa/state_tracker/ |
st_atom.c | 131 const struct gl_client_array **arrays = st->ctx->Array._DrawArrays;
|
/external/mesa3d/src/mesa/vbo/ |
vbo_primitive_restart.c | 74 * Scan the elements array to find restart indexes. Return an array 174 GLuint restart_index = ctx->Array.RestartIndex;
|
/external/mockito/src/main/java/org/mockito/internal/util/collections/ |
HashCodeAndEqualsSafeSet.java | 15 import static java.lang.reflect.Array.*; 99 private <T> T[] unwrapTo(T[] array) { 101 for (int i = 0, objectsLength = array.length; i < objectsLength; i++) { 103 array[i] = (T) iterator.next(); 106 return array; 111 T[] array = typedArray.length >= size() ? typedArray : (T[]) newInstance(typedArray.getClass().getComponentType(), size()); local 112 return unwrapTo(array);
|
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter5/ |
parser.ml | 42 Ast.Call (id, Array.of_list (List.rev args)) 140 Ast.Prototype (id, Array.of_list (List.rev args))
|
/frameworks/base/core/java/android/text/ |
SpannableStringInternal.java | 24 import java.lang.reflect.Array; 330 ret = (Object[]) Array.newInstance(kind, spanCount - i + 1); 359 ret = (Object[]) Array.newInstance(kind, 1); 367 Object[] nret = (Object[]) Array.newInstance(kind, count);
|
/libcore/luni/src/test/java/libcore/java/lang/ |
ClassCastExceptionTest.java | 20 import java.lang.reflect.Array;
|
/libcore/ojluni/src/main/java/java/sql/ |
PreparedStatement.java | 109 * a <code>ARRAY</code>, <code>BLOB</code>, <code>CLOB</code>, 240 * Sets the designated parameter to the given Java array of bytes. The driver converts 403 * a <code>ARRAY</code>, <code>BLOB</code>, <code>CLOB</code>, 434 * or <code>Array</code>, the driver should pass it to the database as a 573 * Sets the designated parameter to the given <code>java.sql.Array</code> object. 574 * The driver converts this to an SQL <code>ARRAY</code> value when it 578 * @param x an <code>Array</code> object that maps an SQL <code>ARRAY</code> value 585 void setArray (int parameterIndex, Array x) throws SQLException; [all...] |
ResultSet.java | 369 * a <code>byte</code> array in the Java programming language. 657 * a <code>byte</code> array in the Java programming language. [all...] |
/libcore/ojluni/src/main/java/java/util/ |
AbstractCollection.java | 115 * <p>This implementation returns an array containing all the elements 117 * consecutive elements of the array, starting with index {@code 0}. 118 * The length of the returned array is equal to the number of elements 135 // Estimate size of array; be prepared to see more or fewer elements 149 * <p>This implementation returns an array containing all the elements 151 * consecutive elements of the array, starting with index {@code 0}. 153 * fit into the specified array, then the elements are returned in a 154 * newly allocated array with length equal to the number of elements 175 // Estimate size of array; be prepared to see more or fewer elements 178 (T[])java.lang.reflect.Array [all...] |
/libcore/ojluni/src/main/java/sun/invoke/util/ |
BytecodeDescriptor.java | 90 t = java.lang.reflect.Array.newInstance(t, 0).getClass();
|
/prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/dummy/ |
__init__.py | 48 import array 128 def Array(typecode, sequence, lock=True): 129 return array.array(typecode, sequence)
|
/prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/dummy/ |
__init__.py | 48 import array 128 def Array(typecode, sequence, lock=True): 129 return array.array(typecode, sequence)
|
/prebuilts/go/darwin-x86/src/encoding/json/ |
example_test.go | 89 {"Message": "Hello", "Array": [1, 2, 3], "Null": null, "Number": 1.234} 110 // string: Array (more) 123 // This example uses a Decoder to decode a streaming array of JSON objects. 146 // while the array contains values 149 // decode an array value (Message)
|
/prebuilts/go/linux-x86/src/encoding/json/ |
example_test.go | 89 {"Message": "Hello", "Array": [1, 2, 3], "Null": null, "Number": 1.234} 110 // string: Array (more) 123 // This example uses a Decoder to decode a streaming array of JSON objects. 146 // while the array contains values 149 // decode an array value (Message)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/dummy/ |
__init__.py | 48 import array 128 def Array(typecode, sequence, lock=True): 129 return array.array(typecode, sequence)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/dummy/ |
__init__.py | 48 import array 128 def Array(typecode, sequence, lock=True): 129 return array.array(typecode, sequence)
|
/frameworks/base/rs/java/android/renderscript/ |
Allocation.java | 94 throw new RSIllegalArgumentException("Object passed is not an array of primitives."); 98 throw new RSIllegalArgumentException("Object passed is not an Array of primitives."); 300 * Specifies the mapping between the Allocation's cells and an array's elements 301 * when data is copied from the Allocation to the array, or vice-versa. 305 * copying data from the Allocation to an array or vice-versa less efficient. 310 * i.e. the first 3 vector components of each cell, will be mapped between the array 314 * <p> For example, when copying an integer array to an Allocation of two {@link 317 * The array must have at least 8 integers, with the first 4 integers copied 322 * The array just needs to have at least 6 integers, with the first 3 integers 326 * <p> Similarly, when copying a byte array to an Allocation of two {@lin 1148 mRS.nAllocationData1D(getIDSafe(), off, mSelectedLOD, count, array, dataSize, dt, local 1491 array, sizeBytes, dt, local 1768 array, sizeBytes, dt, local 1876 mRS.nAllocationRead(getID(mRS), array, dt, mType.mElement.mType.mSize, usePadding); local 2102 mRS.nAllocationRead1D(getIDSafe(), off, mSelectedLOD, count, array, dataSize, dt, local 2410 array, sizeBytes, dt, mType.mElement.mType.mSize, usePadding); local 2607 array, sizeBytes, dt, mType.mElement.mType.mSize, usePadding); local [all...] |