| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/fetch2/ |
| H A D | s3.py | 2 BitBake 'Fetch' implementation for Amazon AWS S3. 4 Class for fetching files from Amazon S3 using the AWS Command Line Interface. 38 Extract progress information from s3 cp output, e.g.: 62 class S3(FetchMethod): class 63 """Class to fetch urls via 'aws s3'""" 67 Check to see if a given url can be fetched with s3. 69 return ud.type in ['s3'] 82 ud.basecmd = d.getVar("FETCHCMD_s3") or "/usr/bin/env aws s3" 90 cmd = '%s cp s3://%s%s %s' % (ud.basecmd, ud.host, ud.path, ud.localpath) 101 …raise FetchError("The aws cp command returned success for s3://%s%s but %s doesn't exist?!" % (ud.… [all …]
|
| /OK3568_Linux_fs/kernel/drivers/soc/bcm/brcmstb/pm/ |
| H A D | s2-mips.S | 27 sw s3, 16(sp) 38 * s3: I-Cache line size 47 lw s3, 12(t0) 52 addiu t1, s3, -1 63 addu t0, s3 70 addu t1, s3 71 addu t0, s3 141 addiu t1, s3, -1 152 addu t0, s3 159 addu t1, s3 [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/regulator/ |
| H A D | qcom,smd-rpm-regulator.yaml | 27 For pm8841, s1, s2, s3, s4, s5, s6, s7, s8 29 For pm8916, s1, s2, s3, s4, l1, l2, l3, l4, l5, l6, l7, l8, l9, l10, l11, 32 For pm8941, s1, s2, s3, s4, l1, l2, l3, l4, l5, l6, l7, l8, l9, l10, l11, 36 For pm8950 and pm8953, s1, s2, s3, s4, s5, s6, s7, l1, l2, l3, l4, l5, l6, 40 For pm8994, s1, s2, s3, s4, s5, s6, s7, s8, s9, s10, s11, s12, l1, l2, l3, 44 For pm8998, s1, s2, s3, s4, s5, s6, s7, s8, s9, s10, s11, s12, s13, l1, l2, 48 For pm660, s1, s2, s3, s4, s5, s6, l1, l2, l3, l5, l6, l7, l8, l9, l10, l22, 51 For pm660l s1, s2, s3, s5, l1, l2, l3, l4, l5, l6, l7, l8, l9, l10, bob 53 For pma8084, s1, s2, s3, s4, s5, s6, s7, s8, s9, s10, s11, s12, l1, l2, l3, 57 For pmi8994, s1, s2, s3, boost-bypass [all …]
|
| /OK3568_Linux_fs/kernel/net/lapb/ |
| H A D | lapb_in.c | 53 lapb_dbg(0, "(%p) S0 -> S3\n", lapb->dev); in lapb_state0_machine() 73 lapb_dbg(0, "(%p) S0 -> S3\n", lapb->dev); in lapb_state0_machine() 153 lapb_dbg(0, "(%p) S1 -> S3\n", lapb->dev); in lapb_state1_machine() 255 lapb_dbg(1, "(%p) S3 RX SABM(%d)\n", lapb->dev, frame->pf); in lapb_state3_machine() 257 lapb_dbg(1, "(%p) S3 TX DM(%d)\n", in lapb_state3_machine() 262 lapb_dbg(1, "(%p) S3 TX UA(%d)\n", in lapb_state3_machine() 278 lapb_dbg(1, "(%p) S3 RX SABME(%d)\n", lapb->dev, frame->pf); in lapb_state3_machine() 280 lapb_dbg(1, "(%p) S3 TX UA(%d)\n", in lapb_state3_machine() 293 lapb_dbg(1, "(%p) S3 TX DM(%d)\n", in lapb_state3_machine() 301 lapb_dbg(1, "(%p) S3 RX DISC(%d)\n", lapb->dev, frame->pf); in lapb_state3_machine() [all …]
|
| /OK3568_Linux_fs/kernel/net/dccp/ccids/lib/ |
| H A D | packet_history.c | 205 s3 = DCCP_SKB_CB(skb)->dccpd_seq; in __two_after_loss() local 207 if (likely(dccp_delta_seqno(s2, s3) > 0)) { /* S2 < S3 */ in __two_after_loss() 213 /* S3 < S2 */ in __two_after_loss() 215 if (dccp_delta_seqno(s1, s3) > 0) { /* S1 < S3 < S2 */ in __two_after_loss() 217 * Reorder history to insert S3 between S1 and S2 in __two_after_loss() 225 /* S0 < S3 < S1 */ in __two_after_loss() 227 if (dccp_loss_free(s0, s3, n3)) { in __two_after_loss() 230 if (dccp_loss_free(s3, s1, n1)) { in __two_after_loss() 231 /* hole between S0 and S1 filled by S3 */ in __two_after_loss() 235 /* entire hole filled by S0, S3, S1, S2 */ in __two_after_loss() [all …]
|
| /OK3568_Linux_fs/external/security/librkcrypto/test/c_mode/ |
| H A D | aes_core.c | 792 u32 s0, s1, s2, s3, t0, t1, t2, t3; in rk_aes_encrypt() local 807 s3 = GETU32(in + 12) ^ rk[3]; in rk_aes_encrypt() 810 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[ 4]; in rk_aes_encrypt() 811 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[ 5]; in rk_aes_encrypt() 812 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[ 6]; in rk_aes_encrypt() 813 t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[ 7]; in rk_aes_encrypt() 818 s3 = Te0[t3 >> 24] ^ Te1[(t0 >> 16) & 0xff] ^ Te2[(t1 >> 8) & 0xff] ^ Te3[t2 & 0xff] ^ rk[11]; in rk_aes_encrypt() 820 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[12]; in rk_aes_encrypt() 821 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[13]; in rk_aes_encrypt() 822 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[14]; in rk_aes_encrypt() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/mvl88w8977/mlan/esa/common/ |
| H A D | rijndael.c | 880 u32 s0, s1, s2, s3, t0, t1, t2, t3; in rijndaelEncrypt() local 892 s3 = GETU32(pt + 12) ^ rk[3]; in rijndaelEncrypt() 896 Te3[s3 & 0xff] ^ rk[4]; in rijndaelEncrypt() 897 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ in rijndaelEncrypt() 899 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ in rijndaelEncrypt() 901 t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ in rijndaelEncrypt() 910 s3 = Te0[t3 >> 24] ^ Te1[(t0 >> 16) & 0xff] ^ Te2[(t1 >> 8) & 0xff] ^ in rijndaelEncrypt() 914 Te3[s3 & 0xff] ^ rk[12]; in rijndaelEncrypt() 915 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ in rijndaelEncrypt() 917 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ in rijndaelEncrypt() [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/ta/crypt/ |
| H A D | aes_impl.c | 844 u32 s3 = 0; in rijndaelEncrypt() local 859 s3 = GETU32(plaintext + 12) ^ rk[3]; in rijndaelEncrypt() 863 Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[4]; in rijndaelEncrypt() 865 Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[5]; in rijndaelEncrypt() 866 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ in rijndaelEncrypt() 868 t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ in rijndaelEncrypt() 877 s3 = Te0[t3 >> 24] ^ Te1[(t0 >> 16) & 0xff] ^ in rijndaelEncrypt() 881 Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[12]; in rijndaelEncrypt() 883 Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[13]; in rijndaelEncrypt() 884 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ in rijndaelEncrypt() [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/fb/ |
| H A D | s3fb.rst | 2 s3fb - fbdev driver for S3 Trio/Virge chips 9 S3 Trio32 10 S3 Trio64 (and variants V+, UV+, V2/DX, V2/GX) 11 S3 Virge (and variants VX, DX, GX and GX2+) 12 S3 Plato/PX (completely untested) 13 S3 Aurora64V+ (completely untested) 40 hardware, i get best results from plain S3 Trio32 card - about 75 MHz). This 43 support is broken on S3 Trio64 V2/DX. 78 * text mode broken on S3 Trio64 V2/DX
|
| /OK3568_Linux_fs/u-boot/arch/x86/include/asm/ |
| H A D | acpi_s3.h | 32 /* Memory size reserved for S3 resume */ 57 char *ss_string[] = { "S0", "S1", "S2", "S3", "S4", "S5"}; in acpi_ss_string() 91 * Platform codes must supply this routine in order to support ACPI S3. 93 * @return ACPI_S0/S1/S2/S3/S4/S5. 101 * Platform codes must supply this routine in order to support ACPI S3. 107 * acpi_resume() - Do ACPI S3 resume 117 * acpi_s3_reserve() - Reserve memory for ACPI S3 resume 123 * when ACPI S3 resume is enabled.
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/progs/ |
| H A D | btf_dump_test_case_ordering.c | 11 struct s3; 17 struct s3 *s3; member 21 struct s3 { struct 28 struct s3 s3; member
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/linux/ |
| H A D | fb.h | 46 #define FB_AUX_TEXT_S3_MMIO 2 /* S3 MMIO fasttext */ 72 #define FB_ACCEL_S3_TRIO64 3 /* Cybervision64 (S3 Trio64) */ 74 #define FB_ACCEL_S3_VIRGE 5 /* Cybervision64/3D (S3 ViRGE) */ 135 #define FB_ACCEL_SAVAGE4 0x80 /* S3 Savage4 */ 136 #define FB_ACCEL_SAVAGE3D 0x81 /* S3 Savage3D */ 137 #define FB_ACCEL_SAVAGE3D_MV 0x82 /* S3 Savage3D-MV */ 138 #define FB_ACCEL_SAVAGE2000 0x83 /* S3 Savage2000 */ 139 #define FB_ACCEL_SAVAGE_MX_MV 0x84 /* S3 Savage/MX-MV */ 140 #define FB_ACCEL_SAVAGE_MX 0x85 /* S3 Savage/MX */ 141 #define FB_ACCEL_SAVAGE_IX_MV 0x86 /* S3 Savage/IX-MV */ [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/linux/ |
| H A D | fb.h | 46 #define FB_AUX_TEXT_S3_MMIO 2 /* S3 MMIO fasttext */ 72 #define FB_ACCEL_S3_TRIO64 3 /* Cybervision64 (S3 Trio64) */ 74 #define FB_ACCEL_S3_VIRGE 5 /* Cybervision64/3D (S3 ViRGE) */ 135 #define FB_ACCEL_SAVAGE4 0x80 /* S3 Savage4 */ 136 #define FB_ACCEL_SAVAGE3D 0x81 /* S3 Savage3D */ 137 #define FB_ACCEL_SAVAGE3D_MV 0x82 /* S3 Savage3D-MV */ 138 #define FB_ACCEL_SAVAGE2000 0x83 /* S3 Savage2000 */ 139 #define FB_ACCEL_SAVAGE_MX_MV 0x84 /* S3 Savage/MX-MV */ 140 #define FB_ACCEL_SAVAGE_MX 0x85 /* S3 Savage/MX */ 141 #define FB_ACCEL_SAVAGE_IX_MV 0x86 /* S3 Savage/IX-MV */ [all …]
|
| /OK3568_Linux_fs/kernel/include/uapi/linux/ |
| H A D | fb.h | 48 #define FB_AUX_TEXT_S3_MMIO 2 /* S3 MMIO fasttext */ 74 #define FB_ACCEL_S3_TRIO64 3 /* Cybervision64 (S3 Trio64) */ 76 #define FB_ACCEL_S3_VIRGE 5 /* Cybervision64/3D (S3 ViRGE) */ 137 #define FB_ACCEL_SAVAGE4 0x80 /* S3 Savage4 */ 138 #define FB_ACCEL_SAVAGE3D 0x81 /* S3 Savage3D */ 139 #define FB_ACCEL_SAVAGE3D_MV 0x82 /* S3 Savage3D-MV */ 140 #define FB_ACCEL_SAVAGE2000 0x83 /* S3 Savage2000 */ 141 #define FB_ACCEL_SAVAGE_MX_MV 0x84 /* S3 Savage/MX-MV */ 142 #define FB_ACCEL_SAVAGE_MX 0x85 /* S3 Savage/MX */ 143 #define FB_ACCEL_SAVAGE_IX_MV 0x86 /* S3 Savage/IX-MV */ [all …]
|
| /OK3568_Linux_fs/kernel/arch/mips/kernel/ |
| H A D | relocate_kernel.S | 34 and s3, s2, 0x1 35 beq s3, zero, 1f 41 and s3, s2, 0x2 42 beq s3, zero, 1f 48 and s3, s2, 0x4 49 beq s3, zero, 1f 53 and s3, s2, 0x8 54 beq s3, zero, process_entry
|
| /OK3568_Linux_fs/kernel/arch/ia64/lib/ |
| H A D | xor.S | 72 .rotr s1[6+1], s2[6+1], s3[6+1], d[2] 79 (p[0]) ld8.nta s3[0] = [r18], 8 81 (p[6]) xor d[0] = d[0], s3[6] 114 .rotr s1[6+1], s2[6+1], s3[6+1], s4[6+1], d[2] 120 (p[0]) ld8.nta s3[0] = [r18], 8 122 (p[6]) xor r20 = s3[6], s4[6] 159 .rotr s1[6+1], s2[6+1], s3[6+1], s4[6+1], s5[6+1], d[2] 165 (p[0]) ld8.nta s3[0] = [r18], 8 167 (p[6]) xor r21 = s3[6], s4[6]
|
| /OK3568_Linux_fs/external/libmali/include/CL/ |
| H A D | cl_platform.h | 544 __CL_ANON_STRUCT__ struct{ cl_char s0, s1, s2, s3; }; member 563 __CL_ANON_STRUCT__ struct{ cl_char s0, s1, s2, s3, s4, s5, s6, s7; }; member 582 …__CL_ANON_STRUCT__ struct{ cl_char s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, sA, sB, sC, sD, sE, sF… member 619 __CL_ANON_STRUCT__ struct{ cl_uchar s0, s1, s2, s3; }; member 638 __CL_ANON_STRUCT__ struct{ cl_uchar s0, s1, s2, s3, s4, s5, s6, s7; }; member 657 …__CL_ANON_STRUCT__ struct{ cl_uchar s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, sA, sB, sC, sD, sE, s… member 694 __CL_ANON_STRUCT__ struct{ cl_short s0, s1, s2, s3; }; member 713 __CL_ANON_STRUCT__ struct{ cl_short s0, s1, s2, s3, s4, s5, s6, s7; }; member 732 …__CL_ANON_STRUCT__ struct{ cl_short s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, sA, sB, sC, sD, sE, s… member 769 __CL_ANON_STRUCT__ struct{ cl_ushort s0, s1, s2, s3; }; member [all …]
|
| /OK3568_Linux_fs/kernel/arch/m68k/include/asm/ |
| H A D | uaccess.h | 193 #define ____constant_copy_from_user_asm(res, to, from, tmp, n1, n2, n3, s1, s2, s3)\ argument 200 " .ifnc \""#s3"\",\"\"\n" \ 201 "3: "MOVES"."#s3" (%2)+,%3\n" \ 202 " move."#s3" %3,(%1)+\n" \ 211 " .ifnc \""#s3"\",\"\"\n" \ 222 " .ifnc \""#s3"\",\"\"\n" \ 231 #define ___constant_copy_from_user_asm(res, to, from, tmp, n1, n2, n3, s1, s2, s3)\ argument 232 ____constant_copy_from_user_asm(res, to, from, tmp, n1, n2, n3, s1, s2, s3) 284 #define __constant_copy_to_user_asm(res, to, from, tmp, n, s1, s2, s3) \ argument 291 " .ifnc \""#s3"\",\"\"\n" \ [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/scsi/ |
| H A D | cxgb3i.rst | 4 Chelsio S3 iSCSI Driver for Linux 18 On transmitting, Chelsio S3 h/w computes and inserts the Header and 20 On receiving, Chelsio S3 h/w computes and verifies the Header and 25 S3 h/w can directly place the iSCSI Data-In or Data-Out PDU's 32 On transmitting, S3 h/w accepts the complete PDU (header + data) 38 On receiving, S3 h/w recovers the iSCSI PDU by reassembling TCP
|
| /OK3568_Linux_fs/kernel/scripts/coccinelle/null/ |
| H A D | deref_null.cocci | 57 statement S1,S2,S3,S4; 90 else S3 118 statement S1,S2,S3,S4; 150 else S3 178 statement S1,S2,S3,S4; 211 else S3 251 statement S1,S2,S3,S4; 283 else S3
|
| /OK3568_Linux_fs/kernel/arch/arm/crypto/ |
| H A D | poly1305-armv4.pl | 179 my ($s1,$s2,$s3)=($r1,$r2,$r3); 298 add $s3,$r3,$r3,lsr#2 306 umlal r2,r3,$h2,$s3 307 umlal r0,r1,$h1,$s3 319 mul r2,$s3,$h4 321 umlal r0,r1,$h3,$s3 495 my ($R0,$R1,$S1,$R2,$S2,$R3,$S3,$R4,$S4) = map("d$_",(0..9)); 540 vdup.32 $S3,r4 572 vmlal.u32 $D0,$R2,${S3}[1] 574 vmlal.u32 $D1,$R3,${S3}[1] [all …]
|
| /OK3568_Linux_fs/kernel/arch/x86/crypto/ |
| H A D | twofish-x86_64-asm_64.S | 23 #define s3 3072 /* S3 Array */ macro 76 xor s3(%r11,%rdi,4),%r9d;\ 78 xor s3(%r11,%rdi,4),%r8d;\ 114 xor s3(%r11,%rdi,4),%r9d;\ 116 xor s3(%r11,%rdi,4),%r8d;\ 143 mov s3(%r11,%rdi,4),%r8d;\ 156 xor s3(%r11,%rdi,4),%r9d;\ 179 mov s3(%r11,%rdi,4),%r8d;\ 196 xor s3(%r11,%rdi,4),%r9d;\
|
| H A D | twofish-i586-asm_32.S | 29 #define s3 3072 /* S3 Array */ macro 78 xor s3(%ebp,%edi,4),%esi;\ 80 xor s3(%ebp,%edi,4),d ## D;\ 116 xor s3(%ebp,%edi,4),%esi;\ 118 xor s3(%ebp,%edi,4),d ## D;\ 147 mov s3(%ebp,%edi,4),%esi;\ 160 xor s3(%ebp,%edi,4),c ## D;\ 185 mov s3(%ebp,%edi,4),%esi;\ 198 xor s3(%ebp,%edi,4),c ## D;\
|
| /OK3568_Linux_fs/kernel/kernel/trace/ |
| H A D | trace_probe_tmpl.h | 75 struct fetch_insn *s3 = NULL; in process_fetch_insn_bottom() local 98 s3 = code; in process_fetch_insn_bottom() 148 code = s3; in process_fetch_insn_bottom() 149 if (s3->op != FETCH_OP_ST_STRING && in process_fetch_insn_bottom() 150 s3->op != FETCH_OP_ST_USTRING) { in process_fetch_insn_bottom() 151 dest += s3->size; in process_fetch_insn_bottom() 152 val += s3->size; in process_fetch_insn_bottom()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/proto/transform/detail/preprocessed/ |
| H A D | fold_impl.hpp | 99 …pr, 1>::type , state1 , Data >()( proto::child_c< 1>(e) , s1 , d ); state3 s3 = typename when<_, F… in operator ()() local 100 return s3; in operator ()() 116 state3 s3 = in operator ()() local 118 …_of::child_c< Expr , 2 >::type , state3 , Data >()( proto::child_c<2>(e) , s3 , d ); state1 s1 = t… in operator ()() 137 …s3 = typename when<_, Fun>::template impl< typename result_of::child_c<Expr, 2>::type , state2 , D… in operator ()() local 156 …s3 = typename when<_, Fun>::template impl< typename result_of::child_c< Expr , 3 >::type , state4 … in operator ()() local 175 …s3 = typename when<_, Fun>::template impl< typename result_of::child_c<Expr, 2>::type , state2 , D… in operator ()() local 194 …s3 = typename when<_, Fun>::template impl< typename result_of::child_c< Expr , 3 >::type , state4 … in operator ()() local 213 …s3 = typename when<_, Fun>::template impl< typename result_of::child_c<Expr, 2>::type , state2 , D… in operator ()() local 232 …s3 = typename when<_, Fun>::template impl< typename result_of::child_c< Expr , 3 >::type , state4 … in operator ()() local [all …]
|