HomeSort by relevance Sort by last modified time
    Searched refs:Array (Results 201 - 225 of 1038) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/tensorflow/tensorflow/lite/toco/graph_transformations/
quantization_util.cc 56 ArrayDataType GetQuantizedDataType(const Array& array,
58 switch (array.final_data_type) {
67 return array.final_data_type;
73 << static_cast<int>(array.final_data_type);
79 const Array& array, QuantizationParams* quantization_params) {
81 array.minmax->min, array.minmax->max, array.narrow_range)
169 auto& array = model->GetArray(name); local
190 auto& array = model->GetArray(name); local
    [all...]
resolve_constant_tile.cc 72 inline void Tile(const Array& input_array, const Array& multiples_array,
73 Array* output_array) {
128 const Array& input_array = model->GetArray(op->inputs[0]);
129 const Array& multiples_array = model->GetArray(op->inputs[1]);
shuffle_fc_weights.cc 39 const Array& input_array = model->GetArray(fc_op->inputs[0]);
41 Array& weights_array = model->GetArray(weights_name);
42 const Array& output_array = model->GetArray(fc_op->outputs[0]);
104 // Exit if the weights aren't already a constant array.
112 "array is consumed by other operators",
143 // Add a second output array to this FC op, serving as a workspace to perform
  /external/v8/src/
api-inl.h 59 Local<v8::Type##Array> Utils::ToLocal##Type##Array( \
61 DCHECK(obj->type() == v8::internal::kExternal##Type##Array); \
62 return Convert<v8::internal::JSTypedArray, v8::Type##Array>(obj); \
75 MAKE_TO_LOCAL(ToLocal, JSArray, Array)
  /external/arm-optimized-routines/auxiliary/
remez.jl 14 array1d(T, d) = Array{T, 1}(undef, d)
15 array2d(T, d1, d2) = Array{T, 2}(undef, d1, d2)
17 array1d(T, d) = Array(T, d)
18 array2d(T, d1, d2) = Array(T, d1, d2)
40 array_format = false # adjusted by --array
85 # coeffs Array of BigFloats giving the coefficients of the polynomial.
91 function poly_eval(coeffs::Array{BigFloat}, x::BigFloat)
105 # ncoeffs Array of BigFloats giving the coefficients of the numerator.
107 # dcoeffs Array of BigFloats giving the coefficients of the denominator.
112 function ratfn_eval(ncoeffs::Array{BigFloat}, dcoeffs::Array{BigFloat}
    [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;
test_arm.ml 12 for i = 0 to (Array.length str - 1) do
72 if (Array.length arm.operands) > 0 then (
73 printf "\top_count: %d\n" (Array.length arm.operands);
74 Array.iteri (print_op handle) arm.operands;
  /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
  /external/clang/test/CodeGen/
2002-07-14-MiscTests3.c 9 int Array[12];
111 int SumArray(int Array[], int Num) {
114 Result += Array[i];
  /external/llvm/include/llvm/CodeGen/
LiveIntervalUnion.h 186 // Array of LiveIntervalUnions.
187 class Array {
191 Array() : Size(0), LIUs(nullptr) {}
192 ~Array() { clear(); }
194 // Initialize the array to have Size entries.
  /external/llvm/lib/Transforms/Utils/
ModuleUtils.cpp 23 static void appendToGlobalArray(const char *Array, Module &M, Function *F,
32 if (GlobalVariable *GVCtor = M.getNamedGlobal(Array)) {
35 // Upgrade a 2-field global array type to the new 3-field format if needed.
81 GlobalValue::AppendingLinkage, NewInit, Array);
  /external/mesa3d/src/mesa/vbo/
vbo_rebase.c 138 const struct gl_vertex_array **saved_arrays = ctx->Array._DrawArrays;
233 /* Just need to adjust the pointer values on each incoming array.
251 ctx->Array._DrawArrays = tmp_array_pointers;
263 ctx->Array._DrawArrays = saved_arrays;
  /external/one-true-awk/
awk.h 89 typedef struct Array { /* symbol table array */
93 } Array;
96 extern Array *symtab;
114 #define ARR 020 /* this is an array */
  /external/python/cpython2/Lib/multiprocessing/
__init__.py 51 'Event', 'Queue', 'JoinableQueue', 'Pool', 'Value', 'Array',
243 Returns a shared array
255 def Array(typecode_or_type, size_or_initializer, **kwds):
257 Returns a synchronized shared array
259 from multiprocessing.sharedctypes import Array
260 return Array(typecode_or_type, size_or_initializer, **kwds)
  /external/tensorflow/tensorflow/lite/toco/
tooling_util.h 61 // Returns true if the given array is specified as a model input array.
63 // Returns true if the given array is specified as a model output array.
113 // TODO(b/36075966): Clean up when dims superseded by array shape.
116 // TODO(b/36075966): Clean up when dims superseded by array shape.
155 bool CompareConstantArrays(const Array& lhs_array, const Array& rhs_array);
171 // same large array (whether they be zeros or otherwise).
173 // |min_size| is used to adjust the minimum size in bytes of an array befor
    [all...]
  /art/runtime/mirror/
object_array.h 20 #include "array.h"
27 class MANAGED ObjectArray: public Array {
31 return Array::ClassSize(pointer_size);
49 // Returns true if the object can be stored into the array. If not, throws
79 // Copy src into this array (dealing with overlaps as memmove does) without assignability checks.
86 // Copy src into this array assuming no overlap and without assignability checks.
93 // Copy src into this array with assignability checks.
  /developers/build/prebuilts/gradle/AutofillFramework/kotlinApp/Application/src/main/java/com/example/android/autofillframework/
CommonUtil.kt 39 val string = if (value is Array<*>) Arrays.toString(value) else value
  /developers/build/prebuilts/gradle/NavigationDrawer/kotlinApp/Application/src/main/java/com/example/android/navigationdrawer/
PlanetAdapter.kt 29 private val dataset: Array<String>,
  /developers/build/prebuilts/gradle/RecyclerView/kotlinApp/app/src/main/java/com/example/android/recyclerview/
CustomAdapter.kt 34 class CustomAdapter(private val dataSet: Array<String>) :
  /developers/samples/android/input/autofill/AutofillFramework/kotlinApp/Application/src/main/java/com/example/android/autofillframework/
CommonUtil.kt 39 val string = if (value is Array<*>) Arrays.toString(value) else value
  /developers/samples/android/ui/views/NavigationDrawer/kotlinApp/Application/src/main/java/com/example/android/navigationdrawer/
PlanetAdapter.kt 29 private val dataset: Array<String>,
  /developers/samples/android/ui/views/RecyclerView/kotlinApp/app/src/main/java/com/example/android/recyclerview/
CustomAdapter.kt 34 class CustomAdapter(private val dataSet: Array<String>) :
  /external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/
ANTLRStringStream.as 54 protected var markers:Array;
63 /** Copy data in string to a local char array */
73 * when the object was created *except* the data array is not
129 markers = new Array();
  /external/autotest/client/cros/tendo/n_faced_peerd/
service.py 83 @return dbus.Array of dbus.Struct objects containing an array of bytes
88 dbus_ip = dbus.Array([dbus.Byte(int(octet))
91 return dbus.Array([ip_info], signature='(ayq)')

Completed in 553 milliseconds

1 2 3 4 5 6 7 891011>>