/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter4/ |
codegen.ml | 44 if Array.length params == Array.length args then () else 46 let args = Array.map codegen_expr args in 52 let doubles = Array.make (Array.length args) double_type in 72 Array.iteri (fun i a ->
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/OCaml-Kaleidoscope/Chapter3/ |
codegen.ml | 44 if Array.length params == Array.length args then () else 46 let args = Array.map codegen_expr args in 52 let doubles = Array.make (Array.length args) double_type in 72 Array.iteri (fun i a ->
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/OCaml-Kaleidoscope/Chapter4/ |
codegen.ml | 44 if Array.length params == Array.length args then () else 46 let args = Array.map codegen_expr args in 52 let doubles = Array.make (Array.length args) double_type in 72 Array.iteri (fun i a ->
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/ |
LiveIntervalUnion.h | 168 // Array of LiveIntervalUnions. 169 class Array { 174 Array() = default; 175 ~Array() { clear(); } 177 // Initialize the array to have Size entries.
|
/external/vixl/examples/aarch64/ |
add2-vectors.cc | 30 #define ARRAY_SIZE(Array) (sizeof(Array) / sizeof((Array)[0]))
|
/external/v8/src/inspector/ |
v8-profiler-agent-impl.cc | 44 std::unique_ptr<protocol::Array<protocol::Profiler::PositionTickInfo>> 48 auto array = protocol::Array<protocol::Profiler::PositionTickInfo>::create(); 57 array->addItem(std::move(line)); 60 return array; 83 auto children = protocol::Array<int>::create(); 99 std::unique_ptr<protocol::Array<int>> buildInspectorObjectForSamples( 101 auto array = protocol::Array<int>::create(); local 104 array->addItem(v8profile->GetSample(i)->GetNodeId()) 110 auto array = protocol::Array<int>::create(); local [all...] |
v8-runtime-agent-impl.h | 76 Maybe<protocol::Array<protocol::Runtime::CallArgument>> optionalArguments, 86 std::unique_ptr<protocol::Array<protocol::Runtime::PropertyDescriptor>>* 88 Maybe<protocol::Array<protocol::Runtime::InternalPropertyDescriptor>>* 110 std::unique_ptr<protocol::Array<String16>>* outNames) override;
|
/art/runtime/entrypoints/quick/ |
quick_default_externs.h | 24 class Array; 70 // Array entrypoints. 71 extern "C" void art_quick_aput_obj_with_null_and_bound_check(art::mirror::Array*, int32_t, 73 extern "C" void art_quick_aput_obj_with_bound_check(art::mirror::Array*, int32_t, 75 extern "C" void art_quick_aput_obj(art::mirror::Array*, int32_t, art::mirror::Object*);
|
/art/test/003-omnibus-opcodes/src/ |
Main.java | 46 Array.run();
|
/art/test/497-inlining-and-class-loader/ |
clear_dex_cache.cc | 20 #include "mirror/array-inl.h" 42 jarray array; local 44 array = env->NewIntArray(2u * num_methods); 46 array = env->NewLongArray(2u * num_methods); 48 CHECK(array != nullptr); 49 ObjPtr<mirror::Array> decoded_array = soa.Decode<mirror::Array>(array); 64 return array; 74 ObjPtr<mirror::Array> old = soa.Decode<mirror::Array>(old_cache) [all...] |
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/ |
JSystem.cs | 62 Array.Copy( sourceArray, sourceIndex, destinationArray, destinationIndex, length );
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/ |
JSystem.cs | 61 Array.Copy( sourceArray, sourceIndex, destinationArray, destinationIndex, length );
|
/external/autotest/client/cros/bluetooth/ |
advertisement.py | 66 self.manufacturer_data[int(key, 16)] = dbus.Array(value, 72 self.service_data[uuid] = dbus.Array(data, signature='y') 103 properties['ServiceUUIDs'] = dbus.Array(self.service_uuids, 106 properties['SolicitUUIDs'] = dbus.Array(self.solicit_uuids,
|
/external/eigen/test/ |
array_of_string.cpp | 14 typedef Array<std::string,1,Dynamic> ArrayXs;
|
/external/jarjar/src/main/com/tonicsystems/jarjar/util/ |
ClassHeaderReader.java | 20 import java.lang.reflect.Array; 163 private static Object resizeArray(Object array, int length) 165 if (Array.getLength(array) < length) { 166 Object newArray = Array.newInstance(array.getClass().getComponentType(), length); 167 System.arraycopy(array, 0, newArray, 0, Array.getLength(array)); 170 return array; [all...] |
/external/llvm/include/llvm/CodeGen/ |
LiveRegMatrix.h | 48 LiveIntervalUnion::Array Matrix; 142 /// This returns an array indexed by the regunit number.
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
hlo_sharding.h | 27 #include "tensorflow/compiler/xla/array.h" 53 static HloSharding Tile(const Array<int64>& tile_assignment) { 67 // empty tuples, the shardings array must have one element. 76 // If shape is an array, returns sharding, otherwise returns the tuple shaped 125 // number of elements this sharding is made of (one for array, N leaves for 205 const Array<int64>& tile_assignment() const { return tile_assignment_; } 235 explicit HloSharding(const Array<int64>& tile_assignment) 264 // the field contains a rank 1 array with a single element, which is the 266 // array with the same rank as the corresponding HLO. The dimension sizes of 267 // the array describe the number of ways the HLO is partitioned along eac [all...] |
/external/tensorflow/tensorflow/core/lib/random/ |
philox_random.h | 44 // A class that represents an inline array. It can be used on both CPU and GPU, 47 // T: the array element type; 48 // ElementCount: the fixed size of the array; 50 class Array { 53 PHILOX_DEVICE_INLINE Array() { 79 // For example: To use this class and populate an array of 1024 randoms on CPU 105 using ResultType = Array<uint32, 4>; 113 using Key = Array<uint32, 2>;
|
/external/tensorflow/tensorflow/lite/toco/graph_transformations/ |
resolve_constant_range.cc | 23 void FillRangeOutput(const Array& start_array, const Array& limit_array, 24 const Array& delta_array, Array* output_array) { 107 // Delete the input array if no longer used
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/ |
BaseConstructor.java | 18 import java.lang.reflect.Array; 230 return Array.newInstance(type.getComponentType(), size); 279 protected Object constructArrayStep2(SequenceNode node, Object array) { 299 Array.setByte(array, index, ((Number) value).byteValue()); 302 Array.setShort(array, index, ((Number) value).shortValue()); 305 Array.setInt(array, index, ((Number) value).intValue()); 308 Array.setLong(array, index, ((Number) value).longValue()) [all...] |
/developers/build/prebuilts/gradle/EmojiCompat/kotlinApp/app/src/main/java/com/example/android/emojicompat/ |
CustomTextView.kt | 58 override fun setFilters(filters: Array<InputFilter>) {
|
/developers/samples/android/views/EmojiCompat/kotlinApp/app/src/main/java/com/example/android/emojicompat/ |
CustomTextView.kt | 58 override fun setFilters(filters: Array<InputFilter>) {
|
/external/capstone/bindings/ocaml/ |
test_arm64.ml | 12 for i = 0 to (Array.length str - 1) do 69 if (Array.length arm64.operands) > 0 then ( 70 printf "\top_count: %d\n" (Array.length arm64.operands); 71 Array.iteri (print_op handle) arm64.operands;
|
test_ppc.ml | 11 for i = 0 to (Array.length str - 1) do 50 if (Array.length ppc.operands) > 0 then ( 51 printf "\top_count: %d\n" (Array.length ppc.operands); 52 Array.iteri (print_op handle) ppc.operands;
|
test_sparc.ml | 11 for i = 0 to (Array.length str - 1) do 48 if (Array.length sparc.operands) > 0 then ( 49 printf "\top_count: %d\n" (Array.length sparc.operands); 50 Array.iteri (print_op handle) sparc.operands;
|