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

<<31323334353637383940>>

  /external/libmojo/mojo/public/cpp/bindings/tests/
equals_unittest.cc 62 TEST_F(EqualsTest, Array) {
  /external/libmojo/mojo/public/tools/bindings/pylib/mojom/generate/
pack.py 46 if isinstance(kind, (mojom.Array, mojom.Map, mojom.Struct,
  /external/libmojo/mojo/public/tools/bindings/pylib/mojom_tests/generate/
data_unittest.py 112 array = mojom.Array(mojom.INT16, length=20)
113 imported_module.kinds[array.spec] = array
126 self.assertNotIn(array.spec, module.kinds)
  /external/libvncserver/webclients/novnc/include/
webutil.js 143 var callbackArgs = Array.prototype.slice.call(arguments, 1);
  /external/mesa3d/src/gallium/tools/trace/
model.py 92 class Array(Node):
  /external/mesa3d/src/mesa/state_tracker/
st_draw_feedback.c 134 const struct gl_vertex_array **arrays = ctx->Array._DrawArrays;
  /external/pdfium/fxjs/
cjs_publicmethods.h 156 static v8::Local<v8::Array> AF_MakeArrayFromList(CJS_Runtime* pRuntime,
  /external/python/cpython2/Demo/tkinter/guido/
sortvisu.py 7 - an array visualizer with methods that implement basic sorting
13 all using the array visualizer for its basic operations and with calls
32 class Array:
85 Cancelled = "Array.Cancelled" # Exception
104 raise Array.Cancelled
198 def __init__(self, array, index, value):
199 self.array = array
203 self.item = Rectangle(array.canvas, x1, y1, x2, y2,
211 self.array = Non
    [all...]
  /external/python/cpython2/Doc/includes/
mp_synchronize.py 221 shared_arrays = [multiprocessing.Array(id, a) for id, a in arrays]
  /external/python/cpython3/Tools/demo/
sortvisu.py 8 - an array visualizer with methods that implement basic sorting
14 all using the array visualizer for its basic operations and with calls
29 class Array:
102 raise Array.Cancelled
196 def __init__(self, array, index, value):
197 self.array = array
200 self.canvas = array.canvas
202 self.item_id = array.canvas.create_rectangle(x1, y1, x2, y2,
210 self.array = Non
    [all...]
  /external/swiftshader/src/Shader/
SetupRoutine.cpp 65 Array<Int> X(16);
66 Array<Int> Y(16);
202 Array<Int> Xq(16);
203 Array<Int> Yq(16);
  /external/tensorflow/tensorflow/compiler/xla/client/
computation_builder.h 25 #include "tensorflow/compiler/xla/array.h"
146 const Array<NativeT>& values, const Layout& layout);
148 ComputationDataHandle ConstantFromArray(const Array<NativeT>& values);
170 // Adds dimensions to an array by duplicating the data in the array.
249 // array[:, 2:4:1, :]
262 // prevent dynamic start indices from generating out-of-bound array accesses.
283 // prevent dynamic start indices from generating out-of-bound array accesses.
528 // Reduces an array among the provided dimensions, given "computation" as a
561 // Enqueues an operation that scatters the `source` array to the selecte
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/toco/graph_transformations/
dequantize.cc 31 void DequantizeBuffer(Array* array) {
32 const auto old_data = array->GetBuffer<A>().data;
33 array->buffer = nullptr;
34 array->data_type = ArrayDataType::kFloat;
35 auto& new_data = array->GetMutableBuffer<ArrayDataType::kFloat>().data;
37 const auto& qparams = array->GetQuantizationParams();
56 auto* array = &model->GetArray(array_name); local
57 CHECK(array->quantization_params);
60 auto& qparams = *array->quantization_params
80 auto* array = &model->GetArray(array_name); local
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/toco/tflite/
import.cc 59 Array& array = model->GetOrCreateArray(input_tensor->name()->c_str()); local
60 array.data_type = DataType::Deserialize(input_tensor->type());
63 DataBuffer::Deserialize(*input_tensor, *buffer, &array);
69 array.mutable_shape()->mutable_dims()->push_back(d);
76 // the whole array.
80 MinMax& minmax = array.GetOrCreateMinMax();
87 QuantizationParams& q = array.GetOrCreateQuantizationParams();
  /external/tensorflow/tensorflow/core/util/ctc/
ctc_loss_calculator.cc 154 Array prob_sum(L);
  /external/tensorflow/tensorflow/java/src/main/native/
tensor_jni.cc 112 // Copy a 1-D array of Java primitive types to the tensor buffer dst.
114 size_t write1DArray(JNIEnv* env, jarray array, TF_DataType dtype, void* dst,
116 const int nelems = env->GetArrayLength(array);
121 jtype##Array a = static_cast<jtype##Array>(array); \
127 "cannot write Java array of %d bytes to Tensor of %d bytes", \
150 // Copy the elements of a 1-D array from the tensor buffer src to a 1-D array of
159 "cannot fill a Java array of %d bytes with a Tensor of %d bytes", sz
    [all...]
  /external/v8/src/
d8-posix.cc 157 // A utility class that takes the array of command arguments and puts then in an
158 // array of new[]ed UTF-8 C strings. Deallocates them again when it goes out of
165 bool Init(Isolate* isolate, Local<Value> arg0, Local<Array> command_args) {
464 Local<Array> command_args;
469 "system: Argument 2 must be an array",
473 command_args = Local<Array>::Cast(args[1]);
475 command_args = Array::New(args.GetIsolate(), 0);
  /external/v8/tools/
ic-processor.js 146 var array = re.exec(name);
147 if (!array) return name;
148 return array[1];
200 padLeft[padLength] = new Array(padLength + 1).join(' ');
261 s = s + (new Array(len - s.length + 1).join(' '));
profile_view.js 122 * functions. Must comply with Array.sort sorting function requirements.
196 * functions. Must comply with Array.sort sorting function requirements.
  /frameworks/base/core/jni/
android_os_HwParcel.cpp 441 JNIEnv *env, jobject thiz, Type ## Array valObj) { \
591 static Type ## Array JHwParcel_native_read ## Suffix ## Vector( \
620 Type ## Array valObj = env->New ## NewType ## Array(vec->size()); \
674 JNIEnv *env, const hidl_string *array, size_t size) {
684 jstring stringObj = MakeStringObjFromHidlString(env, array[i]);
  /libcore/ojluni/src/main/java/java/util/
IdentityHashMap.java 28 import java.lang.reflect.Array;
118 * as described for example in texts by Sedgewick and Knuth. The array
    [all...]
  /packages/apps/UnifiedEmail/assets/
script.js 21 // this is an Array, but we treat it like a Set and only insert unique items
219 // the format of entries in this array is:
465 var urls = new Array();
466 var messageIds = new Array();
620 overlayTops = new Array(expandedBodyDivs.length + 1);
621 overlayBottoms = new Array(expandedBodyDivs.length + 1);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
Store.h 137 virtual SVal ArrayToPointer(Loc Array, QualType ElementTy) = 0;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/StaticAnalyzer/Core/PathSensitive/
Store.h 137 virtual SVal ArrayToPointer(Loc Array, QualType ElementTy) = 0;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/StaticAnalyzer/Core/PathSensitive/
Store.h 137 virtual SVal ArrayToPointer(Loc Array, QualType ElementTy) = 0;

Completed in 1901 milliseconds

<<31323334353637383940>>