Searched refs:length (Results 1 - 25 of 403) sorted by relevance

1234567891011>>

/arch/x86/include/asm/
H A Dbios_ebda.h21 * Return the sanitized length of the EBDA in bytes, if it exists.
26 unsigned int length; local
32 /* EBDA length is byte 0 of the EBDA (stored in KiB) */
33 length = *(unsigned char *)phys_to_virt(address);
34 length <<= 10;
36 /* Trim the length if it extends beyond 640KiB */
37 length = min_t(unsigned int, (640 * 1024) - address, length);
38 return length;
/arch/ia64/include/asm/
H A Dacpi-ext.h18 extern acpi_status hp_acpi_csr_space (acpi_handle, u64 *base, u64 *length);
/arch/arm/mach-gemini/
H A Dmm.c24 .length = SZ_512K,
29 .length = SZ_512K,
34 .length = SZ_512K,
39 .length = SZ_512K,
44 .length = SZ_512K,
49 .length = SZ_512K,
54 .length = SZ_512K,
59 .length = SZ_512K,
64 .length = SZ_512K,
69 .length
[all...]
/arch/parisc/math-emu/
H A Dfpbits.h53 #define Bitfield_extract(start, length, object) \
54 ((object) >> (HOSTWDSZ - (start) - (length)) & \
55 ((unsigned)-1 >> (HOSTWDSZ - (length))))
57 #define Bitfield_signed_extract(start, length, object) \
58 ((int)((object) << start) >> (HOSTWDSZ - (length)))
/arch/arm/mach-tegra/
H A Dio.c37 .length = IO_PPSB_SIZE,
43 .length = IO_APB_SIZE,
49 .length = IO_CPU_SIZE,
55 .length = IO_IRAM_SIZE,
/arch/blackfin/include/asm/
H A Dmmu.h14 size_t length; member in struct:sram_list_struct
/arch/ia64/kernel/
H A Dacpi-ext.c32 static acpi_status hp_ccsr_locate(acpi_handle obj, u64 *base, u64 *length) argument
51 memcpy(length, vendor->byte_data + 8, sizeof(*length));
60 u64 length; member in struct:csr_space
75 space->length = addr.address_length;
81 static acpi_status hp_crs_locate(acpi_handle obj, u64 *base, u64 *length) argument
86 if (!space.length)
90 *length = space.length;
/arch/arm/mach-exynos/
H A Dexynos.c41 .length = SZ_64K,
46 .length = SZ_16K,
51 .length = SZ_4K,
56 .length = SZ_4K,
61 .length = SZ_4K,
66 .length = SZ_4K,
71 .length = SZ_64K,
76 .length = SZ_64K,
81 .length = SZ_128K,
86 .length
[all...]
/arch/m68k/atari/
H A Datasound.c85 /* Set length of envelope (max 8 sec). */
86 int length = (ticks * PSG_ENV_FREQ_10) / HZ / 10; local
88 if (length > 0xffff) length = 0xffff;
90 sound_ym.wd_data = length & 0xff;
92 sound_ym.wd_data = length >> 8;
/arch/mips/include/asm/fw/cfe/
H A Dcfe_api.h101 int cfe_enummem(int idx, int flags, uint64_t * start, uint64_t * length,
112 int length, int *retlen, uint64_t offset);
114 int cfe_read(int handle, unsigned char *buffer, int length);
116 int length);
118 int cfe_write(int handle, const char *buffer, int length);
120 int length);
/arch/alpha/include/asm/
H A Dconsole.h7 extern long callback_puts(long unit, const char *s, long length);
11 extern long callback_open(const char *device, long length);
/arch/m68k/mac/
H A Dmacboing.c163 void mac_mksound( unsigned int freq, unsigned int length )
180 mac_special_bell( freq, length, 128 );
184 if ( freq < 20 || freq > 20000 || length == 0 )
209 mac_sound_timer.expires = jiffies + length;
226 static void mac_quadra_start_bell( unsigned int freq, unsigned int length, unsigned int volume ) argument
233 mac_bell_duration += length;
237 mac_bell_duration = length;
307 static void mac_av_start_bell( unsigned int freq, unsigned int length, unsigned int volume ) argument
/arch/arm/mach-at91/
H A Dsama5d4.c32 .length = SZ_512,
38 .length = SZ_512,
44 .length = SZ_256,
50 .length = SZ_2K,
/arch/arm/plat-iop/
H A Dsetup.c26 .length = IOP3XX_PERIPHERAL_SIZE,
/arch/s390/include/asm/
H A Dextmem.h23 int segment_load (char *name, int segtype, unsigned long *addr, unsigned long *length);
/arch/tile/mm/
H A Dmigrate.h39 * - Do a global TLB flush for (va,length) and the specified ASIDs.
50 size_t length, pte_t *stack_ptep,
/arch/x86/kernel/
H A Dprobe_roms.c188 static int __init romchecksum(const unsigned char *rom, unsigned long length) argument
192 for (sum = 0; length && probe_kernel_address(rom++, c) == 0; length--)
194 return !length && !sum;
200 unsigned long start, length, upper; local
216 /* 0 < length <= 0x7f * 512, historically */
217 length = c * 512;
219 /* if checksum okay, trust length byte */
220 if (length && romchecksum(rom, length))
[all...]
/arch/x86/purgatory/
H A Dsha256.h19 unsigned int length);
/arch/arm/mach-omap1/
H A Dio.c35 .length = OMAP1_IO_SIZE,
45 .length = OMAP7XX_DSP_SIZE,
50 .length = OMAP7XX_DSPREG_SIZE,
61 .length = OMAP1510_DSP_SIZE,
66 .length = OMAP1510_DSPREG_SIZE,
77 .length = OMAP16XX_DSP_SIZE,
82 .length = OMAP16XX_DSPREG_SIZE,
/arch/powerpc/platforms/pseries/
H A Dreconfig.c142 * @length: return value; set to length of value
149 static char * parse_next_property(char *buf, char *end, char **name, int *length, argument
170 /* now we're on the length */
171 *length = -1;
172 *length = simple_strtoul(tmp, &tmp, 10);
173 if (*length == -1) {
186 tmp += *length;
203 static struct property *new_property(const char *name, const int length, argument
213 if (!(new->value = kmalloc(length
235 int length, rv = 0; local
313 int length; local
359 int length; local
[all...]
/arch/arm/mach-omap2/
H A Dio.c74 .length = L3_24XX_SIZE,
80 .length = L4_24XX_SIZE,
90 .length = DSP_MEM_2420_SIZE,
96 .length = DSP_IPI_2420_SIZE,
102 .length = DSP_MMU_2420_SIZE,
114 .length = L4_WK_243X_SIZE,
120 .length = OMAP243X_GPMC_SIZE,
126 .length = OMAP243X_SDRC_SIZE,
132 .length = OMAP243X_SMS_SIZE,
144 .length
[all...]
/arch/arm/mach-mmp/
H A Dcommon.c32 .length = APB_PHYS_SIZE,
37 .length = AXI_PHYS_SIZE,
/arch/arm/mach-ux500/
H A Dsetup.h32 .length = sz, \
39 .length = sz, \
/arch/m68k/include/asm/
H A Dquicc_simple.h22 typedef void *(alloc_routine)(int length);
24 typedef void (store_rx_buffer_routine)(int scc_num, int channel_num, void *buff, int length);
/arch/powerpc/include/asm/
H A Dnvram.h18 extern int nvram_write_error_log(char * buff, int length,
20 extern int nvram_read_error_log(char * buff, int length,

Completed in 765 milliseconds

1234567891011>>