Searched refs:zone (Results 1 - 25 of 30) sorted by relevance

12

/asus-wl-520gu-7.0.1.45/src/linux/linux/mm/
H A Dpage_alloc.c35 * struct zone corresponding to a given zone number (ZONE_DMA,
52 #define BAD_RANGE(zone, page) \
54 (((page) - mem_map) >= ((zone)->zone_start_mapnr+(zone)->size)) \
55 || (((page) - mem_map) < (zone)->zone_start_mapnr) \
56 || ((zone) != page_zone(page)) \
90 zone_t *zone; local
118 zone = page_zone(page);
121 base = zone
180 expand(zone_t *zone, struct page *page, unsigned long index, int low, int high, free_area_t * area) argument
202 rmqueue(zone_t *zone, unsigned int order) argument
333 zone_t **zone, * classzone; local
472 zone_t *zone; local
491 zone_t *zone; local
535 zone_t *zone; local
556 zone_t *zone = pgdat->node_zones + type; local
598 zone_t *zone; local
732 zone_t *zone = pgdat->node_zones + j; local
[all...]
H A Dvmscan.c644 zone_t * zone; local
647 zone = pgdat->node_zones + i;
650 if (!zone->need_balance)
652 if (!try_to_free_pages_zone(zone, GFP_KSWAPD)) {
653 zone->need_balance = 0;
658 if (check_classzone_need_balance(zone))
661 zone->need_balance = 0;
682 zone_t * zone; local
686 zone = pgdat->node_zones + i;
687 if (!zone
[all...]
/asus-wl-520gu-7.0.1.45/src/router/samba/source/utils/
H A Dnet_time.c27 static time_t cli_servertime(const char *host, struct in_addr *ip, int *zone) argument
58 if (zone) *zone = cli->serverzone;
66 static time_t nettime(int *zone) argument
68 return cli_servertime(opt_host, opt_have_ip? &opt_dest_ip : NULL, zone);
91 "net time zone\n\tdisplays the timezone in hours from GMT on the remote computer\n\n"\
130 int zone = 0; local
135 t = nettime(&zone);
139 zsign = (zone > 0) ? '-' : '+';
140 if (zone <
[all...]
H A Dlog2pcaphex.c52 int32 zone; member in struct:tcpdump_file_header
100 h.zone = 0;
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/linux/
H A Dmmzone.h169 static inline zone_t *next_zone(zone_t *zone) argument
171 pg_data_t *pgdat = zone->zone_pgdat;
173 if (zone - pgdat->node_zones < MAX_NR_ZONES - 1)
174 zone++;
178 zone = pgdat->node_zones;
180 zone = NULL;
182 return zone;
187 * @zone - zone_t * variable
189 * The user only needs to declare the zone variable, for_each_zone
200 #define for_each_zone(zone) \
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/linux/
H A Dmmzone.h169 static inline zone_t *next_zone(zone_t *zone) argument
171 pg_data_t *pgdat = zone->zone_pgdat;
173 if (zone - pgdat->node_zones < MAX_NR_ZONES - 1)
174 zone++;
178 zone = pgdat->node_zones;
180 zone = NULL;
182 return zone;
187 * @zone - zone_t * variable
189 * The user only needs to declare the zone variable, for_each_zone
200 #define for_each_zone(zone) \
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/fs/adfs/
H A Dmap.c37 * the zone dm.
94 * Scan the free space map, for this zone, calculating the total
118 * exist in this zone.
160 scan_map(struct adfs_sb_info *asb, unsigned int zone, argument
167 dm = asb->s_map + zone;
168 zone = asb->s_map_size;
169 dm_end = asb->s_map + zone;
180 } while (--zone > 0);
203 unsigned int zone; local
206 zone
218 unsigned int zone, mapoff; local
[all...]
H A Dsuper.c121 adfs_error(sb, "zone %d fails zonecheck", i);
219 int i, zone; local
235 for (zone = 0; zone < nzones; zone++, map_addr++) {
236 dm[zone].dm_startbit = 0;
237 dm[zone].dm_endbit = zone_size;
238 dm[zone].dm_startblk = zone * zone_size - ADFS_DR_SIZE_BITS;
239 dm[zone]
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/md/
H A Draid0.c81 struct strip_zone *zone = conf->strip_zone + i; local
83 printk("raid0: zone %d\n", i);
84 zone->dev_offset = current_offset;
94 zone->dev[c] = rdev;
104 zone->nb_dev = c;
105 zone->size = (smallest->size - current_offset) * c;
106 printk("raid0: zone->nb_dev: %d, size: %ld\n",zone->nb_dev,zone->size);
108 if (!conf->smallest || (zone
225 struct strip_zone *zone; local
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/fs/ntfs/
H A Dsuper.h25 const NTFS_CLUSTER_ALLOCATION_ZONES zone);
H A Dsuper.c163 /* Determine MFT zone size. */
180 /* Setup mft zone. */
201 * Need to cap the mft zone on non-standard volumes so that it does
203 * halving the zone size until we are inside the volume.
213 * Set the current position within each data zone to the start of the
214 * respective zone.
569 const NTFS_CLUSTER_ALLOCATION_ZONES zone)
583 "0x%x, *count = 0x%x, zone = %s_ZONE.\n", *location,
584 *count, zone == DATA_ZONE ? "DATA" : "MFT");
601 * If no specific location was requested, use the current data zone
567 ntfs_allocate_clusters(ntfs_volume *vol, ntfs_cluster_t *location, ntfs_cluster_t *count, ntfs_runlist **rl, int *rl_len, const NTFS_CLUSTER_ALLOCATION_ZONES zone) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/router/busybox/
H A Dmkfs_minix.c344 error_msg_and_die("unable to write zone map");
385 static int next(int zone) argument
387 if (!zone)
388 zone = FIRSTZONE - 1;
389 while (++zone < ZONES)
390 if (zone_in_use(zone))
391 return zone;
398 int i, j, zone; local
403 #define NEXT_BAD (zone = next(zone))
449 int i, j, zone; local
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/fs/minix/
H A Dbitmap.c56 unsigned int bit,zone; local
67 zone = block - sb->u.minix_sb.s_firstdatazone + 1;
68 bit = zone & 8191;
69 zone >>= 13;
70 if (zone >= sb->u.minix_sb.s_zmap_blocks) {
74 bh = sb->u.minix_sb.s_zmap[zone];
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/ia64/sn/io/
H A Dstubs.c87 snia_kmem_zone_alloc(register zone_t *zone, int flags) argument
94 snia_kmem_zone_free(register zone_t *zone, void *ptr) argument
/asus-wl-520gu-7.0.1.45/src/router/samba/source/lib/
H A Dtime.c173 static struct dst_table {time_t start,end; int zone;} *tdt, *dst_table = NULL; member in struct:dst_table
176 int zone = 0; local
188 zone = dst_table[i].zone;
192 zone = TimeZone(t);
203 dst_table[i].zone = zone;
221 if (TimeZone(t) == zone)
232 if (TimeZone(t) == zone)
241 dst_table[i].zone));
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/ia64/mm/
H A Dinit.c402 int zone; member in struct:memmap_init_callback_data
437 (*args->memmap_init)(map_start, map_end, args->zone,
445 struct page *end, int zone, unsigned long start_paddr, int highmem)
452 args.zone = zone;
444 arch_memmap_init(memmap_init_callback_t *memmap_init, struct page *start, struct page *end, int zone, unsigned long start_paddr, int highmem) argument
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/x86_64/
H A DMakefile41 CFLAGS += -mno-red-zone
/asus-wl-520gu-7.0.1.45/src/router/shared.asus/openssl/
H A Dx509v3.h246 ASN1_INTEGER *zone; member in struct:SXNET_ID_st
413 int SXNET_add_id_asc(SXNET **psx, char *zone, char *user, int userlen);
417 ASN1_OCTET_STRING *SXNET_get_id_asc(SXNET *sx, char *zone);
419 ASN1_OCTET_STRING *SXNET_get_id_INTEGER(SXNET *sx, ASN1_INTEGER *zone);
/asus-wl-520gu-7.0.1.45/src/router/libbcmcrypto/openssl/
H A Dx509v3.h245 ASN1_INTEGER *zone; member in struct:SXNET_ID_st
459 int SXNET_add_id_asc(SXNET **psx, char *zone, char *user, int userlen);
463 ASN1_OCTET_STRING *SXNET_get_id_asc(SXNET *sx, char *zone);
465 ASN1_OCTET_STRING *SXNET_get_id_INTEGER(SXNET *sx, ASN1_INTEGER *zone);
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-parisc/
H A Dpgtable.h273 ((((page)-(page)->zone->zone_mem_map) << PAGE_SHIFT) \
274 + ((page)->zone->zone_start_paddr))
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-parisc/
H A Dpgtable.h273 ((((page)-(page)->zone->zone_mem_map) << PAGE_SHIFT) \
274 + ((page)->zone->zone_start_paddr))
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-ia64/
H A Dpgtable.h444 struct page *end, int zone, unsigned long start_paddr, int highmem);
447 struct page *start, struct page *end, int zone,
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-ia64/
H A Dpgtable.h444 struct page *end, int zone, unsigned long start_paddr, int highmem);
447 struct page *start, struct page *end, int zone,
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/usb/storage/
H A Dsddr55.c502 /* set pba to first block in zone lba is in */
847 int zone = i / 1024; local
851 /* Every 1024 physical blocks ("zone"), the LBA numbers
854 * 1000 LBA's per zone. In other words, in PBA
857 * physical blocks per zone. Go figure.
873 if (info->lba_to_pba[lba + zone * 1000] != NOT_ALLOCATED &&
875 printk("sddr55: map inconsistency at LBA %04X\n", lba + zone * 1000);
882 info->lba_to_pba[lba + zone * 1000] = i;
/asus-wl-520gu-7.0.1.45/src/router/samba/source/modules/
H A Dgetdate.y119 /* tm_isdst flag for the local zone. */
122 /* Time zone, in minutes east of UTC. */
152 /* Table of local time zone abbrevations, terminated by a null entry. */
198 | zone
257 zone: label
545 /* The time zone table. This table is necessarily incomplete, as time
546 zone abbreviations are ambiguous; e.g. Australians interpret "EST"
548 You cannot rely on getdate to handle arbitrary time zone
605 /* Military time zone table. */
678 /* Try local zone abbreviation
[all...]

Completed in 303 milliseconds

12