HomeSort by: relevance | last modified time | path
    Searched refs:cand (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/arch/ia64/stand/common/
bcache.c 267 int cand, ocount; local in function:bcache_insert
271 cand = 0; /* assume the first block */
278 cand = i;
283 cand = i;
287 DEBUG("insert blk %d -> %d @ %d # %d", blkno, cand, now, bcache_bcount);
288 memcpy(bcache_data + (bcache_blksize * cand), buf, bcache_blksize);
289 bcache_ctl[cand].bc_blkno = blkno;
290 bcache_ctl[cand].bc_stamp = now;
291 bcache_ctl[cand].bc_count = bcache_bcount++;
  /src/usr.bin/make/
suff.c 926 CandidateSearcher_Add(CandidateSearcher *cs, Candidate *cand)
929 Lst_Append(&cs->list, cand);
933 CandidateSearcher_AddIfNew(CandidateSearcher *cs, Candidate *cand)
936 if (Lst_FindDatum(&cs->list, cand) == NULL)
937 Lst_Append(&cs->list, cand);
955 Candidate *cand = ln->datum; local in function:CandidateList_PrintAddrs
956 debug_printf(" %p:%s", cand, cand->file);
966 Candidate *cand = bmake_malloc(sizeof *cand); local in function:Candidate_New
986 Candidate *cand = Candidate_New(srcName, targ->prefix, suff, targ, local in function:CandidateList_Add
    [all...]
  /src/sys/arch/arm/altera/
cycv_clkmgr.c 333 struct cycv_clk_mux_info *cand = &cycv_clk_mux_tree[i]; local in function:cycv_clkmgr_get_mux_info
334 if (strncmp(name, cand->name, strlen(cand->name)) == 0)
335 return cand;
360 struct cycv_clk *cand = &sc->sc_clocks[i]; local in function:cycv_clkmgr_clock_lookup_by_name
361 if (strncmp(cand->base.name, name, strlen(name)) == 0)
362 return cand;
  /src/lib/libpuffs/
framebuf.c 623 struct puffs_framebuf *cand; local in function:findbuf
626 TAILQ_FOREACH(cand, &fio->res_qing, pfb_entries)
627 if (fctrl->cmpfb(pu, findme, cand, &notresp) == 0 || notresp)
630 assert(!(notresp && cand == NULL));
631 if (notresp || cand == NULL)
634 TAILQ_REMOVE(&fio->res_qing, cand, pfb_entries);
635 return cand;
  /src/sys/dev/audio/
audio.c 6785 * If successful, it will store the chosen format into *cand and return 0.
6790 audio_hw_probe(struct audio_softc *sc, audio_format2_t *cand, int mode)
6878 cand->encoding = query.fmt.encoding;
6879 cand->precision = query.fmt.validbits;
6880 cand->stride = query.fmt.precision;
6881 cand->channels = query.fmt.channels;
6882 cand->sample_rate = audio_select_freq(&query.fmt);
6887 cand->precision, cand->stride,
6888 cand->channels, cand->sample_rate)
    [all...]

Completed in 18 milliseconds