HomeSort by: relevance | last modified time | path
    Searched defs:cid (Results 1 - 25 of 38) sorted by relevancy

1 2

  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvif/
nouveau_nvif_disp.c 59 int cid = nvif_sclass(&device->object, disps, oclass); local in function:nvif_disp_ctor
61 if (cid < 0)
62 return cid;
64 return nvif_object_init(&device->object, 0, disps[cid].oclass,
nouveau_nvif_user.c 52 int cid, ret; local in function:nvif_user_init
57 cid = nvif_mclass(&device->object, users);
58 if (cid < 0)
59 return cid;
61 ret = nvif_object_init(&device->object, 0, users[cid].oclass, NULL, 0,
67 device->user.func = users[cid].func;
  /src/sys/dev/mvme/
pcctwo.c 63 u_int8_t cid; local in function:pcctwo_init
77 cid = pcc2_reg_read(sc, PCC2REG_CHIP_ID);
82 if (cid == PCCTWO_CHIP_ID_PCC2)
86 if (cid == PCCTWO_CHIP_ID_MCCHIP)
  /src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv50/
nouveau_dispnv50_base.c 49 int cid; local in function:nv50_base_new
51 cid = nvif_mclass(&disp->disp->object, bases);
52 if (cid < 0) {
54 return cid;
57 return bases[cid].new(drm, head, bases[cid].oclass, pwndw);
nouveau_dispnv50_core.c 67 int cid; local in function:nv50_core_new
69 cid = nvif_mclass(&disp->disp->object, cores);
70 if (cid < 0) {
72 return cid;
75 return cores[cid].new(drm, cores[cid].oclass, pcore);
nouveau_dispnv50_curs.c 49 int cid; local in function:nv50_curs_new
51 cid = nvif_mclass(&disp->disp->object, curses);
52 if (cid < 0) {
54 return cid;
57 return curses[cid].new(drm, head, curses[cid].oclass, pwndw);
nouveau_dispnv50_oimm.c 47 int cid; local in function:nv50_oimm_init
49 cid = nvif_mclass(&disp->disp->object, oimms);
50 if (cid < 0) {
52 return cid;
55 return oimms[cid].init(drm, oimms[cid].oclass, wndw);
nouveau_dispnv50_ovly.c 49 int cid, ret; local in function:nv50_ovly_new
51 cid = nvif_mclass(&disp->disp->object, ovlys);
52 if (cid < 0) {
54 return cid;
57 ret = ovlys[cid].new(drm, head, ovlys[cid].oclass, pwndw);
nouveau_dispnv50_wimm.c 44 int cid; local in function:nv50_wimm_init
46 cid = nvif_mclass(&disp->disp->object, wimms);
47 if (cid < 0) {
49 return cid;
52 return wimms[cid].init(drm, wimms[cid].oclass, wndw);
nouveau_dispnv50_wndw.c 725 int cid, ret; local in function:nv50_wndw_new
727 cid = nvif_mclass(&disp->disp->object, wndws);
728 if (cid < 0) {
730 return cid;
733 ret = wndws[cid].new(drm, type, index, wndws[cid].oclass, pwndw);
  /src/sys/dev/i2c/
smscmon.c 159 uint8_t cmd, cid, rev; local in function:smscmon_match
169 ia->ia_addr, &cmd, sizeof cmd, &cid, sizeof cid, 0)) {
180 if ( cid != SMSC_CID_47M192 || rev != SMSC_REV_47M192) {
194 uint8_t cid, rev; local in function:smscmon_attach
204 cid = sc->smscmon_readreg(sc, SMSCMON_REG_COMPANY);
206 switch (cid) {
219 aprint_normal(": unknown chip: cid 0x%02x rev 0x%02x\n",
220 cid, rev);
  /src/usr.sbin/pf/pfs/
parse.y 84 %token ID CID EXPIRE TIMEOUT
100 : STATE direction iface proto addrs id cid expire timeout src_peer dst_peer {
167 cid label
168 : CID NUMBER {
  /src/sys/arch/mvme68k/dev/
pcctwo_68k.c 152 uint8_t cid; local in function:pcctwomatch
165 cid = bus_space_read_1(ma->ma_bust, bh, PCC2REG_CHIP_ID);
170 cid == PCCTWO_CHIP_ID_PCC2)
175 cid == PCCTWO_CHIP_ID_MCCHIP)
189 uint8_t cid; local in function:pcctwoattach
206 cid = pcc2_reg_read(sc, PCC2REG_CHIP_ID);
209 if (cid == PCCTWO_CHIP_ID_PCC2) {
215 if (cid == PCCTWO_CHIP_ID_MCCHIP) {
225 if (cid == PCCTWO_CHIP_ID_MCCHIP) {
  /src/sys/arch/mips/atheros/
ar_conf.c 172 const u_int cid = MIPS_PRID_CID(mips_options.mips_cpu_id); local in function:atheros_set_platformsw
179 if (cid != ac->ac_cid || pid != ac->ac_pid)
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/tests/
asan_fake_stack_test.cc 112 for (uptr cid = 0; cid < FakeStack::kNumberOfSizeClasses; cid++) { local in function:__asan::TEST
113 uptr n = FakeStack::NumberOfFrames(stack_size_log, cid);
114 uptr bytes_in_class = FakeStack::BytesInSizeClass(cid);
116 FakeFrame *ff = fs->Allocate(stack_size_log, cid, 0);
118 EXPECT_TRUE(s.insert(std::make_pair(ff, cid)).second);
125 EXPECT_EQ(0UL, fs->Allocate(stack_size_log, cid, 0));
  /src/sys/netbt/
l2cap_misc.c 90 DPRINTF("CID #%d, auth %s, encrypt %s, secure %s\n", chan->lc_lcid,
202 DPRINTF("cid %d, ident %d\n", (chan ? chan->lc_lcid : 0), req->lr_id);
211 * Allocate next available CID to channel. We keep a single
221 uint16_t cid = L2CAP_FIRST_CID; local in function:l2cap_cid_alloc
227 if (used->lc_lcid > cid)
230 KASSERT(used->lc_lcid == cid);
231 cid++;
233 if (cid == L2CAP_LAST_CID)
239 chan->lc_lcid = cid;
250 * Find channel with CID
    [all...]
  /src/sys/arch/xen/x86/
xen_pmap.c 374 cpuid_t cid = cpu_index(ci); local in function:xen_kpm_sync
376 !kcpuset_isset(pmap->pm_xen_ptp_cpus, cid))
382 kcpuset_isset(pmap->pm_xen_ptp_cpus, cid)) {
cpu.c 1109 cpuid_t cid = cpu_index(ci); local in function:cpu_load_pmap
1117 kcpuset_atomic_set(pmap->pm_xen_ptp_cpus, cid);
1156 kcpuset_atomic_clear(oldpmap->pm_xen_ptp_cpus, cid);
  /src/sys/arch/x86/acpi/
acpi_wakeup.c 306 cpuid_t cid; local in function:acpi_md_sleep
326 cid = cpu_index(curcpu());
327 while (kcpuset_isotherset(kcpuset_running, cid)) {
  /src/sys/arch/prep/pnpbus/
pnpbus.c 240 uint32_t cid; local in function:pnp_newcompatid
243 cid = le32dec(p->CompatId);
244 pnp_devid_to_string(cid, id->idstr);
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/unit/
tsan_clock_test.cc 390 unsigned cid = rand() % kClocks; local in function:__tsan::ClockFuzzer
397 printf("acquire thr%d <- clk%d\n", tid, cid);
398 thr0[tid]->acquire(sync0[cid]);
399 thr1[tid]->acquire(&cache, sync1[cid]);
403 printf("release thr%d -> clk%d\n", tid, cid);
404 thr0[tid]->release(sync0[cid]);
405 thr1[tid]->release(&cache, sync1[cid]);
409 printf("acq_rel thr%d <> clk%d\n", tid, cid);
410 thr0[tid]->acq_rel(sync0[cid]);
411 thr1[tid]->acq_rel(&cache, sync1[cid]);
    [all...]
  /src/sys/arch/x86/x86/
svs.c 131 * has a two-page rsp0 entry (pcpuarea->ent[cid].rsp0). These two pages do
162 * | | pcpuarea->ent[cid].rsp0 (page 0) | | |
164 * | | pcpuarea->ent[cid].rsp0 (page 1) | ----+
168 * After svs_lwp_switch() gets called, we set pcpuarea->ent[cid].rsp0 (page 1)
418 const cpuid_t cid = cpu_index(ci); local in function:svs_rsp0_init
423 rsp0 = (vaddr_t)&pcpuarea->ent[cid].rsp0;
525 const cpuid_t cid = cpu_index(ci); local in function:cpu_svs_init
549 if (cid == cpu_index(&cpu_info_primary) || !idt_vec_is_pcpu())
552 svs_range_add(ci, (vaddr_t)&pcpuarea->ent[cid],
563 ci->ci_svs_ldt_sel = ldt_alloc(&pcpuarea->ent[cid].ldt
574 cpuid_t cid; local in function:svs_pmap_sync
    [all...]
x86_tlb.c 185 const cpuid_t cid = cpu_index(curcpu()); local in function:pmap_tlbstat_count
197 remote = kcpuset_isotherset(pm->pm_kernel_cpus, cid);
198 local = kcpuset_isset(pm->pm_kernel_cpus, cid);
200 remote |= kcpuset_isotherset(pm->pm_cpus, cid);
201 local |= kcpuset_isset(pm->pm_cpus, cid);
367 cpuid_t cid; local in function:pmap_tlb_shootnow
386 cid = cpu_index(ci);
388 local = kcpuset_isset(target, cid) ? 1 : 0;
  /src/sbin/nvmectl/
nvme.h 62 uint16_t cid; member in struct:nvme_error_information_entry
  /src/sys/arch/evbarm/stand/boot2440/
dev_sdmmc.c 130 struct sdmmc_cid cid; /* decoded CID value */ member in struct:sdmmc_softc
782 * Read the CSD and CID from all cards and assign each card a unique
809 DPRINTF(("Couldn't read CID\n"));
825 * Remember the CID returned in the CMD2 response for
857 * Read the CSDs and decode the raw CID for each card.
873 printf("CID: ");
874 sdmmc_print_cid(&sc->cid);
926 sdmmc_dump_data("CID", cmd.c_resp, sizeof(cmd.c_resp));
1100 struct sdmmc_cid *cid = &sc->cid local in function:sdmmc_decode_cid
    [all...]

Completed in 304 milliseconds

1 2