| /onnv/onnv-gate/usr/src/cmd/rpcgen/ |
| rpc_scan.c | 51 #define startcomment(where) (where[0] == '/' && where[1] == '*') 52 #define endcomment(where) (where[-1] == '*' && where[0] == '/') 156 if (*where == 0) { 170 *where = 0; 185 where = curline; 186 } else if (isspace(*where)) { [all...] |
| /onnv/onnv-gate/usr/src/lib/efcode/packages/ |
| parse.c | 74 * where alias is: 84 line_error(char *where, int line, char *msg) 86 log_message(MSG_ERROR, "%s:%d: %s\n", where, line, msg); 90 make_builtin_hooks(fcode_env_t *env, char *where) 96 if (where == NULL) 97 where = "/fcode/aliases"; 99 if ((fd = fopen(where, "r")) == NULL) { 112 line_error(where, lnum, "Badly formed line"); 117 line_error(where, lnum, "Badly formed alias"); 121 line_error(where, lnum, "Badly formed target") [all...] |
| /onnv/onnv-gate/usr/src/grub/grub-0.97/netboot/ |
| pci_io.c | 26 #define CONFIG_CMD(bus, device_fn, where) (0x80000000 | (bus << 16) | (device_fn << 8) | (where & ~3)) 29 unsigned int where, uint8_t *value) 31 outl(CONFIG_CMD(bus,device_fn,where), 0xCF8); 32 *value = inb(0xCFC + (where&3)); 37 unsigned int device_fn, unsigned int where, uint16_t *value) 39 outl(CONFIG_CMD(bus,device_fn,where), 0xCF8); 40 *value = inw(0xCFC + (where&2)); 45 unsigned int where, uint32_t *value) 47 outl(CONFIG_CMD(bus,device_fn,where), 0xCF8) [all...] |
| pci.h | 286 extern int pcibios_read_config_byte(unsigned int bus, unsigned int device_fn, unsigned int where, uint8_t *value); 287 extern int pcibios_write_config_byte (unsigned int bus, unsigned int device_fn, unsigned int where, uint8_t value); 288 extern int pcibios_read_config_word(unsigned int bus, unsigned int device_fn, unsigned int where, uint16_t *value); 289 extern int pcibios_write_config_word (unsigned int bus, unsigned int device_fn, unsigned int where, uint16_t value); 290 extern int pcibios_read_config_dword(unsigned int bus, unsigned int device_fn, unsigned int where, uint32_t *value); 291 extern int pcibios_write_config_dword(unsigned int bus, unsigned int device_fn, unsigned int where, uint32_t value); 297 pci_read_config_byte(struct pci_device *dev, unsigned int where, uint8_t *value) 299 return pcibios_read_config_byte(dev->bus, dev->devfn, where, value); 302 pci_write_config_byte(struct pci_device *dev, unsigned int where, uint8_t value) 304 return pcibios_write_config_byte(dev->bus, dev->devfn, where, value) [all...] |
| /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/t/op/ |
| defins.t | 58 my %where; 59 while ($where{$seen} = <FILE>) 61 $seen++ if $where{$seen} eq '0'; 88 while ($where{$seen} = readdir(DIR)) 90 $seen++ if $where{$seen} eq $wanted_filename; 113 while ($where{$seen} = glob('*')) 115 $seen++ if $where{$seen} eq $wanted_filename; 142 while ($where{$seen} = each %hash) 144 $seen++ if $where{$seen} eq '0';
|
| grent.t | 23 if (not defined $where) { # Try NIS. 42 $where = "NIS group - $ypcat"; 49 if (not defined $where) { # Try NetInfo. 55 $where = "NetInfo group - $nidump"; 62 if (not defined $where) { # Try local. 66 $where = "local $GR"; 88 print "# where $where\n"; 100 warn "# Your $where line $. is empty.\n"; 152 # entries of $where [all...] |
| pwent.t | 20 if (not defined $where) { # Try NIS. 25 $where = "NIS passwd"; 32 if (not defined $where) { # Try NetInfo. 37 $where = "NetInfo passwd"; 44 if (not defined $where) { # Try local. 47 $where = $PW; 52 if (not defined $where) { # Try NIS+ 57 $where = "NIS+ $niscat passwd.org_dir"; 83 print "# where $where\n" [all...] |
| /onnv/onnv-gate/usr/src/cmd/mail/ |
| poplist.c | 31 void poplist (hdrtype, where) 33 register int where; 39 hdr2rm = (where == HEAD ? 45 if (where == HEAD) {
|
| pushlist.c | 33 void pushlist(hdrtype, where, s, contflg) 35 register int where; 64 ohp = (where == HEAD ? hdrlines[hdrtype].head : hdrlines[hdrtype].tail); 115 if (where == HEAD) {
|
| /onnv/onnv-gate/usr/src/lib/libc/port/gen/ |
| ndbm.c | 125 off64_t where; local 128 where = (((off64_t)db->dbm_pagbno) * PBLKSIZ); 129 if ((lseek64(db->dbm_pagf, where, L_SET) != where) || 143 off64_t where; local 145 where = (((off64_t)db->dbm_dirbno) * DBLKSIZ); 146 if ((lseek64(db->dbm_dirf, where, L_SET) != where) || 274 off64_t where; local 291 where = (((off64_t)db->dbm_blkno) * PBLKSIZ) 309 off64_t where; local 497 off64_t where; local 552 off64_t where; local 725 off64_t where; local 786 off64_t where; local 811 off64_t where; local [all...] |
| /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ |
| malloc_ctl.h | 20 Malloc_t Perl_realloc (Malloc_t where, MEM_SIZE nbytes); 23 Free_t Perl_mfree (Malloc_t where);
|
| /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/x2p/ |
| util.h | 39 Malloc_t saferealloc (Malloc_t where, MEM_SIZE nbytes); 40 Free_t safefree (Malloc_t where);
|
| util.c | 50 saferealloc(Malloc_t where, MEM_SIZE size) 55 ptr = realloc(where, size ? size : 1); 58 fprintf(stderr,"0x%lx: (%05d) rfree\n",(unsigned long)where,an++); 75 safefree(Malloc_t where) 79 fprintf(stderr,"0x%lx: (%05d) free\n",(unsigned long)where,an++); 81 free(where);
|
| /onnv/onnv-gate/usr/src/lib/libcmdutils/common/ |
| avltree.c | 164 avl_index_t where; local 189 if (avl_find(*stree, tnode, &where) == NULL) { 190 avl_insert(*stree, tnode, where);
|
| /onnv/onnv-gate/usr/src/cmd/sgs/libld/common/ |
| wrap.c | 95 avl_index_t where; local 110 if ((wsnp = avl_find(ofl->ofl_wrap, &wsn, &where)) != NULL) 129 avl_insert(ofl->ofl_wrap, wsnp, where);
|
| /onnv/onnv-gate/usr/src/uts/common/sys/ |
| avl.h | 116 * An opaque type used to locate a position in the tree where a node 132 * Where not otherwise mentioned, "void *" arguments are a pointer to the 158 * found. If not found, it returns NULL and then if "where" is not NULL it sets 159 * "where" for use with avl_insert() or avl_nearest(). 162 * where - position for use with avl_nearest() or avl_insert(), may be NULL 164 extern void *avl_find(avl_tree_t *tree, const void *node, avl_index_t *where); 170 * where - position as returned from avl_find() 172 extern void avl_insert(avl_tree_t *tree, void *node, avl_index_t where); 214 * where - position as returned from avl_find() 223 * avl_index_t where; [all...] |
| /onnv/onnv-gate/usr/src/lib/libnisdb/ |
| db_table.cc | 61 * th inverse of 2**(N-1), where N is the number of bits in a 157 entryp found = head->where; 180 newentry->where = tabloc; 218 answer[i] = current->where; 502 * 'where'. Return NULL in both if no next entry is found. 505 db_table::first_entry(entryp * where) 509 *where = NULL; 516 *where = i; 521 *where = NULL; 547 /* Return entry at location 'where', NULL if location is invalid. * 663 entryp where = freelist.pop(); local [all...] |
| db_scheme_c.x | 49 %/* Positional information of where field starts within record 61 db_posn_info where; /* where within record entry is 'key' located */ 67 db_posn_info where; /* where within record entry is 'data' located */
|
| db_dictionary_c.x | 221 % If 'where' is set, set it to the table_desc of 'table_name.' 225 % db* find_table( char* table_name, db_table_desc ** where = NULL ); 227 % db *find_table(char *table_name, db_table_desc **where, 229 % db *find_table(char *table_name, db_table_desc **where, 233 % db *find_table_noLDAP(char *table_name, db_table_desc **where,
|
| db_scheme.cc | 81 descols[i].where = srccols[i].where; 152 scols[keynum].where.max_len = NIS_MAXATTRVAL; 153 scols[keynum].where.start_column = 0; 236 keys.keys_val[i].where.start_column, 237 keys.keys_val[i].where.max_len); 239 data.where.start_column, data.where.max_len);
|
| /onnv/onnv-gate/usr/src/uts/common/io/xge/drv/ |
| xge_osdep.h | 298 #define xge_os_pci_read8(pdev, cfgh, where, val) \ 299 (*(val) = pci_config_get8(cfgh, where)) 301 #define xge_os_pci_write8(pdev, cfgh, where, val) \ 302 pci_config_put8(cfgh, where, val) 304 #define xge_os_pci_read16(pdev, cfgh, where, val) \ 305 (*(val) = pci_config_get16(cfgh, where)) 307 #define xge_os_pci_write16(pdev, cfgh, where, val) \ 308 pci_config_put16(cfgh, where, val) 310 #define xge_os_pci_read32(pdev, cfgh, where, val) \ 311 (*(val) = pci_config_get32(cfgh, where)) [all...] |
| /onnv/onnv-gate/usr/src/lib/libc/i386/sys/ |
| uname.s | 40 subl $4, %esp / where return address would be.
|
| /onnv/onnv-gate/usr/src/uts/sun4/conf/ |
| genalign.s | 39 ! this little hack generates a .note section where we tell
|
| /onnv/onnv-gate/usr/src/lib/libparted/common/libparted/fs/hfs/ |
| cache.h | 65 unsigned where : 5; member in struct:_HfsCPrivateExtent 102 uint8_t where, uint8_t index);
|
| /onnv/onnv-gate/usr/src/uts/common/idmap/ |
| idmap_cache.c | 325 avl_index_t where; local 334 result = avl_find(&cache->sid2pid.tree, &entry, &where); 355 avl_index_t where; local 364 result = avl_find(&cache->sid2pid.tree, &entry, &where); 385 avl_index_t where; local 394 result = avl_find(&cache->sid2pid.tree, &entry, &where); 423 avl_index_t where; local 431 result = avl_find(&cache->uid2sid.tree, &entry, &where); 453 avl_index_t where; local 461 result = avl_find(&cache->gid2sid.tree, &entry, &where); 482 avl_index_t where; local 571 avl_index_t where; local 659 avl_index_t where; local 866 avl_index_t where; local [all...] |