Symbol: cand
lib/libpuffs/framebuf.c
623
struct puffs_framebuf *cand;
lib/libpuffs/framebuf.c
626
TAILQ_FOREACH(cand, &fio->res_qing, pfb_entries)
lib/libpuffs/framebuf.c
627
if (fctrl->cmpfb(pu, findme, cand, &notresp) == 0 || notresp)
lib/libpuffs/framebuf.c
630
assert(!(notresp && cand == NULL));
lib/libpuffs/framebuf.c
631
if (notresp || cand == NULL)
lib/libpuffs/framebuf.c
634
TAILQ_REMOVE(&fio->res_qing, cand, pfb_entries);
lib/libpuffs/framebuf.c
635
return cand;
sys/arch/arm/altera/cycv_clkmgr.c
333
struct cycv_clk_mux_info *cand = &cycv_clk_mux_tree[i];
sys/arch/arm/altera/cycv_clkmgr.c
334
if (strncmp(name, cand->name, strlen(cand->name)) == 0)
sys/arch/arm/altera/cycv_clkmgr.c
335
return cand;
sys/arch/arm/altera/cycv_clkmgr.c
360
struct cycv_clk *cand = &sc->sc_clocks[i];
sys/arch/arm/altera/cycv_clkmgr.c
361
if (strncmp(cand->base.name, name, strlen(name)) == 0)
sys/arch/arm/altera/cycv_clkmgr.c
362
return cand;
sys/arch/ia64/stand/common/bcache.c
267
int cand, ocount;
sys/arch/ia64/stand/common/bcache.c
271
cand = 0; /* assume the first block */
sys/arch/ia64/stand/common/bcache.c
278
cand = i;
sys/arch/ia64/stand/common/bcache.c
283
cand = i;
sys/arch/ia64/stand/common/bcache.c
287
DEBUG("insert blk %d -> %d @ %d # %d", blkno, cand, now, bcache_bcount);
sys/arch/ia64/stand/common/bcache.c
288
memcpy(bcache_data + (bcache_blksize * cand), buf, bcache_blksize);
sys/arch/ia64/stand/common/bcache.c
289
bcache_ctl[cand].bc_blkno = blkno;
sys/arch/ia64/stand/common/bcache.c
290
bcache_ctl[cand].bc_stamp = now;
sys/arch/ia64/stand/common/bcache.c
291
bcache_ctl[cand].bc_count = bcache_bcount++;
sys/dev/audio/audio.c
6790
audio_hw_probe(struct audio_softc *sc, audio_format2_t *cand, int mode)
sys/dev/audio/audio.c
6878
cand->encoding = query.fmt.encoding;
sys/dev/audio/audio.c
6879
cand->precision = query.fmt.validbits;
sys/dev/audio/audio.c
6880
cand->stride = query.fmt.precision;
sys/dev/audio/audio.c
6881
cand->channels = query.fmt.channels;
sys/dev/audio/audio.c
6882
cand->sample_rate = audio_select_freq(&query.fmt);
sys/dev/audio/audio.c
6887
cand->precision, cand->stride,
sys/dev/audio/audio.c
6888
cand->channels, cand->sample_rate);
sys/dev/audio/audio.c
6896
audio_encoding_name(cand->encoding),
sys/dev/audio/audio.c
6897
cand->precision, cand->stride, cand->channels, cand->sample_rate);
usr.bin/diff/diffreg.c
217
static struct cand *clist; /* merely a free storage pot for candidates */
usr.bin/diff/diffreg.c
630
struct cand *q;
usr.bin/diff/diffreg.c
670
struct cand *q;
usr.bin/make/suff.c
1004
CandidateList_AddCandidatesFor(CandidateList *list, Candidate *cand)
usr.bin/make/suff.c
1007
for (ln = cand->suff->children.first; ln != NULL; ln = ln->next) {
usr.bin/make/suff.c
1016
CandidateList_Add(list, bmake_strdup(cand->prefix),
usr.bin/make/suff.c
1017
cand, suff, "1");
usr.bin/make/suff.c
1020
CandidateList_Add(list, str_concat2(cand->prefix, suff->name),
usr.bin/make/suff.c
1021
cand, suff, "2");
usr.bin/make/suff.c
926
CandidateSearcher_Add(CandidateSearcher *cs, Candidate *cand)
usr.bin/make/suff.c
929
Lst_Append(&cs->list, cand);
usr.bin/make/suff.c
933
CandidateSearcher_AddIfNew(CandidateSearcher *cs, Candidate *cand)
usr.bin/make/suff.c
936
if (Lst_FindDatum(&cs->list, cand) == NULL)
usr.bin/make/suff.c
937
Lst_Append(&cs->list, cand);
usr.bin/make/suff.c
955
Candidate *cand = ln->datum;
usr.bin/make/suff.c
956
debug_printf(" %p:%s", cand, cand->file);
usr.bin/make/suff.c
966
Candidate *cand = bmake_malloc(sizeof *cand);
usr.bin/make/suff.c
968
cand->file = name;
usr.bin/make/suff.c
969
cand->prefix = prefix;
usr.bin/make/suff.c
970
cand->suff = Suffix_Ref(suff);
usr.bin/make/suff.c
971
cand->parent = parent;
usr.bin/make/suff.c
972
cand->node = gn;
usr.bin/make/suff.c
973
cand->numChildren = 0;
usr.bin/make/suff.c
975
Lst_Init(&cand->childrenList);
usr.bin/make/suff.c
978
return cand;
usr.bin/make/suff.c
986
Candidate *cand = Candidate_New(srcName, targ->prefix, suff, targ,
usr.bin/make/suff.c
989
Lst_Append(list, cand);
usr.bin/make/suff.c
992
Lst_Append(&targ->childrenList, cand);
usr.bin/make/suff.c
994
debug_tag, targ, targ->file, cand, cand->file, list);