| /OK3568_Linux_fs/kernel/Documentation/x86/x86_64/ |
| H A D | mm.rst | 12 - Negative addresses such as "-23 TB" are absolute addresses in bytes, counted down 16 For example 0xffffe90000000000 == -23 TB, it's 23 TB lower than the top of the 20 from TB to GB and then MB/KB. 22 - "16M TB" might look weird at first sight, but it's an easier way to visualize size 32 …0000000000000000 | 0 | 00007fffffffffff | 128 TB | user-space virtual memory, different … 35 …0000800000000000 | +128 TB | ffff7fffffffffff | ~16M TB | ... huge, almost 64 bits wide hole of… 36 … | | | | virtual memory addresses up to the -128 TB 43 …ffff800000000000 | -128 TB | ffff87ffffffffff | 8 TB | ... guard hole, also reserved for hyp… 44 ffff880000000000 | -120 TB | ffff887fffffffff | 0.5 TB | LDT remap for PTI 45 …ffff888000000000 | -119.5 TB | ffffc87fffffffff | 64 TB | direct mapping of all physical memory… [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/translations/zh_CN/arm64/ |
| H A D | memory.txt | 36 分别都有 39-bit (512GB) 或 48-bit (256TB) 的虚拟地址空间。 37 对于页大小为 64KB的配置,仅使用 2 级转换表,有 42-bit (4TB) 的虚拟地址空间,但内存布局相同。 57 0000000000000000 0000ffffffffffff 256TB 用户空间 58 ffff000000000000 ffffffffffffffff 256TB 内核空间 65 0000000000000000 000003ffffffffff 4TB 用户空间 66 fffffc0000000000 ffffffffffffffff 4TB 内核空间 73 0000000000000000 0000ffffffffffff 256TB 用户空间 74 ffff000000000000 ffffffffffffffff 256TB 内核空间
|
| /OK3568_Linux_fs/kernel/drivers/ide/ |
| H A D | pdc202xx_old.c | 32 u8 TA = 0, TB = 0, TC = 0; in pdc202xx_set_mode() local 40 case XFER_UDMA_4: TB = 0x20; TC = 0x01; break; in pdc202xx_set_mode() 41 case XFER_UDMA_2: TB = 0x20; TC = 0x01; break; in pdc202xx_set_mode() 43 case XFER_UDMA_1: TB = 0x40; TC = 0x02; break; in pdc202xx_set_mode() 45 case XFER_MW_DMA_2: TB = 0x60; TC = 0x03; break; in pdc202xx_set_mode() 46 case XFER_MW_DMA_1: TB = 0x60; TC = 0x04; break; in pdc202xx_set_mode() 47 case XFER_MW_DMA_0: TB = 0xE0; TC = 0x0F; break; in pdc202xx_set_mode() 48 case XFER_PIO_4: TA = 0x01; TB = 0x04; break; in pdc202xx_set_mode() 49 case XFER_PIO_3: TA = 0x02; TB = 0x06; break; in pdc202xx_set_mode() 50 case XFER_PIO_2: TA = 0x03; TB = 0x08; break; in pdc202xx_set_mode() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/tao_tuple/28626e99/include/tao/seq/ |
| H A D | concatenate.hpp | 18 template< typename TA, TA... As, typename TB, TB... Bs > 19 struct concatenate< integer_sequence< TA, As... >, integer_sequence< TB, Bs... > > 21 using type = integer_sequence< typename std::common_type< TA, TB >::type, As..., Bs... >;
|
| H A D | zip.hpp | 18 template< template< typename U, U, U > class OP, typename TA, TA... As, typename TB, TB... Bs > 19 struct zip< OP, integer_sequence< TA, As... >, integer_sequence< TB, Bs... > > 21 using CT = typename std::common_type< TA, TB >::type;
|
| /OK3568_Linux_fs/kernel/arch/x86/crypto/ |
| H A D | sha1_avx2_x86_64_asm.S | 105 .set TB, REG_TB define 327 .set B, TB 328 .set TB, A define 357 mov B, TB 360 andn D, TB, T1 361 and C, TB 362 xor T1, TB 389 rorx $(32-30),A, TB /* b>>>2 for next round */ 410 rorx $(32-30), A, TB /* b>>>2 for next round */ 435 rorx $(32-30), A, TB /* b>>>2 for next round */ [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/arm64/ |
| H A D | memory.rst | 13 (256TB) virtual addresses, respectively, for both user and kernel. With 14 64KB pages, only 2 levels of translation tables, allowing 42-bit (4TB) 33 0000000000000000 0000ffffffffffff 256TB user 34 ffff000000000000 ffff7fffffffffff 128TB kernel logical memory map 35 ffff800000000000 ffff9fffffffffff 32TB kasan shadow region 38 ffffa00010000000 fffffdffbffeffff ~93TB vmalloc 44 fffffdffffe00000 ffffffffffdfffff 2TB vmemmap 54 fff8000000000000 fffd9fffffffffff 1440TB [gap] 55 fffda00000000000 ffff9fffffffffff 512TB kasan shadow region 58 ffffa00010000000 fffff81ffffeffff ~88TB vmalloc [all …]
|
| /OK3568_Linux_fs/external/security/librkcrypto/test/c_mode/ |
| H A D | bignum.c | 968 mbedtls_mpi TB; in mbedtls_mpi_sub_abs() local 975 mbedtls_mpi_init( &TB ); in mbedtls_mpi_sub_abs() 979 MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &TB, B ) ); in mbedtls_mpi_sub_abs() 980 B = &TB; in mbedtls_mpi_sub_abs() 1001 mbedtls_mpi_free( &TB ); in mbedtls_mpi_sub_abs() 1179 mbedtls_mpi TA, TB; in mbedtls_mpi_mul_mpi() local 1181 mbedtls_mpi_init( &TA ); mbedtls_mpi_init( &TB ); in mbedtls_mpi_mul_mpi() 1184 if( X == B ) { MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &TB, B ) ); B = &TB; } in mbedtls_mpi_mul_mpi() 1204 mbedtls_mpi_free( &TB ); mbedtls_mpi_free( &TA ); in mbedtls_mpi_mul_mpi() 1821 mbedtls_mpi TG, TA, TB; in mbedtls_mpi_gcd() local [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/admin-guide/device-mapper/ |
| H A D | zero.rst | 21 desired size of the sparse device. For this example, we'll assume a 10TB 24 TEN_TERABYTES=`expr 10 \* 1024 \* 1024 \* 1024 \* 2` # 10 TB in sectors 35 This will create a 10TB sparse device called /dev/mapper/sparse1 that has
|
| /OK3568_Linux_fs/kernel/drivers/net/fddi/skfp/ |
| H A D | pcmplc.c | 249 (np == PB) ? TB : TM ; in pcm_init() 266 mib->fddiPORTMy_Type = (np == PB) ? TB : TA ; in pcm_init() 334 case TB : in pcm_init() 1274 mib->fddiPORTNeighborType = TB ; in pc_rcode_actions() 1411 if (mib->fddiPORTMy_Type == TB || mib->fddiPORTMy_Type == TM) in pc_tcode_actions() 1430 ((policy & POLICY_AB) && ne == TB) || in pc_tcode_actions() 1435 case TB : in pc_tcode_actions() 1438 ((policy & POLICY_BB) && ne == TB) || in pc_tcode_actions() 1446 ((policy & POLICY_SB) && ne == TB) || in pc_tcode_actions() 1454 ((policy & POLICY_MB) && ne == TB) || in pc_tcode_actions() [all …]
|
| H A D | cfm.c | 68 TNONE,TB,TB,TS, 69 TA,TB,TS,TB 122 case TB: in selection_criteria()
|
| /OK3568_Linux_fs/kernel/drivers/net/fddi/skfp/h/ |
| H A D | smtstate.h | 44 #define TB 1 macro
|
| /OK3568_Linux_fs/kernel/Documentation/userspace-api/media/v4l/ |
| H A D | pipeline.dot | 4 rankdir=TB
|
| /OK3568_Linux_fs/kernel/tools/perf/Documentation/ |
| H A D | perf-bench.txt | 161 Available units are B, KB, MB, GB and TB (case insensitive). 185 Available units are B, KB, MB, GB and TB (case insensitive).
|
| /OK3568_Linux_fs/kernel/Documentation/admin-guide/media/ |
| H A D | rkisp1.dot | 2 rankdir=TB
|
| H A D | vimc.dot | 4 rankdir=TB
|
| H A D | qcom_camss_graph.dot | 4 rankdir=TB
|
| H A D | imx6q-sabreauto.dot | 2 rankdir=TB
|
| H A D | imx6q-sabresd.dot | 2 rankdir=TB
|
| H A D | qcom_camss_8x96_graph.dot | 4 rankdir=TB
|
| /OK3568_Linux_fs/u-boot/disk/ |
| H A D | Kconfig | 19 bootloader. Note 2TB partition limit; see 82 common when EFI is the bootloader. Note 2TB partition limit;
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/unfs3/ |
| H A D | unfs3_git.bb | 44 # if you have 2 TB of files to walk in your file system
|
| /OK3568_Linux_fs/kernel/fs/unicode/ |
| H A D | utf8-norm.c | 266 #define TB (0x11A7) macro 303 h += utf8encode3((char *)h, ti + TB); in utf8hangul()
|
| /OK3568_Linux_fs/kernel/arch/powerpc/kernel/ |
| H A D | swsusp_asm64.S | 92 SAVE_SPECIAL(TB)
|
| /OK3568_Linux_fs/kernel/arch/arm64/boot/dts/rockchip/ |
| H A D | rk3588-toybrick.dtsi | 198 *in TB-RK3588 gpio0 RK_PB6 for MIPI dsi tp 220 *in TB-RK3588 gpio1 RK_PA6 for edp tp
|