HomeSort by relevance Sort by last modified time
    Searched refs:images (Results 51 - 75 of 592) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/toolchain-utils/crosperf/experiment_files/
telemetry-without-autotest.exp 30 chromeos_image:<path-to-your-chroot>/src/build/images/<board>/test-image/chromiumos_test_image.bin
  /build/make/core/combo/arch/x86/
x86.mk 4 # It is also used to build full_x86-eng / sdk_x86-eng platform images that
9 # Otherwise, sdk_x86-eng system images might fail to run on some
  /external/libxml2/doc/
Makefile.am 23 $(wildcard tutorial/images/*.png) \
24 $(wildcard tutorial/images/callouts/*.png) $(wildcard API*.html) \
190 tutorial/images/blank.png \
191 tutorial/images/callouts/1.png \
192 tutorial/images/callouts/10.png \
193 tutorial/images/callouts/2.png \
194 tutorial/images/callouts/3.png \
195 tutorial/images/callouts/4.png \
196 tutorial/images/callouts/5.png \
197 tutorial/images/callouts/6.png
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_state_image.c 33 const struct pipe_image_view *images)
40 /* set the new images */
44 if (images) {
45 pipe_resource_reference(&softpipe->tgsi.image[shader]->sp_iview[idx].resource, images[i].resource);
46 softpipe->tgsi.image[shader]->sp_iview[idx] = images[i];
66 /* set the new images */
  /external/skqp/tools/flags/
SkCommonFlags.cpp 22 DEFINE_string(images, "", "List of images and/or directories to decode. A directory with no images"
25 DEFINE_string(colorImages, "", "List of images and/or directories to decode with color correction. "
26 "A directory with no images is treated as a fatal error.");
93 bool CollectImages(SkCommandLineFlags::StringArray images, SkTArray<SkString>* output) {
109 for (int i = 0; i < images.count(); ++i) {
110 const char* flag = images[i];
117 // If the value passed in is a directory, add all the images
128 SkDebugf("No supported images found in %s!\n", flag)
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
resize_bilinear_op.h 28 void operator()(const Device& d, typename TTypes<T, 4>::ConstTensor images,
resize_bilinear_op_gpu.cu.cc 36 __global__ void ResizeBilinearKernel(const int32 nthreads, const T* images,
64 images[((b * in_height + top_y_index) * in_width + left_x_index) *
68 images[((b * in_height + top_y_index) * in_width + right_x_index) *
72 images[((b * in_height + bottom_y_index) * in_width + left_x_index) *
76 images[((b * in_height + bottom_y_index) * in_width + right_x_index) *
152 void operator()(const GPUDevice& d, typename TTypes<T, 4>::ConstTensor images,
155 const int batch = images.dimension(0);
156 const int in_height = images.dimension(1);
157 const int in_width = images.dimension(2);
158 const int channels = images.dimension(3)
    [all...]
  /external/libdrm/tests/exynos/
exynos_fimg2d_perf.c 113 struct g2d_image *images; local
119 images = calloc(batch, sizeof(struct g2d_image));
120 if (images == NULL) {
121 fprintf(stderr, "error: failed to allocate G2D images.\n");
126 images[i].width = buf_width;
127 images[i].height = buf_height;
128 images[i].stride = buf_width * 4;
129 images[i].color_mode = G2D_COLOR_FMT_ARGB8888 | G2D_ORDER_AXRGB;
130 images[i].buf_type = G2D_IMGBUF_GEM;
131 images[i].bo[0] = bo->handle
    [all...]
  /packages/apps/Camera2/src/com/android/camera/one/v2/photo/zsl/
ZslImageCaptureCommand.java 49 * Captures images by first looking to the zsl ring buffer for acceptable (based
50 * on metadata) images. If no such images are available, a fallback
77 * @return All images currently in the ring-buffer, ordered from oldest to
82 List<ImageProxy> images = new ArrayList<>(); local
84 // Keep grabbing images until there are no more immediately
88 images.add(mZslRingBuffer.getNext(0, TimeUnit.SECONDS));
94 // Close the images to avoid leaking them, since they will not be
96 for (ImageProxy image : images) {
101 return images;
124 List<ImageProxy> images = filterImagesWithinMaxLookBack(getAllAvailableImages()); local
    [all...]
  /external/tensorflow/tensorflow/contrib/gan/python/eval/python/
classifier_metrics_impl.py 77 def _validate_images(images, image_size):
78 images = ops.convert_to_tensor(images)
79 images.shape.with_rank(4)
80 images.shape.assert_is_compatible_with(
82 return images
113 images, height=INCEPTION_DEFAULT_IMAGE_SIZE,
115 """Prepare a batch of images for evaluation.
124 images: 3-D or 4-D Tensor of images. Values are in [0, 255]
    [all...]
  /external/tensorflow/tensorflow/contrib/receptive_field/python/util/examples/
rf_benchmark.py 98 images = array_ops.placeholder(
103 _, end_points = inception.inception_resnet_v2_base(images)
106 images, align_feature_maps=True)
108 _, end_points = inception.inception_v2_base(images)
111 images, use_separable_conv=False)
113 _, end_points = inception.inception_v3_base(images)
115 _, end_points = inception.inception_v4_base(images)
117 _, end_points = alexnet.alexnet_v2(images)
119 _, end_points = vgg.vgg_a(images)
121 _, end_points = vgg.vgg_16(images)
    [all...]
  /external/ImageMagick/coders/
jnx.c 141 *images;
227 images=NewImageList();
289 if (images != (Image *) NULL)
290 images=DestroyImageList(images);
298 if (images != (Image *) NULL)
299 images=DestroyImageList(images);
316 AppendImageToList(&images,tile_image);
331 if (images == (Image *) NULL
137 *images; local
    [all...]
  /external/tensorflow/tensorflow/contrib/layers/python/layers/
normalization_test.py 57 images = random_ops.random_uniform((5, height, width, 3), seed=1)
58 output = normalization.instance_norm(images)
66 images = random_ops.random_uniform(
68 output = normalization.instance_norm(images)
75 images = random_ops.random_uniform(
77 output = normalization.instance_norm(images, center=False, scale=False)
86 images = random_ops.random_uniform((5, height, width, 3), seed=1)
87 normalization.instance_norm(images, center=True, scale=True)
95 images = random_ops.random_uniform((5, height, width, 3), seed=1)
96 normalization.instance_norm(images, scale=True, scope='IN'
    [all...]
  /external/autotest/server/hosts/
testbed_unittest.py 37 images = [(BOARD_1_BUILD_1, None)]*3
40 devices = testbed_1.locate_devices(images)
61 images = [(BOARD_1_BUILD_1, None), (BOARD_1_BUILD_2, None)]
64 self.assertRaises(error.InstallError, testbed_1.locate_devices, images)
83 # Request 4 images but the testbed has only 3 duts.
84 images = [(BOARD_1_BUILD_1, None)]*4
87 self.assertRaises(error.InstallError, testbed_1.locate_devices, images)
107 images = [(BOARD_1_BUILD_1, None), (BOARD_1_BUILD_1, None)]
110 devices = testbed_1.locate_devices(images)
132 images = [(BOARD_1_BUILD_1, None), (BOARD_1_BUILD_1, None)
    [all...]
  /external/tensorflow/tensorflow/contrib/image/python/kernel_tests/
segmentation_test.py 100 images = [[[1, 1, 1, 1],
127 images, dtypes.bool)).eval(), expected)
152 images = np.random.randint(0, 2, size=(10, 100, 200)).astype(np.bool)
153 expected = connected_components_reference_implementation(images)
158 image_ops.connected_components(images).eval(), expected)
161 def connected_components_reference_implementation(images):
168 image_or_images = np.asarray(images)
170 images = image_or_images[None, :, :]
172 images = image_or_images
173 components = np.asarray([measurements.label(image)[0] for image in images])
    [all...]
  /external/chromium-trace/catapult/common/py_vulcanize/py_vulcanize/
style_sheet.py 38 def images(self): member in class:ParsedStyleSheet
42 for i in self.images:
48 for i in self.images:
61 # I'm assuming we only have url()'s associated with images
66 for i in self.images:
114 def images(self): member in class:StyleSheet
116 return self._parsed_style_sheet.images
  /external/syslinux/gpxe/src/include/gpxe/
image.h 7 * Executable/loadable images
26 /** List of registered images */
110 * Multiboot images are also valid executables in another format
123 * PXE images have no signature checks, so will claim all image files.
134 extern struct list_head images;
136 /** Iterate over all registered images */
138 list_for_each_entry ( (image), &images, list )
141 * Test for existence of images
143 * @ret existence Some images exist
146 return ( ! list_empty ( &images ) );
    [all...]
  /external/toolchain-utils/binary_search_tool/common/
test_setup.sh 40 cros flash --board=${BISECT_BOARD} --clobber-stateful usb:// ~/trunk/src/build/images/${BISECT_BOARD}/latest/chromiumos_test_image.bin
72 cros flash --board=${BISECT_BOARD} --clobber-stateful ${BISECT_REMOTE} ~/trunk/src/build/images/${BISECT_BOARD}/latest/chromiumos_test_image.bin
137 echo "cros flash --board=${BISECT_BOARD} --clobber-stateful ${BISECT_REMOTE} ~/trunk/src/build/images/${BISECT_BOARD}/latest/chromiumos_test_image.bin"
138 cros flash --board=${BISECT_BOARD} --clobber-stateful ${BISECT_REMOTE} ~/trunk/src/build/images/${BISECT_BOARD}/latest/chromiumos_test_image.bin
  /packages/apps/TV/tests/unit/src/com/android/tv/util/images/
ImageCacheTest.java 17 package com.android.tv.util.images;
19 import static com.android.tv.util.images.BitmapUtils.createScaledBitmapInfo;
25 import com.android.tv.util.images.BitmapUtils.ScaledBitmapInfo;
  /external/google-breakpad/src/client/mac/handler/
dynamic_images.cc 416 void ReadImageInfo(DynamicImages& images,
423 // loaded images. We're reading from the desired task's address space.
429 if (ReadTaskMemory(images.task_,
438 // number of loaded images
444 if (ReadTaskMemory(images.task_,
452 images.image_list_.reserve(count);
459 if (ReadTaskMemory(images.task_,
473 if (ReadTaskMemory(images.task_,
485 file_path = ReadTaskString(images.task_, info.file_path_);
495 images.task_
    [all...]
  /external/skia/tools/flags/
SkCommonFlags.cpp 22 DEFINE_string(images, "", "List of images and/or directories to decode. A directory with no images"
25 DEFINE_string(colorImages, "", "List of images and/or directories to decode with color correction. "
26 "A directory with no images is treated as a fatal error.");
105 bool CollectImages(SkCommandLineFlags::StringArray images, SkTArray<SkString>* output) {
121 for (int i = 0; i < images.count(); ++i) {
122 const char* flag = images[i];
129 // If the value passed in is a directory, add all the images
140 SkDebugf("No supported images found in %s!\n", flag)
    [all...]
  /external/wayland/cursor/
wayland-cursor.h 47 struct wl_cursor_image **images; member in struct:wl_cursor
  /external/ImageMagick/MagickWand/
magick-wand.c 68 % wand blank, and ready to be used for a new set of images.
86 wand->images=DestroyImageList(wand->images);
137 clone_wand->images=CloneImageList(wand->images,clone_wand->exception);
176 wand->images=DestroyImageList(wand->images);
377 if (wand->images == (Image *) NULL)
383 return(GetImageIndexInList(wand->images));
544 if (wand->images == (Image *) NULL
    [all...]
mogrify.c 328 % * replace by a list of images (only the -separate option!)
331 % modified image (last image added if replaced by a list of images) is
336 % This means if all the images are being processed (such as by
339 % operations but as images are never merged or deleted, it will never shrink
3941 *images; local
    [all...]
  /external/ImageMagick/www/api/
list.php 12 <meta name="description" content="ImageMagick® is a software suite to create, edit, compose, or convert bitmap images. It can read and write images in a variety of formats (over 200) including PNG, JPEG, JPEG-2000, GIF, WebP, Postscript, PDF, and SVG. Use ImageMagick to resize, flip, mirror, rotate, distort, shear and transform images, adjust image colors, apply various special effects, or draw text, lines, polygons, ellipses and Bézier curves."/>
64 AppendImageToList(Image *images,const Image *image)
74 <dt>images</dt>
90 Image *CloneImageList(const Image *images,ExceptionInfo *exception)
100 <dt>images</dt>
111 <p>CloneImages() clones one or more images from an image sequence, using a comma separated list of image numbers or ranges.</p>
113 <p>The numbers start at 0 for the first image in the list, while negative numbers refer to images starting counting from the end of the range. Images may be refered to multiple times to clone them multiple times. Images refered beyond the available (…)
    [all...]

Completed in 691 milliseconds

1 23 4 5 6 7 8 91011>>