/third_party/mesa3d/src/gallium/drivers/freedreno/a5xx/ |
H A D | fd5_blitter.c | 193 const struct pipe_box *sbox = &info->src.box; in emit_blit_buffer() local 204 assert((sbox->y == 0) && (sbox->height == 1)); in emit_blit_buffer() 206 assert((sbox->z == 0) && (sbox->depth == 1)); in emit_blit_buffer() 208 assert(sbox->width == dbox->width); in emit_blit_buffer() 230 sshift = sbox->x & 0x3f; in emit_blit_buffer() 233 for (unsigned off = 0; off < sbox->width; off += (0x4000 - 0x40)) { in emit_blit_buffer() 236 soff = (sbox->x + off) & ~0x3f; in emit_blit_buffer() 239 w = MIN2(sbox in emit_blit_buffer() 308 const struct pipe_box *sbox = &info->src.box; emit_blit() local [all...] |
/third_party/node/deps/openssl/openssl/crypto/aes/asm/ |
H A D | aes-x86_64.pl | 71 $sbox="%r14"; 108 mov 0($sbox,$acc0,8),$t0 109 mov 0($sbox,$acc1,8),$t1 110 mov 0($sbox,$acc2,8),$t2 115 xor 3($sbox,$acc0,8),$t0 116 xor 3($sbox,$acc1,8),$t1 117 mov 0($sbox,$acc2,8),$t3 122 xor 3($sbox,$acc0,8),$t2 124 xor 3($sbox,$acc2,8),$t3 133 xor 2($sbox, [all...] |
H A D | vpaes-armv8.pl | 102 .Lk_dsbo: // decryption sbox final output 105 .Lk_dsb9: // decryption sbox output *9*u, *9*t 108 .Lk_dsbd: // decryption sbox output *D*u, *D*t 111 .Lk_dsbb: // decryption sbox output *B*u, *B*t 114 .Lk_dsbe: // decryption sbox output *E*u, *E*t 140 .Lk_deskew: // deskew tables: inverts the sbox's "skew" 933 eor v1.16b, v1.16b, v4.16b // vpxor %xmm4, %xmm1, %xmm1 # 0 = sbox output
|
/third_party/openssl/crypto/aes/asm/ |
H A D | aes-x86_64.pl | 71 $sbox="%r14"; 108 mov 0($sbox,$acc0,8),$t0 109 mov 0($sbox,$acc1,8),$t1 110 mov 0($sbox,$acc2,8),$t2 115 xor 3($sbox,$acc0,8),$t0 116 xor 3($sbox,$acc1,8),$t1 117 mov 0($sbox,$acc2,8),$t3 122 xor 3($sbox,$acc0,8),$t2 124 xor 3($sbox,$acc2,8),$t3 133 xor 2($sbox, [all...] |
H A D | vpaes-armv8.pl | 102 .Lk_dsbo: // decryption sbox final output 105 .Lk_dsb9: // decryption sbox output *9*u, *9*t 108 .Lk_dsbd: // decryption sbox output *D*u, *D*t 111 .Lk_dsbb: // decryption sbox output *B*u, *B*t 114 .Lk_dsbe: // decryption sbox output *E*u, *E*t 140 .Lk_deskew: // deskew tables: inverts the sbox's "skew" 952 eor v1.16b, v1.16b, v4.16b // vpxor %xmm4, %xmm1, %xmm1 # 0 = sbox output
|
/third_party/ffmpeg/libavutil/ |
H A D | aes.c | 44 static uint8_t sbox[256]; variable 122 static inline void aes_crypt(AVAES *a, int s, const uint8_t *sbox, in aes_crypt() argument 132 subshift(&a->state[0], s, sbox); in aes_crypt() 142 aes_crypt(a, 2, sbox, enc_multbl); in aes_encrypt() 175 const uint8_t *sbox) in init_multbl2() 180 int x = sbox[i]; in init_multbl2() 224 sbox[i] = j; in av_aes_init() 229 log8, alog8, sbox); in av_aes_init() 242 tk[0][i] ^= sbox[tk[KC - 1][(i + 1) & 3]]; in av_aes_init() 251 tk[j][i] ^= sbox[t in av_aes_init() 173 init_multbl2(uint32_t tbl[][256], const int c[4], const uint8_t *log8, const uint8_t *alog8, const uint8_t *sbox) init_multbl2() argument [all...] |
/third_party/mesa3d/src/gallium/drivers/freedreno/a6xx/ |
H A D | fd6_blitter.c | 304 const struct pipe_box *sbox = &info->src.box; in emit_blit_buffer() local 320 assert((sbox->y == 0) && (sbox->height == 1)); in emit_blit_buffer() 322 assert((sbox->z == 0) && (sbox->depth == 1)); in emit_blit_buffer() 324 assert(sbox->width == dbox->width); in emit_blit_buffer() 346 sshift = sbox->x & 0x3f; in emit_blit_buffer() 351 for (unsigned off = 0; off < sbox->width; off += (0x4000 - 0x40)) { in emit_blit_buffer() 354 soff = (sbox->x + off) & ~0x3f; in emit_blit_buffer() 357 w = MIN2(sbox in emit_blit_buffer() 630 const struct pipe_box *sbox = &info->src.box; emit_blit_texture() local [all...] |
/third_party/mesa3d/src/gallium/drivers/r600/ |
H A D | r600_blit.c | 678 struct pipe_box sbox, dstbox; in r600_resource_copy_region() local 730 sbox.x = util_format_get_nblocksx(src->format, src_box->x); in r600_resource_copy_region() 731 sbox.y = util_format_get_nblocksy(src->format, src_box->y); in r600_resource_copy_region() 732 sbox.z = src_box->z; in r600_resource_copy_region() 733 sbox.width = util_format_get_nblocksx(src->format, src_box->width); in r600_resource_copy_region() 734 sbox.height = util_format_get_nblocksy(src->format, src_box->height); in r600_resource_copy_region() 735 sbox.depth = src_box->depth; in r600_resource_copy_region() 736 src_box = &sbox; in r600_resource_copy_region() 751 sbox = *src_box; in r600_resource_copy_region() 752 sbox in r600_resource_copy_region() [all...] |
H A D | r600_texture.c | 158 struct pipe_box sbox; in r600_copy_from_staging_texture() local 160 u_box_3d(0, 0, 0, transfer->box.width, transfer->box.height, transfer->box.depth, &sbox); in r600_copy_from_staging_texture() 165 src, 0, &sbox); in r600_copy_from_staging_texture() 171 src, 0, &sbox); in r600_copy_from_staging_texture()
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
H A D | si_texture.c | 109 struct pipe_box sbox; in si_copy_from_staging_texture() local 111 u_box_3d(0, 0, 0, transfer->box.width, transfer->box.height, transfer->box.depth, &sbox); in si_copy_from_staging_texture() 118 transfer->box.z, src, 0, &sbox); in si_copy_from_staging_texture() 123 sbox.width = util_format_get_nblocksx(dst->format, sbox.width); in si_copy_from_staging_texture() 124 sbox.height = util_format_get_nblocksx(dst->format, sbox.height); in si_copy_from_staging_texture() 128 transfer->box.z, src, 0, &sbox); in si_copy_from_staging_texture()
|
/third_party/mesa3d/src/gallium/drivers/i915/ |
H A D | i915_resource_texture.c | 879 struct pipe_box sbox; in i915_texture_transfer_unmap() local 881 u_box_origin_2d(itransfer->b.box.width, itransfer->b.box.height, &sbox); in i915_texture_transfer_unmap() 885 itransfer->staging_texture, 0, &sbox); in i915_texture_transfer_unmap()
|
/third_party/nghttp2/bpf/ |
H A D | reuseport_kern.c | 71 static const __u8 sbox[256] = { variable 126 #define getSBoxValue(num) (sbox[(num)])
|
/third_party/mesa3d/src/gallium/frontends/lavapipe/ |
H A D | lvp_execute.c | 2421 struct pipe_box box, sbox; in handle_copy_buffer_to_image() local 2427 sbox.x = copycmd->pRegions[i].bufferOffset; in handle_copy_buffer_to_image() 2428 sbox.y = 0; in handle_copy_buffer_to_image() 2429 sbox.z = 0; in handle_copy_buffer_to_image() 2430 sbox.width = lvp_buffer_from_handle(copycmd->srcBuffer)->bo->width0; in handle_copy_buffer_to_image() 2431 sbox.height = 1; in handle_copy_buffer_to_image() 2432 sbox.depth = 1; in handle_copy_buffer_to_image() 2437 &sbox, in handle_copy_buffer_to_image()
|