Home
last modified time | relevance | path

Searched refs:resident (Results 1 – 25 of 60) sorted by relevance

123

/external/deqp-deps/glslang/Test/
Dspv.sparseTexture.frag36 int resident = 0;
41 resident |= sparseTextureARB(s2D, c2, texel);
42 resident |= sparseTextureARB(s3D, c3, texel, 2.0);
43 resident |= sparseTextureARB(isCube, c3, itexel);
44 resident |= sparseTextureARB(s2DShadow, c3, texel.x);
45 resident |= sparseTextureARB(sCubeArrayShadow, c4, 1.0, texel.x);
47 resident |= sparseTextureLodARB(s2D, c2, 2.0, texel);
48 resident |= sparseTextureLodARB(usCubeArray, c4, 1.0, utexel);
49 resident |= sparseTextureLodARB(s2DShadow, c3, 2.0, texel.y);
51 resident |= sparseTextureOffsetARB(s3D, c3, ivec3(2), texel, 2.0);
[all …]
Dspv.sparseTextureClamp.frag28 int resident = 0;
33 resident |= sparseTextureClampARB(s2D, c2, lodClamp, texel);
34 resident |= sparseTextureClampARB(s3D, c3, lodClamp, texel, 2.0);
35 resident |= sparseTextureClampARB(isCube, c3, lodClamp, itexel);
36 resident |= sparseTextureClampARB(s2DShadow, c3, lodClamp, texel.x);
37 resident |= sparseTextureClampARB(sCubeArrayShadow, c4, 1.0, lodClamp, texel.x);
45 resident |= sparseTextureOffsetClampARB(s3D, c3, ivec3(2), lodClamp, texel, 2.0);
46 resident |= sparseTextureOffsetClampARB(us2DRect, c2, ivec2(3), lodClamp, utexel);
47 resident |= sparseTextureOffsetClampARB(s2DArrayShadow, c4, ivec2(5), lodClamp, texel.z);
53 resident |= sparseTextureGradClampARB(s3D, c3, c3, c3, lodClamp, texel);
[all …]
/external/deqp-deps/glslang/Test/baseResults/
Dspv.sparseTexture.frag.out20 Name 8 "resident"
205 8(resident): 7(ptr) Variable Function
210 Store 8(resident) 9
220 39: 6(int) Load 8(resident)
222 Store 8(resident) 40
229 54: 6(int) Load 8(resident)
231 Store 8(resident) 55
238 66: 6(int) Load 8(resident)
240 Store 8(resident) 67
249 81: 6(int) Load 8(resident)
[all …]
Dspv.sparseTextureClamp.frag.out19 Name 8 "resident"
163 8(resident): 7(ptr) Variable Function
168 Store 8(resident) 9
179 42: 6(int) Load 8(resident)
181 Store 8(resident) 43
189 58: 6(int) Load 8(resident)
191 Store 8(resident) 59
199 71: 6(int) Load 8(resident)
201 Store 8(resident) 72
211 87: 6(int) Load 8(resident)
[all …]
/external/jemalloc_new/src/
Dbase.c217 base->resident += PAGE_CEILING((uintptr_t)addr + size) - in base_extent_bump_alloc_post()
219 assert(base->allocated <= base->resident); in base_extent_bump_alloc_post()
220 assert(base->resident <= base->mapped); in base_extent_bump_alloc_post()
328 base->resident += PAGE_CEILING(sizeof(base_block_t)); in base_extent_alloc()
337 assert(base->allocated <= base->resident); in base_extent_alloc()
338 assert(base->resident <= base->mapped); in base_extent_alloc()
380 base->resident = PAGE_CEILING(sizeof(base_block_t)); in base_new()
385 assert(base->allocated <= base->resident); in base_new()
386 assert(base->resident <= base->mapped); in base_new()
481 base_stats_get(tsdn_t *tsdn, base_t *base, size_t *allocated, size_t *resident, in base_stats_get() argument
[all …]
Dstats.c529 size_t base, internal, resident, metadata_thp; in stats_arena_print() local
811 GET_AND_EMIT_MEM_STAT(resident) in stats_arena_print()
1071 size_t allocated, active, metadata, metadata_thp, resident, mapped, in stats_print_helper() local
1080 CTL_GET("stats.resident", &resident, size_t); in stats_print_helper()
1104 emitter_json_kv(emitter, "resident", emitter_type_size, &resident); in stats_print_helper()
1111 resident, mapped, retained); in stats_print_helper()
/external/jemalloc_new/test/unit/
Dbase.c31 size_t allocated0, allocated1, resident, mapped, n_thp; in TEST_BEGIN() local
37 base_stats_get(tsdn, base, &allocated0, &resident, &mapped, in TEST_BEGIN()
51 base_stats_get(tsdn, base, &allocated1, &resident, &mapped, in TEST_BEGIN()
64 size_t allocated0, allocated1, resident, mapped, n_thp; in TEST_BEGIN() local
80 base_stats_get(tsdn, base, &allocated0, &resident, &mapped, in TEST_BEGIN()
94 base_stats_get(tsdn, base, &allocated1, &resident, &mapped, in TEST_BEGIN()
Dstats.c4 size_t sz, allocated, active, resident, mapped; in TEST_BEGIN() local
12 assert_d_eq(mallctl("stats.resident", (void *)&resident, &sz, NULL, 0), in TEST_BEGIN()
20 assert_zu_lt(active, resident, in TEST_BEGIN()
/external/deqp/doc/testspecs/VK/
Dsparse_resources.txt9 1. Test fully resident buffer created with VK_BUFFER_CREATE_SPARSE_BINDING_BIT flag bit
10 2. Test fully resident image created with VK_IMAGE_CREATE_SPARSE_BINDING_BIT flag bit
11 3. Test partially resident buffer created with VK_BUFFER_CREATE_SPARSE_RESIDENCY_BIT flag bit
12 4. Test partially resident image created with VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT flag bit
13 5. Test partially resident image with mipmaps, put some mipmap levels in mip tail region
14 6. Test memory aliasing for fully resident buffer objects
15 7. Test memory aliasing for partially resident images
20 1. Test fully resident buffer created with VK_BUFFER_CREATE_SPARSE_BINDING_BIT flag bit
40 2. Test fully resident image created with VK_IMAGE_CREATE_SPARSE_BINDING_BIT flag bit
59 3. Test partially resident buffer created with VK_BUFFER_CREATE_SPARSE_RESIDENCY_BIT flag bit
[all …]
/external/swiftshader/src/Common/
DSharedLibrary.hpp104 void *resident = dlopen(path, RTLD_LAZY | RTLD_NOLOAD | RTLD_LOCAL); in getLibraryHandle()
106 if(resident) in getLibraryHandle()
/external/swiftshader/src/System/
DSharedLibrary.hpp122 void *resident = dlopen(path, RTLD_LAZY | RTLD_NOLOAD | RTLD_LOCAL); in getLibraryHandle()
124 if(resident) in getLibraryHandle()
/external/jemalloc/src/
Dbase.c142 base_stats_get(tsdn_t *tsdn, size_t *allocated, size_t *resident, in base_stats_get() argument
150 *resident = base_resident; in base_stats_get()
/external/jemalloc/include/jemalloc/internal/
Dbase.h13 void base_stats_get(tsdn_t *tsdn, size_t *allocated, size_t *resident,
Dctl.h62 size_t resident; member
/external/jemalloc_new/include/jemalloc/internal/
Dbase_structs.h53 size_t resident; member
Dbase_externs.h16 size_t *resident, size_t *mapped, size_t *n_thp);
Dctl.h52 size_t resident; member
/external/jemalloc/test/unit/
Dstats.c6 size_t sz, allocated, active, resident, mapped; in TEST_BEGIN() local
18 assert_d_eq(mallctl("stats.resident", (void *)&resident, &sz, NULL, 0), in TEST_BEGIN()
28 assert_zu_lt(active, resident, in TEST_BEGIN()
/external/mesa3d/src/gallium/drivers/nouveau/nvc0/
Dnve4_compute.c684 list_for_each_entry(struct nvc0_resident, resident, &nvc0->tex_head, list) { in nve4_launch_grid()
685 nvc0_add_resident(nvc0->bufctx_cp, NVC0_BIND_CP_BINDLESS, resident->buf, in nve4_launch_grid()
686 resident->flags); in nve4_launch_grid()
689 list_for_each_entry(struct nvc0_resident, resident, &nvc0->img_head, list) { in nve4_launch_grid()
690 nvc0_add_resident(nvc0->bufctx_cp, NVC0_BIND_CP_BINDLESS, resident->buf, in nve4_launch_grid()
691 resident->flags); in nve4_launch_grid()
Dnvc0_vbo.c975 list_for_each_entry(struct nvc0_resident, resident, &nvc0->tex_head, list) { in nvc0_draw_vbo()
976 nvc0_add_resident(nvc0->bufctx_3d, NVC0_BIND_3D_BINDLESS, resident->buf, in nvc0_draw_vbo()
977 resident->flags); in nvc0_draw_vbo()
980 list_for_each_entry(struct nvc0_resident, resident, &nvc0->img_head, list) { in nvc0_draw_vbo()
981 nvc0_add_resident(nvc0->bufctx_3d, NVC0_BIND_3D_BINDLESS, resident->buf, in nvc0_draw_vbo()
982 resident->flags); in nvc0_draw_vbo()
/external/mesa3d/src/mesa/main/
Dtexturebindless.c121 bool resident) in make_texture_handle_resident() argument
127 if (resident) { in make_texture_handle_resident()
171 GLenum access, bool resident) in make_image_handle_resident() argument
176 if (resident) { in make_image_handle_resident()
/external/mesa3d/src/gallium/include/pipe/
Dp_context.h844 uint64_t handle, bool resident);
873 unsigned access, bool resident);
/external/mesa3d/src/gallium/drivers/ddebug/
Ddd_context.c717 uint64_t handle, bool resident) in dd_context_make_texture_handle_resident() argument
721 pipe->make_texture_handle_resident(pipe, handle, resident); in dd_context_make_texture_handle_resident()
744 bool resident) in dd_context_make_image_handle_resident() argument
748 pipe->make_image_handle_resident(pipe, handle, access, resident); in dd_context_make_image_handle_resident()
/external/u-boot/board/Arcturus/ucp1020/
DREADME25 SPI resident factory defaults for serial number, and 1, 2 or 3 Ethernet
/external/mesa3d/src/gallium/auxiliary/util/
Du_threaded_context.c1189 bool resident; member
1199 pipe->make_texture_handle_resident(pipe, p->handle, p->resident); in tc_call_make_texture_handle_resident()
1204 bool resident) in tc_make_texture_handle_resident() argument
1212 p->resident = resident; in tc_make_texture_handle_resident()
1247 bool resident; member
1257 pipe->make_image_handle_resident(pipe, p->handle, p->access, p->resident); in tc_call_make_image_handle_resident()
1262 unsigned access, bool resident) in tc_make_image_handle_resident() argument
1271 p->resident = resident; in tc_make_image_handle_resident()

123