HomeSort by relevance Sort by last modified time
    Searched refs:sbox (Results 1 - 13 of 13) sorted by null

  /external/u-boot/lib/
aes.c 32 static const u8 sbox[256] = { variable
103 /* combined Xtimes2[Sbox[]] */
139 /* combined Xtimes3[Sbox[]] */
331 state[0] = sbox[state[0]];
332 state[4] = sbox[state[4]];
333 state[8] = sbox[state[8]];
334 state[12] = sbox[state[12]];
337 tmp = sbox[state[1]];
338 state[1] = sbox[state[5]];
339 state[5] = sbox[state[9]]
    [all...]
  /external/boringssl/src/crypto/fipsmodule/aes/asm/
aes-x86_64.pl 69 $sbox="%r14";
106 mov 0($sbox,$acc0,8),$t0
107 mov 0($sbox,$acc1,8),$t1
108 mov 0($sbox,$acc2,8),$t2
113 xor 3($sbox,$acc0,8),$t0
114 xor 3($sbox,$acc1,8),$t1
115 mov 0($sbox,$acc2,8),$t3
120 xor 3($sbox,$acc0,8),$t2
122 xor 3($sbox,$acc2,8),$t3
131 xor 2($sbox,$acc0,8),$t
    [all...]
vpaes-armv8.pl 98 .Lk_dsbo: // decryption sbox final output
101 .Lk_dsb9: // decryption sbox output *9*u, *9*t
104 .Lk_dsbd: // decryption sbox output *D*u, *D*t
107 .Lk_dsbb: // decryption sbox output *B*u, *B*t
110 .Lk_dsbe: // decryption sbox output *E*u, *E*t
136 .Lk_deskew: // deskew tables: inverts the sbox's "skew"
    [all...]
  /external/mesa3d/src/gallium/drivers/freedreno/a5xx/
fd5_blitter.c 209 const struct pipe_box *sbox = &info->src.box; local
220 debug_assert((sbox->y == 0) && (sbox->height == 1));
222 debug_assert((sbox->z == 0) && (sbox->depth == 1));
224 debug_assert(sbox->width == dbox->width);
246 sshift = sbox->x & 0x3f;
249 for (unsigned off = 0; off < sbox->width; off += (0x4000 - 0x40)) {
252 soff = (sbox->x + off) & ~0x3f;
255 w = MIN2(sbox->width - off, (0x4000 - 0x40))
324 const struct pipe_box *sbox = &info->src.box; local
    [all...]
  /build/soong/cmd/sbox/
sbox.go 59 "Usage: sbox -c <commandToRun> --sandbox-path <sandboxPath> --output-root <outputRoot> --overwrite [--depfile-out depFile] <outputFile> [<outputFile>...]\n"+
105 // and the sbox executable will most likely be at a fixed location relative to OUT_DIR too, so
106 // the value of sandboxesRoot will most likely be at a fixed location relative to the sbox executable
138 tempDir, err := ioutil.TempDir(sandboxesRoot, "sbox")
208 return fmt.Errorf("sbox command (%s) failed with err %#v\n", commandDescription, err.Error())
232 errorMessage += "in sbox command(" + commandDescription + ")\n\n"
  /external/mesa3d/src/gallium/drivers/r600/
r600_blit.c 683 struct pipe_box sbox, dstbox; local
735 sbox.x = util_format_get_nblocksx(src->format, src_box->x);
736 sbox.y = util_format_get_nblocksy(src->format, src_box->y);
737 sbox.z = src_box->z;
738 sbox.width = util_format_get_nblocksx(src->format, src_box->width);
739 sbox.height = util_format_get_nblocksy(src->format, src_box->height);
740 sbox.depth = src_box->depth;
741 src_box = &sbox;
756 sbox = *src_box;
757 sbox.x = util_format_get_nblocksx(src->format, src_box->x)
    [all...]
r600_texture.c 157 struct pipe_box sbox; local
159 u_box_3d(0, 0, 0, transfer->box.width, transfer->box.height, transfer->box.depth, &sbox);
164 src, 0, &sbox);
170 src, 0, &sbox);
    [all...]
  /external/mesa3d/src/gallium/drivers/radeonsi/
si_blit.c 885 struct pipe_box sbox, dstbox; local
930 sbox.x = util_format_get_nblocksx(src->format, src_box->x);
931 sbox.y = util_format_get_nblocksy(src->format, src_box->y);
932 sbox.z = src_box->z;
933 sbox.width = util_format_get_nblocksx(src->format, src_box->width);
934 sbox.height = util_format_get_nblocksy(src->format, src_box->height);
935 sbox.depth = src_box->depth;
936 src_box = &sbox;
950 sbox = *src_box;
951 sbox.x = util_format_get_nblocksx(src->format, src_box->x)
    [all...]
  /external/mesa3d/src/gallium/drivers/i915/
i915_resource_texture.c 806 struct pipe_box sbox; local
808 u_box_origin_2d(itransfer->b.box.width, itransfer->b.box.height, &sbox);
812 0, &sbox);
  /external/scapy/scapy/
volatile.py 53 self.sbox = [self.rnd.randint(0, self.fsmask)
62 lsb ^= self.sbox[ct%self.sbox_size]
  /build/soong/genrule/
genrule.go 43 pctx.HostBinToolVariable("sboxCmd", "sbox")
358 // tell the sbox command which directory to use as its sandbox root
  /external/mesa3d/src/gallium/drivers/radeon/
r600_texture.c 165 struct pipe_box sbox; local
167 u_box_3d(0, 0, 0, transfer->box.width, transfer->box.height, transfer->box.depth, &sbox);
172 src, 0, &sbox);
178 src, 0, &sbox);
    [all...]
  /external/python/cpython2/Modules/
glmodule.c     [all...]

Completed in 7648 milliseconds