Home
last modified time | relevance | path

Searched full:word (Results 1 – 25 of 4071) sorted by relevance

12345678910>>...163

/OK3568_Linux_fs/kernel/arch/hexagon/kernel/
H A Dvm_init_segtable.S47 .word X,X,X,X
48 .word X,X,X,X
49 .word X,X,X,X
50 .word X,X,X,X
51 .word X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X
52 .word X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X
53 .word X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X
54 .word X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X
55 .word X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X
56 .word X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X
[all …]
/OK3568_Linux_fs/u-boot/arch/arm/mach-at91/arm920t/
H A Dlowlevel_init.S26 .word CONFIG_SYS_TEXT_BASE-PHYS_FLASH_1
28 .word CONFIG_SYS_TEXT_BASE
93 .word AT91_ASM_MC_EBI_CFG
94 .word CONFIG_SYS_EBI_CFGR_VAL
95 .word AT91_ASM_MC_SMC_CSR0
96 .word CONFIG_SYS_SMC_CSR0_VAL
97 .word AT91_ASM_PMC_PLLAR
98 .word CONFIG_SYS_PLLAR_VAL
99 .word AT91_ASM_PMC_PLLBR
100 .word CONFIG_SYS_PLLBR_VAL
[all …]
/OK3568_Linux_fs/kernel/arch/arc/include/asm/
H A Ddisasm.h31 #define IS_BIT(word, n) ((word) & (1<<n)) argument
32 #define BITS(word, s, e) (((word) >> (s)) & (~((-2) << ((e) - (s))))) argument
34 #define MAJOR_OPCODE(word) (BITS((word), 27, 31)) argument
35 #define MINOR_OPCODE(word) (BITS((word), 16, 21)) argument
36 #define FIELD_A(word) (BITS((word), 0, 5)) argument
37 #define FIELD_B(word) ((BITS((word), 12, 14)<<3) | \ argument
38 (BITS((word), 24, 26)))
39 #define FIELD_C(word) (BITS((word), 6, 11)) argument
40 #define FIELD_u6(word) FIELDC(word) argument
41 #define FIELD_s12(word) sign_extend(((BITS((word), 0, 5) << 6) | \ argument
[all …]
/OK3568_Linux_fs/u-boot/arch/arm/mach-omap2/omap3/
H A Dlowlevel_init.S35 .word 0xe1600071 @ SMC #1 to call PPA service - hand assembled
133 _go_to_speed: .word go_to_speed
138 .word (GPMC_CONFIG_CS0_BASE + GPMC_CONFIG1)
140 .word (GPMC_CONFIG_CS0_BASE + GPMC_CONFIG3)
142 .word STNOR_GPMC_CONFIG3
144 .word (GPMC_CONFIG_CS0_BASE + GPMC_CONFIG4)
146 .word STNOR_GPMC_CONFIG4
148 .word STNOR_GPMC_CONFIG5
150 .word (GPMC_CONFIG_CS0_BASE + GPMC_CONFIG5)
152 .word CM_CLKEN_PLL
[all …]
/OK3568_Linux_fs/u-boot/arch/arm/mach-at91/arm926ejs/
H A Dlowlevel_init.S161 .word AT91_ASM_WDT_MR
162 .word CONFIG_SYS_WDTC_WDMR_VAL
165 .word AT91_ASM_PIOD_PDR
166 .word CONFIG_SYS_PIOD_PDR_VAL1
167 .word AT91_ASM_PIOD_PUDR
168 .word CONFIG_SYS_PIOD_PPUDR_VAL
169 .word AT91_ASM_PIOD_ASR
170 .word CONFIG_SYS_PIOD_PPUDR_VAL
173 .word AT91_ASM_PIOC_PDR
174 .word CONFIG_SYS_PIOC_PDR_VAL1
[all …]
/OK3568_Linux_fs/kernel/arch/alpha/lib/
H A Dcsum_partial_copy.c90 unsigned long word; in csum_partial_cfu_aligned() local
91 if (__get_word(ldq, word, src)) in csum_partial_cfu_aligned()
95 checksum += word; in csum_partial_cfu_aligned()
97 carry = checksum < word; in csum_partial_cfu_aligned()
98 *dst = word; in csum_partial_cfu_aligned()
104 unsigned long word, tmp; in csum_partial_cfu_aligned() local
105 if (__get_word(ldq, word, src)) in csum_partial_cfu_aligned()
108 mskql(word, len, word); in csum_partial_cfu_aligned()
109 checksum += word; in csum_partial_cfu_aligned()
111 carry = checksum < word; in csum_partial_cfu_aligned()
[all …]
H A Dstxncpy.S22 * t0 = last word written
26 * a0 = unaligned address of the last *word* written
51 t0 == the first destination word for masking back in
52 t1 == the first source word. */
54 /* Create the 1st output word and detect 0's in the 1st input word. */
56 mskqh t2, a1, t2 # e0 : detection in the src word
59 mskql t0, a1, t0 # e0 : assemble the first output word
66 t0 == a source word not containing a null. */
78 /* Take care of the final (partial) word store. At this point
82 t0 == the source word containing the null
[all …]
H A Dev6-stxncpy.S22 * t0 = last word written
26 * a0 = unaligned address of the last *word* written
62 t0 == the first destination word for masking back in
63 t1 == the first source word. */
65 /* Create the 1st output word and detect 0's in the 1st input word. */
67 mskqh t2, a1, t2 # U : detection in the src word (stall)
71 mskql t0, a1, t0 # U : assemble the first output word
82 t0 == a source word not containing a null. */
105 /* Take care of the final (partial) word store. At this point
109 t0 == the source word containing the null
[all …]
H A Dstxcpy.S19 * a0 = unaligned address of the last *word* written
43 t0 == the first destination word for masking back in
44 t1 == the first source word. */
46 /* Create the 1st output word and detect 0's in the 1st input word. */
48 mskqh t2, a1, t2 # e0 : detection in the src word
51 mskql t0, a1, t0 # e0 : assemble the first output word
57 t0 == the first destination word for masking back in
58 t1 == a source word not containing a null. */
68 /* Take care of the final (partial) word store.
70 t1 == the source word containing the null
[all …]
/OK3568_Linux_fs/kernel/arch/sh/drivers/pci/
H A Dpci-sh7751.c22 unsigned long word; in __area_sdram_check() local
24 word = __raw_readl(SH7751_BCR1); in __area_sdram_check()
26 if (((word >> area) & 1) == 0) { in __area_sdram_check()
28 area, word); in __area_sdram_check()
31 pci_write_reg(chan, word, SH4_PCIBCR1); in __area_sdram_check()
33 word = __raw_readw(SH7751_BCR2); in __area_sdram_check()
35 if (((word >> (area << 1)) & 0x3) != 0x3) { in __area_sdram_check()
37 area, word); in __area_sdram_check()
40 pci_write_reg(chan, word, SH4_PCIBCR2); in __area_sdram_check()
79 u32 word, reg; in sh7751_pci_init() local
[all …]
/OK3568_Linux_fs/kernel/arch/sparc/crypto/
H A Dopcodes.h19 .word (F3F(2,0x36,0x147)|RS1(a)|RS2(b)|RD(c));
22 .word 0x81b02800;
24 .word 0x81b02820;
26 .word 0x81b02840;
28 .word 0x81b02860;
31 .word (F3F(2, 0x19, 0)|RS1(a)|RS2(b)|RS3(c)|RD(d));
33 .word (F3F(2, 0x19, 1)|RS1(a)|RS2(b)|RS3(c)|RD(d));
35 .word (F3F(2, 0x19, 2)|RS1(a)|RS2(b)|RS3(c)|RD(d));
37 .word (F3F(2, 0x19, 3)|RS1(a)|RS2(b)|RS3(c)|RD(d));
39 .word (F3F(2, 0x19, 4)|RS1(a)|RS2(b)|RS3(c)|RD(d));
[all …]
/OK3568_Linux_fs/kernel/include/linux/
H A Dwait_bit.h21 #define __WAIT_BIT_KEY_INITIALIZER(word, bit) \ argument
22 { .flags = word, .bit_nr = bit, }
26 void __wake_up_bit(struct wait_queue_head *wq_head, void *word, int bit);
29 void wake_up_bit(void *word, int bit);
30 int out_of_line_wait_on_bit(void *word, int, wait_bit_action_f *action, unsigned int mode);
31 int out_of_line_wait_on_bit_timeout(void *word, int, wait_bit_action_f *action, unsigned int mode, …
32 int out_of_line_wait_on_bit_lock(void *word, int, wait_bit_action_f *action, unsigned int mode);
33 struct wait_queue_head *bit_waitqueue(void *word, int bit);
38 #define DEFINE_WAIT_BIT(name, word, bit) \ argument
40 .key = __WAIT_BIT_KEY_INITIALIZER(word, bit), \
[all …]
H A Dbitops.h80 * @word: value to rotate
83 static inline __u64 rol64(__u64 word, unsigned int shift) in rol64() argument
85 return (word << (shift & 63)) | (word >> ((-shift) & 63)); in rol64()
90 * @word: value to rotate
93 static inline __u64 ror64(__u64 word, unsigned int shift) in ror64() argument
95 return (word >> (shift & 63)) | (word << ((-shift) & 63)); in ror64()
100 * @word: value to rotate
103 static inline __u32 rol32(__u32 word, unsigned int shift) in rol32() argument
105 return (word << (shift & 31)) | (word >> ((-shift) & 31)); in rol32()
110 * @word: value to rotate
[all …]
/OK3568_Linux_fs/u-boot/arch/arm/cpu/armv7/
H A Dpsci.S107 .word ARM_PSCI_FN_CPU_SUSPEND
108 .word psci_cpu_suspend
109 .word ARM_PSCI_FN_CPU_OFF
110 .word psci_cpu_off
111 .word ARM_PSCI_FN_CPU_ON
112 .word psci_cpu_on
113 .word ARM_PSCI_FN_MIGRATE
114 .word psci_migrate
115 .word ARM_PSCI_0_2_FN_PSCI_VERSION
116 .word psci_version
[all …]
/OK3568_Linux_fs/kernel/drivers/net/ethernet/freescale/dpaa2/
H A Ddpni-cmd.h115 /* cmd word 0 */
119 /* cmd word 0..4 */
121 /* cmd word 4..6 */
134 /* response word 0 */
137 /* response word 1 */
139 /* response word 2 */
188 /* response word 0 */
194 /* response word 1 */
201 /* response word 2 */
235 /* response word 0 */
[all …]
/OK3568_Linux_fs/u-boot/board/renesas/rsk7203/
H A Dlowlevel_init.S111 PCCRL4_D0: .word 0x0000
114 PECRL4_D0: .word 0x0000
117 PECRL3_D: .word 0x0000
120 PEIORL_D0: .word 0x1C00
121 PEIORL_D1: .word 0x1C02
123 PCIORL_D: .word 0x4000
126 PFCRH2_D: .word 0x0000
129 PFCRH3_D: .word 0x0000
132 PFCRH1_D: .word 0x0000
135 PFIORH_D: .word 0x0729
[all …]
/OK3568_Linux_fs/u-boot/board/renesas/rsk7264/
H A Dlowlevel_init.S117 FRQCR_D: .word 0x1003
122 STBCR4_D: .word 0x0000
133 PJCR1_D1: .word 0x0000
134 PJCR1_D2: .word 0x0022
136 PJCR2_D: .word 0x0000
139 PJIOR0_D1: .word 0x0FC0
140 PJIOR0_D2: .word 0x0FE0
142 PJDR0_D: .word 0x0FBF
147 PGCR2_D: .word 0x0000
150 PGIOR0_D: .word 0x03F0
[all …]
/OK3568_Linux_fs/kernel/fs/xfs/libxfs/
H A Dxfs_rtbitmap.c101 xfs_rtword_t *b; /* current word in buffer */ in xfs_rtfind_back()
102 int bit; /* bit number in the word */ in xfs_rtfind_back()
105 xfs_rtword_t *bufp; /* starting word in buffer */ in xfs_rtfind_back()
107 xfs_rtblock_t firstbit; /* first useful bit in the word */ in xfs_rtfind_back()
113 int word; /* word number in the buffer */ in xfs_rtfind_back() local
125 * Get the first word's index & point to it. in xfs_rtfind_back()
127 word = XFS_BITTOWORD(mp, start); in xfs_rtfind_back()
128 b = &bufp[word]; in xfs_rtfind_back()
137 * If the starting position is not word-aligned, deal with the in xfs_rtfind_back()
138 * partial word. in xfs_rtfind_back()
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/panfrost/
H A Dpanfrost_regs.h86 #define GPU_SHADER_PRESENT_LO 0x100 /* (RO) Shader core present bitmap, low word */
87 #define GPU_SHADER_PRESENT_HI 0x104 /* (RO) Shader core present bitmap, high word */
88 #define GPU_TILER_PRESENT_LO 0x110 /* (RO) Tiler core present bitmap, low word */
89 #define GPU_TILER_PRESENT_HI 0x114 /* (RO) Tiler core present bitmap, high word */
91 #define GPU_L2_PRESENT_LO 0x120 /* (RO) Level 2 cache present bitmap, low word */
92 #define GPU_L2_PRESENT_HI 0x124 /* (RO) Level 2 cache present bitmap, high word */
98 #define GPU_STACK_PRESENT_LO 0xE00 /* (RO) Core stack present bitmap, low word */
99 #define GPU_STACK_PRESENT_HI 0xE04 /* (RO) Core stack present bitmap, high word */
101 #define SHADER_READY_LO 0x140 /* (RO) Shader core ready bitmap, low word */
102 #define SHADER_READY_HI 0x144 /* (RO) Shader core ready bitmap, high word */
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/amd/amdgpu/
H A Dvega10_sdma_pkt_open.h85 /*define for HEADER word*/
116 /*define for COUNT word*/
123 /*define for PARAMETER word*/
136 /*define for SRC_ADDR_LO word*/
143 /*define for SRC_ADDR_HI word*/
150 /*define for DST_ADDR_LO word*/
157 /*define for DST_ADDR_HI word*/
169 /*define for HEADER word*/
194 /*define for COUNT word*/
201 /*define for PARAMETER word*/
[all …]
H A Dtonga_sdma_pkt_open.h69 /*define for HEADER word*/
88 /*define for COUNT word*/
95 /*define for PARAMETER word*/
120 /*define for SRC_ADDR_LO word*/
127 /*define for SRC_ADDR_HI word*/
134 /*define for DST_ADDR_LO word*/
141 /*define for DST_ADDR_HI word*/
153 /*define for HEADER word*/
172 /*define for COUNT word*/
179 /*define for PARAMETER word*/
[all …]
/OK3568_Linux_fs/u-boot/drivers/rkflash/
H A Drk_sftl_arm_v7.S59 .word .LANCHOR0
138 .word .LANCHOR1
139 .word .LANCHOR3
140 .word .LANCHOR2
141 .word .LANCHOR5
142 .word .LANCHOR4
143 .word .LANCHOR7
144 .word .LANCHOR6
327 .word .LANCHOR8
328 .word .LANCHOR9
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/radeon/
H A Dradeon_acpi.h71 * WORD - structure size in bytes (includes size field)
72 * WORD - version
102 * WORD - structure size in bytes (includes size field)
108 * WORD - structure size in bytes (includes size field)
126 * WORD - structure size in bytes (includes size field)
162 * WORD - structure size in bytes (includes size field)
163 * WORD - selected displays
164 * WORD - connected displays
166 * WORD - structure size in bytes (includes size field)
167 * WORD - selected displays
[all …]
/OK3568_Linux_fs/u-boot/arch/arm/mach-davinci/
H A Dlowlevel_init.S541 .word 0x01c40000 /* Device Configuration Registers */
543 .word 0x01c40004 /* Device Configuration Registers */
546 .word 0x00000c1f
549 .word 0x01e00004
551 .word 0
553 .word 0x01e00014
555 .word 0x3ffffffd
557 .word 0x01e00018
559 .word 0x3ffffffd
561 .word 0x01e0001c
[all …]
/OK3568_Linux_fs/kernel/arch/sparc/kernel/
H A Duna_asm_32.S62 .word 4b, retl_efault
63 .word 5b, retl_efault
64 .word 6b, retl_efault
65 .word 7b, retl_efault
66 .word 8b, retl_efault
67 .word 9b, retl_efault
68 .word 10b, retl_efault
69 .word 11b, retl_efault
70 .word 12b, retl_efault
71 .word 13b, retl_efault
[all …]

12345678910>>...163