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

1 2 3 4 5 6 7 891011>>

  /external/tensorflow/tensorflow/contrib/training/python/training/
tensor_queue_dataset.py 110 perform some calculation on the "head" and modify some components of "rest"
171 def enqueue_in_queue_dataset(queue, components):
172 """Enqueue components into queue from `PrependFromQueueAndPaddedBatchDataset`.
174 The components' dtypes and shapes must be compatible with the `output_shapes`
186 then the `components` input tensors should not have a prepended batch
188 components: Nested tuple of tensors, each with a leading batch dimension
196 An `Operation` that enqueues `components` into the dataset(s) associated
200 queue=queue, components=tf_nest.flatten(components))
  /frameworks/support/media/src/main/java/androidx/media/
MediaSessionManagerImplBase.java 95 * specified user. Enabled components may only operate on behalf of the user
106 final String[] components = enabledNotifListeners.split(":"); local
107 for (int i = 0; i < components.length; i++) {
109 ComponentName.unflattenFromString(components[i]);
  /packages/apps/Gallery2/jni_jpegstream/src/
jpeg_writer.cpp 75 const int components = (static_cast<int>(format) & 0xff); local
76 switch (components) {
103 mScanlineBuflen = width * components;
jpeg_reader.cpp 71 const int components = (static_cast<int>(format) & 0xff); local
74 switch (components) {
81 mScanlineUnformattedBuflen = mInfo.output_width * components;
96 mScanlineBuflen = mInfo.output_width * components;
  /external/mesa3d/src/compiler/
glsl_types.h 223 static const glsl_type *vec(unsigned components);
224 static const glsl_type *dvec(unsigned components);
225 static const glsl_type *ivec(unsigned components);
226 static const glsl_type *uvec(unsigned components);
227 static const glsl_type *bvec(unsigned components);
234 * this function gets the scalar type of the individual components. For
245 * individual components. For structs and arrays of structs, this function
311 unsigned components() const function in struct:glsl_type
317 * Calculate the number of components slots required to hold this type
747 * Return the number of coordinate components needed for thi
    [all...]
glsl_types.cpp 460 glsl_type::vec(unsigned components)
462 if (components == 0 || components > 4)
468 return ts[components - 1];
472 glsl_type::dvec(unsigned components)
474 if (components == 0 || components > 4)
480 return ts[components - 1];
484 glsl_type::ivec(unsigned components)
486 if (components == 0 || components > 4
    [all...]
  /hardware/intel/img/psb_video/src/
tng_jpegdec.c 591 if (ctx->max_scalingH < ctx->pic_params->components->h_sampling_factor)
592 ctx->max_scalingH = ctx->pic_params->components->h_sampling_factor;
593 if (ctx->max_scalingV < ctx->pic_params->components->v_sampling_factor)
594 ctx->max_scalingV = ctx->pic_params->components->v_sampling_factor;
    [all...]
  /compatibility/cdd/8_performance-and-power/
8_4_power-consumption-accounting.md 14 components over time as documented in the Android Open Source Project site.
  /external/tensorflow/tensorflow/core/lib/png/
png_io.cc 48 // Convert from 8 bit components to 16. This works in-place.
133 int* components, int* channel_bit_depth,
151 if (components != nullptr) {
154 *components =
160 *components = 1;
163 *components = 2;
166 *components = 3;
169 *components = 4;
172 *components = 0;
  /external/v4l2_codec2/include/
C2VDAAdaptorProxy.h 17 #include <components/arc/common/video.mojom.h>
18 #include <components/arc/common/video_decode_accelerator.mojom.h>
  /system/tools/hidl/utils/include/hidl-util/
FQName.h 213 void getPackageComponents(std::vector<std::string> *components) const;
216 std::vector<std::string> *components,
  /development/scripts/
symbol.py 411 components = func_regexp.match(line)
412 if components:
414 current_symbol_addr = int(components.group(1), 16)
415 current_symbol = components.group(2)
418 components = offset_regexp.match(current_symbol)
419 if components:
420 current_symbol = components.group(1)
421 offset = components.group(2)
427 components = asm_regexp.match(line)
428 if components
    [all...]
  /external/v8/tools/turbolizer/
graph-view.js 339 var components = this.id.split(',');
340 if (components[0] == "ib") {
341 var edge = g.nodeMap[components[3]].inputs[components[2]];
344 return g.nodeMap[components[1]].areAnyOutputsVisible() == 2;
347 var components = this.id.split(',');
348 if (components[0] == "ib") {
349 var edge = g.nodeMap[components[3]].inputs[components[2]];
352 return g.nodeMap[components[1]].areAnyOutputsVisible() == 1
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Color.java 53 * color space using 4 components packed in a single 32 bit integer value:</p>
65 * <p>The components in this table are listed in encoding order (see below),
74 * <p>The four components of a color int are encoded in the following way:</p>
86 * As a convenience this class also offers methods to encode color ints from components
98 * <p>The four ARGB components can be individually extracted from a color int
107 * <p>This class offers convenience methods to easily extract these components:</p>
120 * <p>A color long always defines a color using 4 components packed in a single
121 * 64 bit long value. One of these components is always alpha while the other
122 * three components depend on the color space's {@link ColorSpace.Model color model}.
124 * which the components represent red, green and blue values.</p
    [all...]
  /external/tensorflow/tensorflow/python/data/kernel_tests/
iterator_ops_test.py 74 components = (np.arange(7),
81 iterator = (dataset_ops.Dataset.from_tensor_slices(components).map(_map_fn)
85 self.assertEqual([c.shape[1:] for c in components],
92 for component, result_component in zip(components, result):
98 components = (np.arange(7),
101 tensor_components = tuple([ops.convert_to_tensor(c) for c in components])
110 self.assertEqual([c.shape[1:] for c in components],
117 for component, result_component in zip(components, result):
123 components = (np.arange(7),
130 iterator = (dataset_ops.Dataset.from_tensor_slices(components)
    [all...]
filter_dataset_op_test.py 35 components = (
48 dataset_ops.Dataset.from_tensor_slices(components).map(_map_fn)
55 self.assertEqual([c.shape[1:] for c in components],
66 for component, result_component in zip(components, result):
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/
BaseEmulatorActivity.java 91 final void setupServices(Context context, ComponentName... components) {
93 new SetupServicesTask().execute(components);
154 protected Boolean doInBackground(ComponentName... components) {
155 List<ComponentName> enableComponents = Arrays.asList(components);
  /external/autotest/server/site_tests/kernel_MemoryRamoop/
kernel_MemoryRamoop.py 174 components = matcher.split(line)
175 timestamp = float(components[1])
176 msg = components[2]
177 id = int(components[3])
  /external/dagger2/compiler/src/it/functional-tests/src/test/java/test/staticprovides/
StaticProvidesTest.java 35 public static Collection<Object[]> components() { method in class:StaticProvidesTest
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
DataDrivenTestHelper.java 41 List<String> components = lines.get(i); local
43 if (components.isEmpty()) {
48 String first = components.iterator().next();
50 out.append(CollectionUtilities.join(components, sep));
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DataDrivenTestHelper.java 40 List<String> components = lines.get(i); local
42 if (components.isEmpty()) {
47 String first = components.iterator().next();
49 out.append(CollectionUtilities.join(components, sep));
  /external/libexif/libexif/fuji/
mnote-fuji-entry.c 47 _("Invalid number of components (%i, " \
208 CC (entry->components, 4, val, maxlen);
229 CC (entry->components, 1, val, maxlen);
252 CC (entry->components, 2, val, maxlen);
260 CC (entry->components, 1, val, maxlen);
  /external/llvm/utils/lit/lit/
Test.py 169 def getSourcePath(self, components):
170 return os.path.join(self.source_root, *components)
172 def getExecPath(self, components):
173 return os.path.join(self.exec_root, *components)
  /hardware/intel/common/libva/test/decode/
tinyjpeg-internal.h 48 #define COMPONENTS 4
93 }components[4]; member in struct:jpeg_sos
107 struct component component_infos[COMPONENTS];
109 unsigned char Q_tables[COMPONENTS][64]; /* quantization tables, zigzag*/
110 unsigned char Q_tables_valid[COMPONENTS];
  /hardware/libhardware/modules/camera/3_4/arc/
exif_utils.h 120 uint64_t components,

Completed in 569 milliseconds

1 2 3 4 5 6 7 891011>>