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

<<11121314151617181920>>

  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Bitcode/
BitCodes.h 102 Array = 3, // A sequence of fields, next field species elt encoding.
104 Blob = 5 // 32-bit aligned array of 8-bit characters.
130 case Array:
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Bitcode/
BitCodes.h 102 Array = 3, // A sequence of fields, next field species elt encoding.
104 Blob = 5 // 32-bit aligned array of 8-bit characters.
130 case Array:
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Bitcode/
BitCodes.h 102 Array = 3, // A sequence of fields, next field species elt encoding.
104 Blob = 5 // 32-bit aligned array of 8-bit characters.
130 case Array:
  /prebuilts/misc/common/swig/include/2.0.11/ocaml/
ocaml.i 30 | C_array a -> Swig.C_array (Array.map (swig_val t) a)
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
types.h 40 class Array;
94 DeclareCastMethod(Array);
226 class Array : public Type {
228 Array(Type* element_type, uint32_t length_id);
229 Array(const Array&) = default;
236 Array* AsArray() override { return this; }
237 const Array* AsArray() const override { return this; }
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
core-extensions.rb 202 relative_list = Array.new( reference_list.length, '..' )
230 class Array
232 # Pad an array with a given <tt>value</tt> upto a given <tt>length</tt>.
237 # to the beginning of the array.
246 Array.new( ( len+size ).abs,val ) + self
248 self + Array.new( len-size,val )
252 # Like #pad but changes the array in place.
263 replace Array.new( ( len+size ).abs,val ) + self
265 concat Array.new( len-size,val )
  /external/deqp/framework/common/
tcuFormatUtil.hpp 172 // Array formatters.
175 class Array
181 Array (const Iterator& begin_, const Iterator& end_) : begin(begin_), end(end_) {}
195 std::ostream& operator<< (std::ostream& str, const Array<Iterator>& fmt)
212 return str << Array<const T*>(fmt.arr, fmt.arr+fmt.size);
268 /** Format array contents. */
270 inline Format::Array<Iterator> formatArray (const Iterator& begin, const Iterator& end)
272 return Format::Array<Iterator>(begin, end);
275 /** Format array contents. */
282 /** Format array contents. *
    [all...]
  /external/python/cpython3/Lib/ctypes/test/
test_arrays.py 20 int_array = ARRAY(fmt, alen)
49 CharArray = ARRAY(c_char, 3)
74 numarray = ARRAY(c_int, alen)
93 self.assertIsNot(ARRAY(c_int, 3), ARRAY(c_int, 4))
94 self.assertIs(ARRAY(c_int, 3), ARRAY(c_int, 3))
119 # Array types are cached internally in the _ctypes extension,
120 # in a WeakValueDictionary. Make sure the array type is
127 # Create a new array type based on it
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/java/src/main/java/org/tensorflow/lite/
NativeInterpreterWrapper.java 18 import java.lang.reflect.Array;
90 "%d-th element of the %d inputs is not an array or a ByteBuffer.",
180 return (o != null && o.getClass().isArray() && Array.getLength(o) != 0);
205 /** Returns the shape of an object as an int array. */
217 if (Array.getLength(o) == 0) {
218 throw new IllegalArgumentException("array lengths cannot be 0.");
220 return 1 + numDimensions(Array.get(o, 0));
227 final int len = Array.getLength(o);
235 fillShape(Array.get(o, i), dim + 1, shape);
  /frameworks/support/jetifier/jetifier/preprocessor/src/main/kotlin/com/android/tools/build/jetifier/preprocessor/
Main.kt 59 fun run(args: Array<String>) {
82 private fun parseCmdLine(args: Array<String>): CommandLine? {
93 fun main(args: Array<String>) {
  /prebuilts/go/darwin-x86/test/
typeswitch.go 20 Array
59 case Array:
85 assert(x[3] == 3 && i == Array, "array")
  /prebuilts/go/linux-x86/test/
typeswitch.go 20 Array
59 case Array:
85 assert(x[3] == 3 && i == Array, "array")
  /external/one-true-awk/
tran.c 37 Array *symtab; /* main symbol table */
58 Array *ARGVtab; /* symbol table containing ARGV[...] */
59 Array *ENVtab; /* symbol table containing ENVIRON[...] */
142 Array *makesymtab(int n) /* make a new symbol table */
144 Array *ap;
147 ap = (Array *) malloc(sizeof(Array));
160 Array *tp;
165 tp = (Array *) ap->sval;
187 Array *tp
    [all...]
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Library/PlatformBootManagerLib/
PlatformBootManager.c 21 Return the index of the load option in the load option array.
27 @param Array Pointer to the array of load options to be found.
28 @param Count Number of entries in the Array.
30 @retval -1 Key wasn't found in the Array.
31 @retval 0 ~ Count-1 The index of the Key in the Array.
36 IN CONST EFI_BOOT_MANAGER_LOAD_OPTION *Array,
43 if ((Key->OptionType == Array[Index].OptionType) &&
44 (Key->Attributes == Array[Index].Attributes) &&
45 (StrCmp (Key->Description, Array[Index].Description) == 0) &&
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/tests/
type_conversion_unittest.cc 26 bool AreEqualRectArrays(const Array<test::RectPtr>& rects1,
27 const Array<test::RectPtr>& rects2) {
73 region->rects = Array<test::RectPtr>::From(input.rects).PassStorage();
158 Array<RectPtr> rects;
168 Array<RectPtr> rects(10);
178 Array<RectPtr> rects2 = Array<RectPtr>::From(redmond_rects);
  /external/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp 60 case BitCodeAbbrevOp::Array:
81 case BitCodeAbbrevOp::Array:
119 if (Op.getEncoding() != BitCodeAbbrevOp::Array &&
125 if (Op.getEncoding() == BitCodeAbbrevOp::Array) {
126 // Array case. Read the number of elements as a vbr6.
130 assert(i+2 == e && "array op not second to last?");
137 report_fatal_error("Array element type can't be an Array or a Blob");
196 if (CodeOp.getEncoding() == BitCodeAbbrevOp::Array ||
198 report_fatal_error("Abbreviation starts with an Array or a Blob")
    [all...]
  /external/boringssl/src/ssl/
internal.h 249 // Array<T> is an owning array of elements of |T|.
251 class Array {
253 // Array's default constructor creates an empty array.
254 Array() {}
255 Array(const Array &) = delete;
256 Array(Array &&other) { *this = std::move(other);
    [all...]
ssl_key_share.cc 76 bool Finish(Array<uint8_t> *out_secret, uint8_t *out_alert,
115 Array<uint8_t> secret;
146 bool Finish(Array<uint8_t> *out_secret, uint8_t *out_alert,
150 Array<uint8_t> secret;
206 bool SSLKeyShare::Accept(CBB *out_public_key, Array<uint8_t> *out_secret,
  /external/v8/src/inspector/
v8-value-copier.cc 29 v8::Local<v8::Array> array = object.As<v8::Array>(); local
30 v8::Local<v8::Array> result = v8::Array::New(m_isolate, array->Length());
33 for (uint32_t i = 0; i < array->Length(); ++i) {
35 if (!array->Get(m_from, i).ToLocal(&item))
49 v8::Local<v8::Array> properties;
113 v8::Local<v8::Array> array = value.As<v8::Array>() local
    [all...]
  /external/swiftshader/src/Shader/
PixelProgram.hpp 70 Array<Int, 4> aL;
71 Array<Int, 4> increment;
72 Array<Int, 4> iteration;
76 Array<UInt, 16> callStack;
80 Array<Int4, 1 + 24> enableStack;
VertexProgram.hpp 42 Array<Int, 4> aL;
45 Array<Int, 4> increment;
46 Array<Int, 4> iteration;
50 Array<UInt, 16> callStack;
53 Array<Int4, 1 + 24> enableStack;
  /external/tensorflow/tensorflow/core/kernels/
random_op_gpu.cu.cc 46 T* buf, const tensorflow::random::Array<T, ElementCount>& array) const {
49 buf[i] = array[i];
57 // Copies the elements from the array to buf. buf must be 128-bit aligned,
61 float* buf, const tensorflow::random::Array<float, 4>& array) const {
62 // NOTE(ringwalt): It's not safe to cast &array[0] to a float4, because they
66 vec.x = array[0];
67 vec.y = array[1];
68 vec.z = array[2]
    [all...]
  /device/linaro/bootloader/edk2/EmulatorPkg/Unix/Host/
Host.c 38 // This array gets filled in with information from EFI_FIRMWARE_VOLUMES
40 // The number of array elements is allocated base on parsing
47 // Array that supports seperate memory rantes.
49 // The number of array elements is allocated base on parsing
89 Argv - Array of command line argument strings
90 Envp - Array of environment variable strings
176 // Allocate space for gSystemMemory Array
185 // Allocate space for gSystemMemory Array
903 Store the ModHandle in an array indexed by the Pdb File name.
923 IMAGE_CONTEXT_TO_MOD_HANDLE *Array;
    [all...]
  /external/capstone/bindings/ocaml/
test_detail.ml 46 if (Array.length insn.regs_read) > 0 then begin
48 Array.iter (fun x -> printf "%s "(cs_reg_name handle x)) insn.regs_read;
52 if (Array.length insn.regs_write) > 0 then begin
54 Array.iter (fun x -> printf "%s "(cs_reg_name handle x)) insn.regs_write;
58 if (Array.length insn.groups) > 0 then begin
60 Array.iter (printf "%u ") insn.groups;
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCContainersChecker.cpp 47 void addSizeInfo(const Expr *Array, const Expr *Size,
63 // ProgramState trait - a map from array symbol to its state.
66 void ObjCContainersChecker::addSizeInfo(const Expr *Array, const Expr *Size,
75 SVal ArrayRef = State->getSVal(Array, C.getLocationContext());
90 // Add array size information to the state.
113 // Check the array access.
117 // Find out if we saw this array symbol before and have information about
159 // When a symbol for a mutable array escapes, we can't reason precisely

Completed in 1318 milliseconds

<<11121314151617181920>>