Home
last modified time | relevance | path

Searched refs:where (Results 1 – 25 of 712) sorted by relevance

12345678910>>...29

/titanic_51/usr/src/cmd/rpcgen/
H A Drpc_scan.c51 #define startcomment(where) (where[0] == '/' && where[1] == '*') argument
52 #define endcomment(where) (where[-1] == '*' && where[0] == '/') argument
156 if (*where == 0) { in get_token()
170 *where = 0; in get_token()
185 where = curline; in get_token()
186 } else if (isspace(*where)) { in get_token()
[all...]
/titanic_51/usr/src/lib/libsqlite/test/
H A Dwhere.test17 # $Id: where.test,v 1.17 2003/06/15 23:42:25 drh Exp $
24 do_test where-1.0 {
57 do_test where-1.1 {
60 do_test where-1.2 {
63 do_test where-1.3 {
66 do_test where-1.4 {
69 do_test where-1.5 {
72 do_test where-1.6 {
75 do_test where-1.7 {
78 do_test where
[all...]
H A Dlaststmtchanges.test50 update t0 set x=3 where x=1;
58 update t0 set x=x+last_statement_change_count() where x=3;
59 select count() from t0 where x=8;
63 # LSCC set properly after update on table where no rows changed
66 update t0 set x=77 where x=88;
74 delete from t0 where x=2;
121 delete from t0 where oid=1 or oid=2;
198 update t0 set x=x*10 where x=1;
202 update t0 set x=x*10 where x=0;
210 update t0 set x=x*100 where
[all...]
H A Dtrigger4.test58 update test1 set a=NEW.a where id=NEW.id;
59 update test2 set b=NEW.b where id=NEW.id;
61 update test set a=22 where id=1;
74 update test set b=66 where id=4;
99 update test set a=222 where id=1;
123 update test set b=99 where id=7;
H A Dlastinsert.test45 update t1 set k=4 where k=2;
53 delete from t1 where k=4;
118 update t1 set k=14 where k=3;
196 delete from t1 where k=1;
235 update v set k=16 where k=14;
275 update rid set rin=last_insert_rowid() where k=1;
278 update rid set rout=last_insert_rowid() where k=1;
281 update rid set rin=last_insert_rowid() where k=2;
283 update rid set rout=last_insert_rowid() where k=2;
299 select rin from rid where
[all...]
/titanic_51/usr/src/grub/grub-0.97/netboot/
H A Dpci_io.c26 #define CONFIG_CMD(bus, device_fn, where) (0x80000000 | (bus << 16) | (device_fn << 8) | (where & ~3)) argument
29 unsigned int where, uint8_t *value) in pcibios_read_config_byte() argument
31 outl(CONFIG_CMD(bus,device_fn,where), 0xCF8); in pcibios_read_config_byte()
32 *value = inb(0xCFC + (where&3)); in pcibios_read_config_byte()
37 unsigned int device_fn, unsigned int where, uint16_t *value) in pcibios_read_config_word() argument
39 outl(CONFIG_CMD(bus,device_fn,where), 0xCF8); in pcibios_read_config_word()
40 *value = inw(0xCFC + (where&2)); in pcibios_read_config_word()
45 unsigned int where, uint32_t *value) in pcibios_read_config_dword() argument
47 outl(CONFIG_CMD(bus,device_fn,where), in pcibios_read_config_dword()
53 pcibios_write_config_byte(unsigned int bus,unsigned int device_fn,unsigned int where,uint8_t value) pcibios_write_config_byte() argument
61 pcibios_write_config_word(unsigned int bus,unsigned int device_fn,unsigned int where,uint16_t value) pcibios_write_config_word() argument
68 pcibios_write_config_dword(unsigned int bus,unsigned int device_fn,unsigned int where,uint32_t value) pcibios_write_config_dword() argument
145 pcibios_read_config_byte(unsigned int bus,unsigned int device_fn,unsigned int where,uint8_t * value) pcibios_read_config_byte() argument
172 pcibios_read_config_word(unsigned int bus,unsigned int device_fn,unsigned int where,uint16_t * value) pcibios_read_config_word() argument
199 pcibios_read_config_dword(unsigned int bus,unsigned int device_fn,unsigned int where,uint32_t * value) pcibios_read_config_dword() argument
226 pcibios_write_config_byte(unsigned int bus,unsigned int device_fn,unsigned int where,uint8_t value) pcibios_write_config_byte() argument
253 pcibios_write_config_word(unsigned int bus,unsigned int device_fn,unsigned int where,uint16_t value) pcibios_write_config_word() argument
280 pcibios_write_config_dword(unsigned int bus,unsigned int device_fn,unsigned int where,uint32_t value) pcibios_write_config_dword() argument
[all...]
H A Dpci.h286 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) in pci_read_config_byte() argument
299 return pcibios_read_config_byte(dev->bus, dev->devfn, where, value); in pci_read_config_byte()
302 pci_write_config_byte(struct pci_device *dev, unsigned int where, uint8_t value) in pci_write_config_byte() argument
304 return pcibios_write_config_byte(dev->bus, dev->devfn, where, valu in pci_write_config_byte()
307 pci_read_config_word(struct pci_device * dev,unsigned int where,uint16_t * value) pci_read_config_word() argument
312 pci_write_config_word(struct pci_device * dev,unsigned int where,uint16_t value) pci_write_config_word() argument
317 pci_read_config_dword(struct pci_device * dev,unsigned int where,uint32_t * value) pci_read_config_dword() argument
322 pci_write_config_dword(struct pci_device * dev,unsigned int where,uint32_t value) pci_write_config_dword() argument
[all...]
/titanic_51/usr/src/boot/sys/boot/common/
H A Dreloc_elf.c47 * target relocation base for the section (i.e. it corresponds to where
81 Elf64_Addr *where, val; in __elfN()
90 where = (Elf_Addr *)((char *)data + relbase + rel->r_offset - in __elfN()
99 where = (Elf_Addr *)((char *)data + relbase + rela->r_offset - in __elfN()
109 if ((char *)where < (char *)data || (char *)where >= (char *)data + len) in __elfN()
113 addend = *where; in __elfN()
125 *where = val; in __elfN()
130 *where = val; in __elfN()
139 Elf_Addr addend, addr, *where, va in __elfN()
[all...]
/titanic_51/usr/src/lib/libc/port/gen/
H A Dndbm.c125 off64_t where; in dbm_flushpag() local
128 where = (((off64_t)db->dbm_pagbno) * PBLKSIZ); in dbm_flushpag()
129 if ((lseek64(db->dbm_pagf, where, L_SET) != where) || in dbm_flushpag()
143 off64_t where; in dbm_flushdir() local
145 where = (((off64_t)db->dbm_dirbno) * DBLKSIZ); in dbm_flushdir()
146 if ((lseek64(db->dbm_dirf, where, L_SET) != where) || in dbm_flushdir()
274 off64_t where; in dbm_delete() local
291 where in dbm_delete()
309 off64_t where; dbm_store() local
497 off64_t where; dbm_slow_nextkey() local
552 off64_t where; dbm_do_nextkey() local
725 off64_t where; dbm_access() local
786 off64_t where; getbit() local
811 off64_t where; setbit() local
[all...]
/titanic_51/usr/src/lib/efcode/packages/
H A Dparse.c74 * where alias is:
84 line_error(char *where, int line, char *msg) in line_error() argument
86 log_message(MSG_ERROR, "%s:%d: %s\n", where, line, msg); in line_error()
90 make_builtin_hooks(fcode_env_t *env, char *where) in make_builtin_hooks() argument
96 if (where == NULL) in make_builtin_hooks()
97 where = "/fcode/aliases"; in make_builtin_hooks()
99 if ((fd = fopen(where, "r")) == NULL) { in make_builtin_hooks()
112 line_error(where, lnum, "Badly formed line"); in make_builtin_hooks()
117 line_error(where, lnum, "Badly formed alias"); in make_builtin_hooks()
121 line_error(where, lnu in make_builtin_hooks()
[all...]
/titanic_51/usr/src/lib/libnisdb/
H A Ddb_table.cc61 * th inverse of 2**(N-1), where N is the number of bits in a
157 entryp found = head->where; in pop()
180 newentry->where = tabloc; in push()
218 answer[i] = current->where; in stats()
502 * 'where'. Return NULL in both if no next entry is found.
505 db_table::first_entry(entryp * where) in first_entry() argument
509 *where = NULL; in first_entry()
516 *where = i; in first_entry()
521 *where = NULL; in first_entry()
547 /* Return entry at location 'where', NUL
549 get_entry(entryp where) get_entry() argument
559 setEntryExp(entryp where,entry_obj * obj,int initialLoad) setEntryExp() argument
663 entryp where = freelist.pop(); add_entry() local
690 replace_entry(entryp where,entry_object * obj) replace_entry() argument
713 delete_entry(entryp where) delete_entry() argument
[all...]
H A Ddb_scheme.cc81 descols[i].where = srccols[i].where; in db_scheme()
152 scols[keynum].where.max_len = NIS_MAXATTRVAL; in db_scheme()
153 scols[keynum].where.start_column = 0; in db_scheme()
236 keys.keys_val[i].where.start_column, in print()
237 keys.keys_val[i].where.max_len); in print()
239 data.where.start_column, data.where.max_len); in print()
/titanic_51/usr/src/boot/lib/libstand/
H A Dlseek.c67 lseek(int fd, off_t offset, int where) in lseek() argument
81 switch (where) { in lseek()
99 * handle it would fail in the same cases where the non-readahead in lseek()
103 if (f->f_ralen != 0 && where != SEEK_END) { in lseek()
107 switch (where) { in lseek()
130 if (where == SEEK_CUR) in lseek()
138 return (f->f_ops->fo_seek)(f, offset, where); in lseek()
/titanic_51/usr/src/uts/common/idmap/
H A Didmap_cache.c325 avl_index_t where; in kidmap_cache_lookup_uidbysid() local
334 result = avl_find(&cache->sid2pid.tree, &entry, &where); in kidmap_cache_lookup_uidbysid()
355 avl_index_t where; in kidmap_cache_lookup_gidbysid() local
364 result = avl_find(&cache->sid2pid.tree, &entry, &where); in kidmap_cache_lookup_gidbysid()
385 avl_index_t where; in kidmap_cache_lookup_pidbysid() local
394 result = avl_find(&cache->sid2pid.tree, &entry, &where); in kidmap_cache_lookup_pidbysid()
423 avl_index_t where; in kidmap_cache_lookup_sidbyuid() local
431 result = avl_find(&cache->uid2sid.tree, &entry, &where); in kidmap_cache_lookup_sidbyuid()
453 avl_index_t where; in kidmap_cache_lookup_sidbygid() local
461 result = avl_find(&cache->gid2sid.tree, &entry, &where); in kidmap_cache_lookup_sidbygid()
482 avl_index_t where; kidmap_cache_add_sid2uid() local
571 avl_index_t where; kidmap_cache_add_sid2gid() local
659 avl_index_t where; kidmap_cache_add_sid2pid() local
866 avl_index_t where; kidmap_find_sid_prefix() local
[all...]
/titanic_51/usr/src/cmd/fs.d/ufs/fsck/
H A Ddup_avl.c134 avl_index_t where; in find_dup_ref() local
148 dup = avl_find(&dup_frags, (void *)&key, &where); in find_dup_ref()
151 avl_insert(&dup_frags, (void *)dup, where); in find_dup_ref()
294 avl_index_t where; in invert_frags() local
308 &where); in invert_frags()
314 avl_insert(target, (void *)tgt_inode, where); in invert_frags()
324 (void *)&tgt_ref_key, &where); in invert_frags()
337 (void *)tgt_ref, where); in invert_frags()
403 avl_index_t where; in increment_claimant() local
410 claimant = avl_find(&dup->fr_claimants, &key, &where); in increment_claimant()
442 avl_index_t where; decrement_claimant() local
[all...]
/titanic_51/usr/src/lib/libidmap/common/
H A Didmap_cache.c482 avl_index_t where; in idmap_cache_lookup_uidbysid() local
491 result = avl_find(&idmap_cache.sid2uid_gid.tree, &entry, &where); in idmap_cache_lookup_uidbysid()
513 avl_index_t where; in idmap_cache_lookup_gidbysid() local
522 result = avl_find(&idmap_cache.sid2uid_gid.tree, &entry, &where); in idmap_cache_lookup_gidbysid()
545 avl_index_t where; in idmap_cache_lookup_pidbysid() local
554 result = avl_find(&idmap_cache.sid2uid_gid.tree, &entry, &where); in idmap_cache_lookup_pidbysid()
582 avl_index_t where; in idmap_cache_lookup_sidbyuid() local
590 result = avl_find(&idmap_cache.uid2sid_winname.tree, &entry, &where); in idmap_cache_lookup_sidbyuid()
614 avl_index_t where; in idmap_cache_lookup_sidbygid() local
622 result = avl_find(&idmap_cache.gid2sid_winname.tree, &entry, &where); in idmap_cache_lookup_sidbygid()
646 avl_index_t where; idmap_cache_lookup_winnamebyuid() local
691 avl_index_t where; idmap_cache_lookup_winnamebygid() local
737 avl_index_t where; idmap_cache_lookup_uidbywinname() local
767 avl_index_t where; idmap_cache_lookup_gidbywinname() local
796 avl_index_t where; idmap_cache_add_sid2uid() local
908 avl_index_t where; idmap_cache_add_sid2gid() local
1018 avl_index_t where; idmap_cache_add_sid2pid() local
1197 avl_index_t where; idmap_cache_add_winname2uid() local
1327 avl_index_t where; idmap_cache_add_winname2gid() local
[all...]
/titanic_51/usr/src/uts/common/io/xge/drv/
H A Dxge_osdep.h298 #define xge_os_pci_read8(pdev, cfgh, where, val) \ argument
299 (*(val) = pci_config_get8(cfgh, where))
301 #define xge_os_pci_write8(pdev, cfgh, where, val) \ argument
302 pci_config_put8(cfgh, where, val)
304 #define xge_os_pci_read16(pdev, cfgh, where, val) \ argument
305 (*(val) = pci_config_get16(cfgh, where))
307 #define xge_os_pci_write16(pdev, cfgh, where, val) \ argument
308 pci_config_put16(cfgh, where, val)
310 #define xge_os_pci_read32(pdev, cfgh, where, val) \ argument
311 (*(val) = pci_config_get32(cfgh, where))
313 xge_os_pci_write32(pdev,cfgh,where,val) global() argument
[all...]
/titanic_51/usr/src/cmd/mail/
H A Dpoplist.c31 void poplist (hdrtype, where) in poplist() argument
33 register int where;
39 hdr2rm = (where == HEAD ?
45 if (where == HEAD) {
H A Dpushlist.c33 void pushlist(hdrtype, where, s, contflg) in pushlist() argument
35 register int where;
64 ohp = (where == HEAD ? hdrlines[hdrtype].head : hdrlines[hdrtype].tail);
115 if (where == HEAD) {
/titanic_51/usr/src/uts/common/fs/zfs/
H A Dzfs_rlock.c108 avl_index_t where; in zfs_range_lock_writer() local
158 rl = avl_find(tree, new, &where); in zfs_range_lock_writer()
162 rl = (rl_t *)avl_nearest(tree, where, AVL_AFTER); in zfs_range_lock_writer()
166 rl = (rl_t *)avl_nearest(tree, where, AVL_BEFORE); in zfs_range_lock_writer()
171 avl_insert(tree, new, where); in zfs_range_lock_writer()
271 zfs_range_add_reader(avl_tree_t *tree, rl_t *new, rl_t *prev, avl_index_t where) in zfs_range_add_reader() argument
301 next = (rl_t *)avl_nearest(tree, where, AVL_AFTER); in zfs_range_add_reader()
305 avl_insert(tree, new, where); in zfs_range_add_reader()
360 avl_index_t where; in zfs_range_lock_reader() local
368 prev = avl_find(tree, new, &where); in zfs_range_lock_reader()
[all...]
/titanic_51/usr/src/cmd/dtrace/test/tst/common/nfs/
H A Dtst.call3.c110 args->where.name = "pinky-blue"; in create_arginit()
111 args->where.dir.data.data_len = rootfh->fhandle3_len; in create_arginit()
112 args->where.dir.data.data_val = rootfh->fhandle3_val; in create_arginit()
151 args->where.dir.data.data_len = rootfh->fhandle3_len; in mkdir_arginit()
152 args->where.dir.data.data_val = rootfh->fhandle3_val; in mkdir_arginit()
153 args->where.name = "cookie"; in mkdir_arginit()
162 args->where.dir.data.data_len = rootfh->fhandle3_len; in mknod_arginit()
163 args->where.dir.data.data_val = rootfh->fhandle3_val; in mknod_arginit()
164 args->where.name = "pookie"; in mknod_arginit()
262 args->where in symlink_arginit()
[all...]
/titanic_51/usr/src/cmd/sgs/rtld.4.x/
H A Drtld.4.x.c277 long *where = (long *)((caddr_t)rp->r_address + ip->crt_baseaddr); local
283 what += *where << (32-22);
284 value = (*where & ~MASK(22)) | ((what >> (32-22)) & MASK(22));
285 wrt(where, value);
286 where++;
287 what += (*where & MASK(10));
288 value = (*where & ~MASK(10)) | (what & MASK(10));
289 wrt(where, value);
293 what += *where;
294 wrt(where, wha
[all...]
/titanic_51/usr/src/common/avl/
H A Davl.c89 * adjacent to where a new value would be inserted in the tree. The value
226 avl_nearest(avl_tree_t *tree, avl_index_t where, int direction) in avl_nearest() argument
228 int child = AVL_INDEX2CHILD(where); in avl_nearest()
229 avl_node_t *node = AVL_INDEX2NODE(where); in avl_nearest()
251 * *where (if not NULL) is set to indicate the insertion point
255 avl_find(avl_tree_t *tree, const void *value, avl_index_t *where) in avl_find() argument
272 if (where != NULL) in avl_find()
273 *where = 0; in avl_find()
281 if (where != NULL) in avl_find()
282 *where in avl_find()
482 avl_insert(avl_tree_t * tree,void * new_data,avl_index_t where) avl_insert() argument
634 avl_index_t where; avl_add() local
[all...]
/titanic_51/usr/src/uts/common/fs/smbclnt/netsmb/
H A Dsmb_pass.c79 * ZoneID: ZoneID of the zone from where the login request is initiated.
207 avl_index_t where; in smb_pkey_del() local
226 tmp, &where)) != NULL) { in smb_pkey_del()
279 avl_index_t where; in smb_pkey_add() local
312 tmp = (smb_passid_t *)avl_find(t, cpid, &where); in smb_pkey_add()
314 avl_insert(t, cpid, where); in smb_pkey_add()
333 avl_index_t where; in smb_pkey_check() local
352 tmp = (smb_passid_t *)avl_find(t, cpid, &where); in smb_pkey_check()
/titanic_51/usr/src/cmd/ypcmd/
H A Dypxfrd_client.c91 off64_t where; local
107 where = (((off64_t)PAG->pag_u.ok.blkno) * PBLKSIZ);
108 (void) lseek64(db->dbm_pagf, where, L_SET);
142 off64_t where; local
152 where = (((off64_t)DIR->dir_u.ok.blkno) * DBLKSIZ);
153 (void) lseek64(db->dbm_dirf, where, L_SET);

12345678910>>...29