HomeSort by relevance Sort by last modified time
    Searched refs:Array (Results 1126 - 1150 of 1578) sorted by null

<<41424344454647484950>>

  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/StaticAnalyzer/Core/PathSensitive/
ProgramState.h 294 /// Get the lvalue for an array index.
539 SVal ArrayToPointer(Loc Array, QualType ElementTy) {
540 return StoreMgr->ArrayToPointer(Array, ElementTy);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/StaticAnalyzer/Core/PathSensitive/
ProgramState.h 294 /// Get the lvalue for an array index.
539 SVal ArrayToPointer(Loc Array, QualType ElementTy) {
540 return StoreMgr->ArrayToPointer(Array, ElementTy);
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vet/
copylock.go 223 atyp, ok := typ.Underlying().(*types.Array)
  /prebuilts/go/darwin-x86/src/go/ast/
print.go 181 case reflect.Array:
  /prebuilts/go/darwin-x86/src/go/types/
typestring.go 110 case *Array:
  /prebuilts/go/darwin-x86/test/
copy.go 336 // Array test. Can be much simpler. It's only checking for correct handling of [0:].
337 func array() { func
338 var array [N]uint8
340 copy(array[0:], input8)
344 copy(output8, array[0:])
350 array()
index.go 161 // 2 - static checks of array bounds
186 // Array, pointer to array, slice.
213 // indexing into array or pointer to array
  /prebuilts/go/linux-x86/src/cmd/vet/
copylock.go 223 atyp, ok := typ.Underlying().(*types.Array)
  /prebuilts/go/linux-x86/src/go/ast/
print.go 181 case reflect.Array:
  /prebuilts/go/linux-x86/src/go/types/
typestring.go 110 case *Array:
  /prebuilts/go/linux-x86/test/
copy.go 336 // Array test. Can be much simpler. It's only checking for correct handling of [0:].
337 func array() { func
338 var array [N]uint8
340 copy(array[0:], input8)
344 copy(output8, array[0:])
350 array()
index.go 161 // 2 - static checks of array bounds
186 // Array, pointer to array, slice.
213 // indexing into array or pointer to array
  /external/cblas/testing/
c_cblat2.f 444 9987 FORMAT( ' AMEND DATA FILE OR INCREASE ARRAY SIZES IN PROGRAM',
486 * .. Array Arguments ..
841 * .. Array Arguments ..
    [all...]
c_dblat2.f 438 9987 FORMAT( ' AMEND DATA FILE OR INCREASE ARRAY SIZES IN PROGRAM',
478 * .. Array Arguments ..
838 * .. Array Arguments ..
    [all...]
c_sblat2.f 438 9987 FORMAT( ' AMEND DATA FILE OR INCREASE ARRAY SIZES IN PROGRAM',
478 * .. Array Arguments ..
838 * .. Array Arguments ..
    [all...]
c_zblat2.f 444 9987 FORMAT( ' AMEND DATA FILE OR INCREASE ARRAY SIZES IN PROGRAM',
487 * .. Array Arguments ..
843 * .. Array Arguments ..
    [all...]
  /external/eigen/blas/testing/
cblat2.f 419 9987 FORMAT( ' AMEND DATA FILE OR INCREASE ARRAY SIZES IN PROGRAM',
461 * .. Array Arguments ..
806 * .. Array Arguments ..
    [all...]
dblat2.f 412 9987 FORMAT( ' AMEND DATA FILE OR INCREASE ARRAY SIZES IN PROGRAM',
452 * .. Array Arguments ..
793 * .. Array Arguments ..
    [all...]
sblat2.f 412 9987 FORMAT( ' AMEND DATA FILE OR INCREASE ARRAY SIZES IN PROGRAM',
452 * .. Array Arguments ..
793 * .. Array Arguments ..
    [all...]
zblat2.f 420 9987 FORMAT( ' AMEND DATA FILE OR INCREASE ARRAY SIZES IN PROGRAM',
463 * .. Array Arguments ..
809 * .. Array Arguments ..
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/toco/
import_tensorflow.cc 156 // This breaks our invariant, that array dims can't be 0.
166 void ImportFloatArray(const TensorProto& input_tensor, Array* output_array) {
197 void ImportQuint8Array(const TensorProto& input_tensor, Array* output_array) {
223 void ImportInt32Array(const TensorProto& input_tensor, Array* output_array) {
249 void ImportInt64Array(const TensorProto& input_tensor, Array* output_array) {
275 void ImportStringArray(const TensorProto& input_tensor, Array* output_array) {
328 auto& array = model->GetOrCreateArray(node.name()); local
331 array.data_type = ArrayDataType::kFloat;
332 ImportFloatArray(tensor, &array);
335 array.data_type = ArrayDataType::kInt32
1223 auto& array = model->GetOrCreateArray(node.name()); local
1831 auto& array = model->GetOrCreateArray(array_name); local
    [all...]
  /frameworks/base/core/java/android/widget/
GridLayout.java 54 import java.lang.reflect.Array;
636 T[] result = (T[]) Array.newInstance(a.getClass().getComponentType(), a.length + b.length);
    [all...]
  /frameworks/support/gridlayout/src/main/java/androidx/gridlayout/widget/
GridLayout.java 52 import java.lang.reflect.Array;
616 T[] result = (T[]) Array.newInstance(a.getClass().getComponentType(), a.length + b.length);
    [all...]
  /libcore/ojluni/src/main/java/java/lang/invoke/
Transformers.java 28 import java.lang.reflect.Array;
253 // Read the array object and the index from the stack frame.
254 final Object[] array = (Object[]) reader.nextReference(arrayClass); local
257 // Write the array element back to the stack frame.
261 writer.putNextReference(array[index], arrayClass.getComponentType());
282 // Read the array object, index and the value to write from the stack frame.
283 final Object[] array = (Object[]) reader.nextReference(arrayClass); local
287 array[index] = value;
634 * Converts methods with a trailing array argument to variable arity
646 throw new IllegalArgumentException("target does not have array as last parameter")
1377 int[] array = new int[numArrayArgs]; local
1385 long[] array = new long[numArrayArgs]; local
1401 short[] array = new short[numArrayArgs]; local
1409 char[] array = new char[numArrayArgs]; local
1425 float[] array = new float[numArrayArgs]; local
1433 double[] array = new double[numArrayArgs]; local
    [all...]
  /art/runtime/
check_jni.cc 731 bool CheckPrimitiveArrayType(ScopedObjectAccess& soa, jarray array, Primitive::Type type)
733 if (!CheckArray(soa, array)) {
736 ObjPtr<mirror::Array> a = soa.Decode<mirror::Array>(array);
738 AbortF("incompatible array type %s expected %s[]: %p",
739 a->GetClass()->PrettyDescriptor().c_str(), PrettyDescriptor(type).c_str(), array);
897 * Verify that the "mode" argument passed to a primitive array Release
    [all...]

Completed in 1076 milliseconds

<<41424344454647484950>>