/external/mesa3d/src/mesa/state_tracker/ |
D | st_cb_fbo.c | 67 struct st_renderbuffer *strb = st_renderbuffer(rb); in st_renderbuffer_alloc_sw_storage() local 71 free(strb->data); in st_renderbuffer_alloc_sw_storage() 72 strb->data = NULL; in st_renderbuffer_alloc_sw_storage() 93 strb->Base.Format = st_pipe_format_to_mesa_format(format); in st_renderbuffer_alloc_sw_storage() 95 size = _mesa_format_image_size(strb->Base.Format, width, height, 1); in st_renderbuffer_alloc_sw_storage() 96 strb->data = malloc(size); in st_renderbuffer_alloc_sw_storage() 97 return strb->data != NULL; in st_renderbuffer_alloc_sw_storage() 115 struct st_renderbuffer *strb = st_renderbuffer(rb); in st_renderbuffer_alloc_storage() local 121 strb->Base.Width = width; in st_renderbuffer_alloc_storage() 122 strb->Base.Height = height; in st_renderbuffer_alloc_storage() [all …]
|
D | st_atom_framebuffer.c | 53 struct st_renderbuffer *strb) in update_renderbuffer_surface() argument 56 struct pipe_resource *resource = strb->rtt ? strb->rtt->pt : strb->texture; in update_renderbuffer_surface() 57 int rtt_width = strb->Base.Width; in update_renderbuffer_surface() 58 int rtt_height = strb->Base.Height; in update_renderbuffer_surface() 61 if (!strb->surface || in update_renderbuffer_surface() 62 strb->surface->format != format || in update_renderbuffer_surface() 63 strb->surface->texture != resource || in update_renderbuffer_surface() 64 strb->surface->width != rtt_width || in update_renderbuffer_surface() 65 strb->surface->height != rtt_height) { in update_renderbuffer_surface() 76 surf_tmpl.u.tex.first_layer = strb->rtt_face + strb->rtt_slice; in update_renderbuffer_surface() [all …]
|
D | st_cb_eglimage.c | 79 struct st_renderbuffer *strb = st_renderbuffer(rb); in st_egl_image_target_renderbuffer_storage() local 86 strb->Base.Width = ps->width; in st_egl_image_target_renderbuffer_storage() 87 strb->Base.Height = ps->height; in st_egl_image_target_renderbuffer_storage() 88 strb->Base.Format = st_pipe_format_to_mesa_format(ps->format); in st_egl_image_target_renderbuffer_storage() 89 strb->Base._BaseFormat = st_pipe_format_to_base_format(ps->format); in st_egl_image_target_renderbuffer_storage() 90 strb->Base.InternalFormat = strb->Base._BaseFormat; in st_egl_image_target_renderbuffer_storage() 92 pipe_surface_reference(&strb->surface, ps); in st_egl_image_target_renderbuffer_storage() 93 pipe_resource_reference(&strb->texture, ps->texture); in st_egl_image_target_renderbuffer_storage()
|
D | st_cb_flush.c | 55 struct st_renderbuffer *strb in is_front_buffer_dirty() local 57 return strb && strb->defined; in is_front_buffer_dirty() 68 struct st_renderbuffer *strb in display_front_buffer() local 71 if (strb) { in display_front_buffer()
|
D | st_manager.c | 207 struct st_renderbuffer *strb; in st_framebuffer_validate() local 220 strb = st_renderbuffer(stfb->Base.Attachment[idx].Renderbuffer); in st_framebuffer_validate() 221 assert(strb); in st_framebuffer_validate() 222 if (strb->texture == textures[i]) { in st_framebuffer_validate() 231 pipe_surface_reference(&strb->surface, ps); in st_framebuffer_validate() 232 pipe_resource_reference(&strb->texture, ps->texture); in st_framebuffer_validate() 238 strb->Base.Width = strb->surface->width; in st_framebuffer_validate() 239 strb->Base.Height = strb->surface->height; in st_framebuffer_validate() 241 width = strb->Base.Width; in st_framebuffer_validate() 242 height = strb->Base.Height; in st_framebuffer_validate() [all …]
|
D | st_cb_clear.c | 389 const struct st_renderbuffer *strb = st_renderbuffer(rb); in check_clear_depth_with_quad() local 390 const GLboolean isDS = util_format_is_depth_and_stencil(strb->surface->format); in check_clear_depth_with_quad() 413 const struct st_renderbuffer *strb = st_renderbuffer(rb); in check_clear_stencil_with_quad() local 414 const GLboolean isDS = util_format_is_depth_and_stencil(strb->surface->format); in check_clear_stencil_with_quad() 470 struct st_renderbuffer *strb = st_renderbuffer(rb); in st_Clear() local 472 if (!strb || !strb->surface) in st_Clear() 485 struct st_renderbuffer *strb = st_renderbuffer(depthRb); in st_Clear() local 487 if (strb->surface) { in st_Clear() 498 struct st_renderbuffer *strb = st_renderbuffer(depthRb); in st_Clear() local 500 if (strb->surface) { in st_Clear() [all …]
|
D | st_cb_texture.c | 715 struct st_renderbuffer *strb, in fallback_copy_texsubimage() argument 732 srcY = strb->Base.Height - srcY - height; in fallback_copy_texsubimage() 736 strb->texture, in fallback_copy_texsubimage() 737 strb->rtt_level, in fallback_copy_texsubimage() 738 strb->rtt_face + strb->rtt_slice, in fallback_copy_texsubimage() 809 util_format_linear(strb->texture->format), in fallback_copy_texsubimage() 924 struct st_renderbuffer *strb; in st_CopyTexSubImage() local 944 strb = st_renderbuffer(fb->Attachment[BUFFER_DEPTH].Renderbuffer); in st_CopyTexSubImage() 948 strb = st_renderbuffer(fb->_ColorReadBuffer); in st_CopyTexSubImage() 951 if (!strb || !strb->surface || !stImage->pt) { in st_CopyTexSubImage() [all …]
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
D | vg_manager.c | 48 struct st_renderbuffer *strb = ctx->draw_buffer->strb; in vg_context_update_color_rb() local 52 if (strb->texture == pt) { in vg_context_update_color_rb() 58 pipe_surface_reference(&strb->surface, NULL); in vg_context_update_color_rb() 59 pipe_resource_reference(&strb->texture, NULL); in vg_context_update_color_rb() 60 strb->width = strb->height = 0; in vg_context_update_color_rb() 62 strb->texture = pt; in vg_context_update_color_rb() 65 u_surface_default_template(&surf_tmpl, strb->texture, in vg_context_update_color_rb() 67 strb->surface = pipe->create_surface(pipe, strb->texture, &surf_tmpl); in vg_context_update_color_rb() 69 if (!strb->surface) { in vg_context_update_color_rb() 70 pipe_resource_reference(&strb->texture, NULL); in vg_context_update_color_rb() [all …]
|
/external/libvpx/libvpx/vp8/common/arm/armv6/ |
D | copymem16x16_v6.asm | 45 strb r4, [r2] 46 strb r5, [r2, #1] 47 strb r6, [r2, #2] 48 strb r7, [r2, #3] 57 strb r4, [r2, #4] 58 strb r5, [r2, #5] 59 strb r6, [r2, #6] 60 strb r7, [r2, #7] 67 strb r4, [r2, #8] 68 strb r5, [r2, #9] [all …]
|
D | copymem8x8_v6.asm | 42 strb r4, [r2] 43 strb r5, [r2, #1] 50 strb r4, [r2, #2] 51 strb r5, [r2, #3] 56 strb r4, [r2, #4] 57 strb r5, [r2, #5] 64 strb r4, [r2, #6] 65 strb r5, [r2, #7]
|
D | copymem8x4_v6.asm | 42 strb r4, [r2] 43 strb r5, [r2, #1] 50 strb r4, [r2, #2] 51 strb r5, [r2, #3] 56 strb r4, [r2, #4] 57 strb r5, [r2, #5] 64 strb r4, [r2, #6] 65 strb r5, [r2, #7]
|
D | simpleloopfilter_v6.asm | 234 strb r4, [src, #-1] ; store the result 236 strb r5, [src], pstep 239 strb r4, [src, #-1] 241 strb r5, [src], pstep 244 strb r4, [src, #-1] 246 strb r5, [src], pstep 249 strb r4, [src, #-1] 250 strb r5, [src], pstep
|
D | loopfilter_v6.asm | 1115 strb r10, [src, #-1] ; store op0 result 1116 strb r8, [src], pstep ; store oq0 result 1119 strb r10, [src, #-1] 1120 strb r8, [src], pstep 1123 strb r10, [src, #-1] 1124 strb r8, [src], pstep 1127 strb r10, [src, #-1] 1128 strb r8, [src], pstep 1168 strb r10, [src, #-4] ; store op1 1169 strb r8, [src, #-1] ; store oq1 [all …]
|
D | bilinearfilter_v6.asm | 185 strb r6, [r1], r2 ; the result is transposed back and stored 188 strb r7, [r1], r2 192 strb r8, [r1], r2 ; the result is transposed back and stored 195 strb r9, [r1], r2 218 strb r6, [r1], r2 ; store data 220 strb r7, [r1], r2 222 strb r8, [r1], r2 223 strb r9, [r1], r2
|
/external/llvm/test/CodeGen/ARM/ |
D | 2011-10-26-memset-inline.ll | 8 ; CHECK-GENERIC: strb 9 ; CHECK-GENERIC-NEXT: strb 10 ; CHECK-GENERIC-NEXT: strb 11 ; CHECK-GENERIC-NEXT: strb 12 ; CHECK-GENERIC-NEXT: strb 13 ; CHECK-UNALIGNED: strb
|
D | unaligned_load_store.ll | 20 ; EXPANDED: strb [[R1]] 21 ; EXPANDED: strb [[R12]] 22 ; EXPANDED: strb [[R3]] 23 ; EXPANDED: strb [[R2]] 58 ; EXPANDED: strb 72 ; EXPANDED: strb 77 ; UNALIGNED-NOT: strb
|
D | fast-isel-intrinsic.ll | 192 ; ARM: strb r1, [r0, #4] 194 ; ARM: strb r1, [r0, #5] 196 ; ARM: strb r1, [r0, #6] 198 ; ARM: strb r1, [r0, #7] 200 ; ARM: strb r1, [r0, #8] 202 ; ARM: strb r1, [r0, #9] 204 ; ARM: strb r1, [r0, #10] 206 ; ARM: strb r1, [r0, #11] 208 ; ARM: strb r1, [r0, #12] 210 ; ARM: strb r1, [r0, #13] [all …]
|
D | fast-isel-align.ll | 85 ; ARM-STRICT-ALIGN: strb 86 ; ARM-STRICT-ALIGN: strb 89 ; THUMB-STRICT-ALIGN: strb 90 ; THUMB-STRICT-ALIGN: strb 113 ; ARM-STRICT-ALIGN: strb 114 ; ARM-STRICT-ALIGN: strb 115 ; ARM-STRICT-ALIGN: strb 116 ; ARM-STRICT-ALIGN: strb 119 ; THUMB-STRICT-ALIGN: strb 120 ; THUMB-STRICT-ALIGN: strb [all …]
|
/external/llvm/test/CodeGen/Thumb2/ |
D | thumb2-strb.ll | 5 ; CHECK: strb r0, [r1] 12 ; CHECK: strb.w r0, [r1, #4092] 20 ; CHECK: strb r0, [r1, #-128] 29 ; CHECK: strb r0, [r1, r2] 38 ; CHECK: strb r0, [r1, #-128] 48 ; CHECK: strb r0, [r1, r2] 58 ; CHECK: strb.w r0, [r1, r2, lsl #2] 70 ; CHECK: strb r0, [r1, r2]
|
/external/boringssl/linux-arm/crypto/modes/ |
D | ghash-armv4.S | 119 strb r4,[r0,#12+3] 121 strb r9,[r0,#12+2] 123 strb r10,[r0,#12+1] 124 strb r11,[r0,#12] 134 strb r5,[r0,#8+3] 136 strb r9,[r0,#8+2] 138 strb r10,[r0,#8+1] 139 strb r11,[r0,#8] 149 strb r6,[r0,#4+3] 151 strb r9,[r0,#4+2] [all …]
|
/external/llvm/test/CodeGen/AArch64/ |
D | arm64-abi.ll | 46 ; CHECK-DAG: strb {{w[0-9]+}}, [sp, #5] 47 ; CHECK-DAG: strb {{w[0-9]+}}, [sp, #4] 49 ; CHECK-DAG: strb {{w[0-9]+}}, [sp] 52 ; FAST: strb {{w[0-9]+}}, [sp] 54 ; FAST: strb {{w[0-9]+}}, [sp, #4] 55 ; FAST: strb {{w[0-9]+}}, [sp, #5] 163 ; CHECK: strb [[REG_3:w[0-9]+]], [sp, #16] 177 ; CHECK: strb [[REG_2:w[0-9]+]], [sp, #8] 194 ; CHECK: strb [[REG_2:w[0-9]+]], [sp, #8] 208 ; CHECK: strb {{w[0-9]+}}, [sp, #3] [all …]
|
D | arm64-fast-isel-intrinsic.ll | 59 ; ARM64: strb w11, [x8, #16] 76 ; ARM64: strb w11, [x8, #16] 93 ; ARM64: strb w10, [x8, #8] 112 ; ARM64: strb w10, [x8, #6] 125 ; ARM64: strb w10, [x8] 127 ; ARM64: strb w10, [x8, #1] 129 ; ARM64: strb w10, [x8, #2] 131 ; ARM64: strb w10, [x8, #3] 143 ; ARM64: strb [[BYTE]], [x0]
|
/external/llvm/test/MC/Disassembler/ARM/ |
D | memory-arm-instructions.txt | 335 # CHECK: strb r9, [r2 336 # CHECK: strb r7, [r1, #3 337 # CHECK: strb r6, [r4, #405]! 338 # CHECK: strb r5, [r7], #72 339 # CHECK: strb r1, [sp], #-1 354 # CHECK: strb r1, [r2, r9 355 # CHECK: strb r2, [r3, -r8 356 # CHECK: strb r3, [r4, r7]! 357 # CHECK: strb r4, [r5, -r6]! 358 # CHECK: strb r5, [r6], r5 [all …]
|
/external/libvpx/libvpx/vpx_dsp/arm/ |
D | bilinear_filter_media.asm | 185 strb r6, [r1], r2 ; the result is transposed back and stored 188 strb r7, [r1], r2 192 strb r8, [r1], r2 ; the result is transposed back and stored 195 strb r9, [r1], r2 218 strb r6, [r1], r2 ; store data 220 strb r7, [r1], r2 222 strb r8, [r1], r2 223 strb r9, [r1], r2
|
/external/boringssl/linux-arm/crypto/aes/ |
D | aes-armv4.S | 239 strb r4,[r12,#0] 240 strb r5,[r12,#1] 242 strb r6,[r12,#2] 244 strb r0,[r12,#3] 246 strb r4,[r12,#4] 247 strb r5,[r12,#5] 249 strb r6,[r12,#6] 251 strb r1,[r12,#7] 253 strb r4,[r12,#8] 254 strb r5,[r12,#9] [all …]
|