Searched refs:resource (Results 226 - 250 of 1082) sorted by relevance

1234567891011>>

/external/skia/src/gpu/vk/
H A DGrVkIndexBuffer.h27 const GrVkBuffer::Resource* resource);
H A DGrVkTexelBuffer.h26 const GrVkBuffer::Resource* resource);
H A DGrVkVertexBuffer.h26 const GrVkBuffer::Resource* resource);
/external/skia/tools/skdiff/
H A Dskdiff_utils.h27 /** Decodes the fileBits into the resource.fBitmap. Returns false on failure. */
28 bool get_bitmap(sk_sp<SkData> fileBits, DiffResource& resource, bool sizeOnly);
/external/skqp/src/gpu/vk/
H A DGrVkIndexBuffer.h27 const GrVkBuffer::Resource* resource);
H A DGrVkTexelBuffer.h26 const GrVkBuffer::Resource* resource);
H A DGrVkVertexBuffer.h26 const GrVkBuffer::Resource* resource);
/external/skqp/tools/skdiff/
H A Dskdiff_utils.h27 /** Decodes the fileBits into the resource.fBitmap. Returns false on failure. */
28 bool get_bitmap(sk_sp<SkData> fileBits, DiffResource& resource, bool sizeOnly);
/external/toolchain-utils/cwp/bartlett/
H A Dserver.py91 def get(self, resource): # pylint: disable-msg=C6409
93 file_key = str(urllib.unquote(resource))
118 def get(self, resource): # pylint: disable-msg=C6409
121 fkey = str(urllib.unquote(resource))
/external/webrtc/webrtc/modules/audio_device/test/
H A Daudio_device_test_defines.h74 const char* GetResource(const char* resource);
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
H A DGifFrameManager.java1 package com.bumptech.glide.load.resource.gif;
18 import com.bumptech.glide.load.resource.NullEncoder;
19 import com.bumptech.glide.load.resource.UnitTransformation;
92 // Use an incrementing signature to make sure we never hit an active resource that matches one of our frames.
101 return current != null ? current.resource : null;
123 private Bitmap resource; field in class:GifFrameManager.DelayTarget
137 public void onResourceReady(final Bitmap resource, GlideAnimation<? super Bitmap> glideAnimation) { argument
138 this.resource = resource;
161 resource
[all...]
H A DGifDrawableLoadProvider.java1 package com.bumptech.glide.load.resource.gif;
10 import com.bumptech.glide.load.resource.file.FileToStreamDecoder;
18 * {@link com.bumptech.glide.load.resource.gif.GifDrawable} that can be used to display an animated GIF.
/external/guava/guava-tests/test/com/google/common/io/
H A DResourcesTest.java57 URL resource = getClass().getResource("testdata/i18n.txt");
58 assertEquals(I18N, Resources.toString(resource, Charsets.UTF_8));
59 assertThat(Resources.toString(resource, Charsets.US_ASCII))
70 // TODO(chrisn): Check in a better resource
71 URL resource = getClass().getResource("testdata/i18n.txt");
73 Resources.readLines(resource, Charsets.UTF_8));
77 URL resource = getClass().getResource("testdata/alice_in_wonderland.txt");
92 List<String> result = Resources.readLines(resource, Charsets.US_ASCII,
101 URL resource = getClass().getResource("testdata/i18n.txt");
102 Resources.copy(resource, ou
[all...]
/external/mesa3d/src/gallium/drivers/swr/
H A Dswr_context.cpp84 struct pipe_resource *resource = surf->texture; local
86 /* If the resource has been drawn to, store tiles. */
87 swr_store_dirty_resource(pipe, resource, SWR_TILE_RESOLVED);
89 pipe_resource_reference(&resource, NULL);
96 struct pipe_resource *resource,
103 struct swr_resource *spr = swr_resource(resource);
105 enum pipe_format format = resource->format;
107 assert(resource);
108 assert(level <= resource->last_level);
113 swr_store_dirty_resource(pipe, resource, SWR_TILE_INVALI
95 swr_transfer_map(struct pipe_context *pipe, struct pipe_resource *resource, unsigned level, unsigned usage, const struct pipe_box *box, struct pipe_transfer **transfer) argument
[all...]
/external/libcups/cups/
H A Dtesthttp.c34 *resource; /* Resource string */ member in struct:uri_test_s
133 { HTTP_URI_STATUS_UNKNOWN_SCHEME, "vendor://server/resource",
134 "vendor", "", "server", "/resource", 0, 0,
137 /* Missing resource */
151 { HTTP_URI_STATUS_BAD_SCHEME, "bad_scheme://server/resource",
156 { HTTP_URI_STATUS_BAD_USERNAME, "http://username:passwor%6@server/resource",
182 /* Bad resource */
229 resource[HTTP_MAX_URI]; /* Resource from URI */ local
396 resource, sizeof(resource));
[all...]
/external/mesa3d/src/gallium/drivers/radeon/
H A Dr600_buffer_common.c48 struct r600_resource *resource,
55 return ctx->ws->buffer_map(resource->buf, NULL, usage);
65 resource->buf, rusage)) {
76 resource->buf, rusage)) {
86 if (busy || !ctx->ws->buffer_wait(resource->buf, 0, rusage)) {
99 return ctx->ws->buffer_map(resource->buf, NULL, usage);
196 /* Allocate a new resource. */
266 struct pipe_resource *resource)
269 struct r600_resource *rbuffer = r600_resource(resource);
272 if (resource
47 r600_buffer_map_sync_with_rings(struct r600_common_context *ctx, struct r600_resource *resource, unsigned usage) argument
265 r600_invalidate_resource(struct pipe_context *ctx, struct pipe_resource *resource) argument
276 r600_buffer_get_transfer(struct pipe_context *ctx, struct pipe_resource *resource, unsigned level, unsigned usage, const struct pipe_box *box, struct pipe_transfer **ptransfer, void *data, struct r600_resource *staging, unsigned offset) argument
311 r600_buffer_transfer_map(struct pipe_context *ctx, struct pipe_resource *resource, unsigned level, unsigned usage, const struct pipe_box *box, struct pipe_transfer **ptransfer) argument
[all...]
/external/tensorflow/tensorflow/core/framework/
H A Dresource_mgr.h45 // Each resource must be represented as a sub-class of ResourceBase,
46 // which is reference counted explicitly. Each named resource is
48 // time, there is at most one instance of a resource given the container
49 // name, the resource type and the resource name.
81 // Returns memory used by this resource.
112 // Creates a resource "name" in the "container". The caller transfers
113 // the ownership of one ref on "resource" to *this
116 // REQUIRES: resource != nullptr.
119 T* resource) TF_MUST_USE_RESUL
359 Create(const string& container, const string& name, T* resource) argument
381 LookupOrCreate(const string& container, const string& name, T** resource, std::function<Status(T**)> creator) argument
409 GetResourceFromContext(OpKernelContext* ctx, const string& input_name, T** resource) argument
[all...]
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_scene.c41 /** List of resource references */
43 struct pipe_resource *resource[RESOURCE_REF_SZ]; member in struct:resource_ref
261 debug_printf("resource %d: %p %dx%d sz %d\n",
263 (void *) ref->resource[i],
264 ref->resource[i]->width0,
265 ref->resource[i]->height0,
266 llvmpipe_resource_size(ref->resource[i]));
268 pipe_resource_reference(&ref->resource[i], NULL);
372 * Add a reference to a resource by the scene.
376 struct pipe_resource *resource,
375 lp_scene_add_resource_reference(struct lp_scene *scene, struct pipe_resource *resource, boolean initializing_scene) argument
434 lp_scene_is_resource_referenced(const struct lp_scene *scene, const struct pipe_resource *resource) argument
[all...]
/external/mesa3d/src/gallium/drivers/noop/
H A Dnoop_pipe.c89 * resource
139 struct pipe_resource *resource,
149 tex = screen->resource_create(screen, resource);
159 struct pipe_resource *resource)
161 struct noop_resource *nresource = (struct noop_resource *)resource;
164 FREE(resource);
172 struct pipe_resource *resource,
179 struct noop_resource *nresource = (struct noop_resource *)resource;
184 pipe_resource_reference(&transfer->resource, resource);
137 noop_resource_get_handle(struct pipe_screen *pscreen, struct pipe_context *ctx, struct pipe_resource *resource, struct winsys_handle *handle, unsigned usage) argument
158 noop_resource_destroy(struct pipe_screen *screen, struct pipe_resource *resource) argument
171 noop_transfer_map(struct pipe_context *pipe, struct pipe_resource *resource, unsigned level, enum pipe_transfer_usage usage, const struct pipe_box *box, struct pipe_transfer **ptransfer) argument
208 noop_buffer_subdata(struct pipe_context *pipe, struct pipe_resource *resource, unsigned usage, unsigned offset, unsigned size, const void *data) argument
215 noop_texture_subdata(struct pipe_context *pipe, struct pipe_resource *resource, unsigned level, unsigned usage, const struct pipe_box *box, const void *data, unsigned stride, unsigned layer_stride) argument
273 noop_flush_resource(struct pipe_context *ctx, struct pipe_resource *resource) argument
295 noop_generate_mipmap(struct pipe_context *ctx, struct pipe_resource *resource, enum pipe_format format, unsigned base_level, unsigned last_level, unsigned first_layer, unsigned last_layer) argument
344 noop_flush_frontbuffer(struct pipe_screen *_screen, struct pipe_resource *resource, unsigned level, unsigned layer, void *context_private, struct pipe_box *box) argument
[all...]
/external/autotest/client/cros/multimedia/
H A Dbrowser_facade_native.py17 def __init__(self, resource):
20 @param resource: A FacadeResource object.
23 self._resource = resource
/external/curl/docs/cmdline-opts/
H A Dignore-content-length.d2 Help: Ignore the size of the remote resource
H A Dlocal-port.d7 for the connection(s). Note that port numbers by nature are a scarce resource
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
H A DStreamBitmapDataLoadProvider.java1 package com.bumptech.glide.load.resource.bitmap;
11 import com.bumptech.glide.load.resource.file.FileToStreamDecoder;
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/file/
H A DStreamFileDataLoadProvider.java1 package com.bumptech.glide.load.resource.file;
8 import com.bumptech.glide.load.resource.NullResourceEncoder;
/external/icu/icu4c/source/extra/uconv/
H A Dresfiles.mk4 # A small makefile containing the list of resource bundles

Completed in 680 milliseconds

1234567891011>>