| /external/eigen/lapack/ |
| 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/ |
| get.c | 49 * value and the offset into struct gl_context in an array of structs. Then 56 * struct gl_context but in the drawbuffer, the array object, current texture 62 * struct, it's sort of like an array of opcodes that describe extra 256 * versions, listing multiple ones in an array means an error will be thrown 620 struct gl_array_attributes *array; local 697 array = &ctx->Array.VAO->VertexAttrib[VERT_ATTRIB_TEX(ctx->Array.ActiveTexture)]; 698 v->value_int = *(GLuint *) ((char *) array + d->offset); 705 v->value_int = GL_TEXTURE0_ARB + ctx->Array.ActiveTexture [all...] |
| /external/mesa3d/src/mesa/state_tracker/ |
| st_atom.c | 123 const struct gl_vertex_array **arrays = st->ctx->Array._DrawArrays;
|
| /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/one-true-awk/ |
| run.c | 212 Cell **args; /* pointer to array of arguments after execute */ 255 i, NN(y->nval), y->fval, isarr(y) ? "(array)" : NN(y->sval), y->tval) ); 452 Cell *array(Node **a, int n) /* a[0] is symtab, a[1] is list of subscripts */ function 462 FATAL("out of memory in array"); 469 if (!adjbuf(&buf, &bufsz, strlen(buf)+strlen(s)+nsub+1, recsize, 0, "array")) 477 dprintf( ("making %s into an array\n", NN(x->nval)) ); 484 z = setsymtab(buf, "", 0.0, STR|NUM, (Array *) x->sval); 539 ap = execute(a[1]); /* array name */ 541 dprintf( ("making %s into an array\n", ap->nval) ); 562 k = lookup(buf, (Array *) ap->sval) [all...] |
| /external/python/cpython2/Lib/multiprocessing/dummy/ |
| __init__.py | 48 import array 128 def Array(typecode, sequence, lock=True): 129 return array.array(typecode, sequence)
|
| /external/python/cpython3/Lib/multiprocessing/dummy/ |
| __init__.py | 23 import array 94 def Array(typecode, sequence, lock=True): 95 return array.array(typecode, sequence)
|
| /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))
|
| /external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/ |
| NaClBitstreamReader.h | 664 uint8_t Array[sizeof(word_t)] = {0}; 666 uint64_t BytesRead = fillBuffer(Array, sizeof(Array), NextChar); 676 Array); 850 // if Op is an array (and sets Value to the number of elements in the 851 // array). 856 // assuming Op appears after an array abbreviation. 859 // Reads the array abbreviation Op, NumArrayElements times, putting
|
| /external/tensorflow/tensorflow/contrib/lite/toco/tflite/ |
| import_test.cc | 118 Array& a1 = model->GetArray("tensor_one");
|
| /external/v8/src/runtime/ |
| runtime-typedarray.cc | 65 // Shared array buffers should never be neutered. 84 *array_type = kExternal##Type##Array; \ 175 // Initializes a typed array from an array-like object. 176 // If an array-like object happens to be a typed array of the same type, 225 // We assume that the caller of this function is always a typed array 227 // If source is a typed array, this loop will always run to completion, 230 // run to completion and the typed array might remain partly initialized. 231 // However we further assume that the caller of this function is a typed array 399 Handle<JSTypedArray> array; local [all...] |
| /frameworks/base/core/java/android/text/ |
| SpannableStringInternal.java | 24 import java.lang.reflect.Array; 365 ret = (Object[]) Array.newInstance(kind, spanCount - i + 1); 394 ret = (Object[]) Array.newInstance(kind, 1); 402 Object[] nret = (Object[]) Array.newInstance(kind, count);
|
| /frameworks/base/core/jni/ |
| android_os_HwBlob.cpp | 322 static void JHwBlob_native_copyTo ## Suffix ## Array( \ 326 Type ## Array array, \ 328 if (array == nullptr) { \ 333 if (env->GetArrayLength(array) < size) { \ 346 array, \ 364 jbooleanArray array, 366 if (array == nullptr) { 371 if (env->GetArrayLength(array) < size) { 387 jboolean *dst = env->GetBooleanArrayElements(array, nullptr /* isCopy */) [all...] |
| /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)
|