HomeSort by: relevance | last modified time | path
    Searched defs:pcs (Results 1 - 21 of 21) sorted by relevancy

  /src/tests/usr.bin/xlint/lint1/
gcc_attribute.c 42 * There is an attribute called 'pcs', but that attribute must not prevent an
52 int pcs = 3; local
53 return pcs;
  /src/tests/lib/libc/locale/
t_wctomb.c 108 const char *pcs; local
134 pcs = t->data;
135 sz = mbsrtowcs(wcs, &pcs, t->wclen + 2, NULL);
  /src/sys/dev/isa/
pcdisplay.c 57 struct pcdisplayscreen pcs; member in struct:pcdisplay_config
202 dc->pcs.hdl = ph;
203 dc->pcs.type = &pcdisplay_scr;
204 dc->pcs.active = 1;
205 dc->pcs.mem = NULL;
214 dc->pcs.dispoffset = 0;
216 dc->pcs.cursorrow = cpos / pcdisplay_scr.ncols;
217 dc->pcs.cursorcol = cpos % pcdisplay_scr.ncols;
218 pcdisplay_cursor_init(&dc->pcs, 1);
351 pcdisplay_console_dc.pcs.cursorcol
    [all...]
ega.c 66 struct pcdisplayscreen pcs; member in struct:egascreen
289 const struct wsscreen_descr *type = scr->pcs.type;
342 scr->pcs.hdl = (struct pcdisplay_handle *)&vc->hdl;
343 scr->pcs.type = type;
344 scr->pcs.active = 0;
356 scr->pcs.dispoffset = vga_6845_read(&vc->hdl, startadrh) << 9;
357 scr->pcs.dispoffset |= vga_6845_read(&vc->hdl, startadrl) << 1;
360 if (scr->pcs.dispoffset < scr->mindispoffset ||
361 scr->pcs.dispoffset > scr->maxdispoffset)
362 scr->pcs.dispoffset = scr->mindispoffset
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_coverage_libcdep_new.cc 49 const uptr* pcs, uptr len) {
53 WriteToFile(fd, pcs, len * sizeof(*pcs));
55 Printf("SanitizerCoverage: %s: %zd PCs written\n", file_path, len);
63 uptr* pcs = static_cast<uptr*>(InternalAlloc(len * sizeof(uptr))); local
65 internal_memcpy(pcs, unsorted_pcs, len * sizeof(uptr));
66 Sort(pcs, len);
73 const uptr pc = pcs[i];
76 if (!__sanitizer_get_module_and_offset_for_pc(pc, nullptr, 0, &pcs[i])) {
80 uptr module_base = pc - pcs[i]
    [all...]
  /src/sys/arch/vax/boot/boot/
boot.c 253 #define PCS_PCSADDR (PCS_PATCHADDR+0x8000) /* start addr of pcs */
255 #define PCS_ENABLE 0xfff00000 /* enable bits for pcs */
271 char pcs[100]; local
281 memcpy(pcs, line, 99);
282 pcs[99] = 0;
286 strcpy(pcs + i, "pcs750.bin");
287 i = open(pcs, 0);
299 printf("Error reading %s\n", pcs);
317 * Load PCS microcode 20 bits at a time.
334 * Enable PCS
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_coverage_libcdep_new.cpp 50 const uptr* pcs, uptr len) {
54 WriteToFile(fd, pcs, len * sizeof(*pcs));
56 Printf("SanitizerCoverage: %s: %zd PCs written\n", file_path, len);
64 uptr* pcs = static_cast<uptr*>(InternalAlloc(len * sizeof(uptr))); local
66 internal_memcpy(pcs, unsorted_pcs, len * sizeof(uptr));
67 Sort(pcs, len);
74 const uptr pc = pcs[i];
77 if (!GetModuleAndOffsetForPc(pc, nullptr, 0, &pcs[i])) {
81 uptr module_base = pc - pcs[i]
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_coverage_libcdep_new.cpp 48 const uptr* pcs, uptr len) {
52 WriteToFile(fd, pcs, len * sizeof(*pcs));
54 Printf("SanitizerCoverage: %s: %zd PCs written\n", file_path, len);
62 uptr* pcs = static_cast<uptr*>(InternalAlloc(len * sizeof(uptr))); local
64 internal_memcpy(pcs, unsorted_pcs, len * sizeof(uptr));
65 Sort(pcs, len);
72 const uptr pc = pcs[i];
75 if (!__sanitizer_get_module_and_offset_for_pc(pc, nullptr, 0, &pcs[i])) {
79 uptr module_base = pc - pcs[i]
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/python/
py-linetable.c 117 A line table entry can have multiple PCs for a given source line.
119 from the line table PCS. Construct one line table entry object per
123 build_line_table_tuple_from_pcs (int line, const std::vector<CORE_ADDR> &pcs)
127 if (pcs.size () < 1)
130 gdbpy_ref<> tuple (PyTuple_New (pcs.size ()));
135 for (i = 0; i < pcs.size (); ++i)
137 CORE_ADDR pc = pcs[i];
159 std::vector<CORE_ADDR> pcs; local
168 pcs = find_pcs_for_symtab_line (symtab, py_line, &best_entry);
175 return build_line_table_tuple_from_pcs (py_line, pcs);
    [all...]
  /src/external/gpl3/gdb/dist/gdb/python/
py-linetable.c 117 A line table entry can have multiple PCs for a given source line.
119 from the line table PCS. Construct one line table entry object per
123 build_line_table_tuple_from_pcs (int line, const std::vector<CORE_ADDR> &pcs)
127 if (pcs.size () < 1)
130 gdbpy_ref<> tuple (PyTuple_New (pcs.size ()));
135 for (i = 0; i < pcs.size (); ++i)
137 CORE_ADDR pc = pcs[i];
159 std::vector<CORE_ADDR> pcs; local
168 pcs = find_pcs_for_symtab_line (symtab, py_line, &best_entry);
175 return build_line_table_tuple_from_pcs (py_line, pcs);
    [all...]
  /src/sys/dev/ic/
vga.c 96 struct pcdisplayscreen pcs; member in struct:vgascreen
332 8, scr->pcs.type->fontheight, 0, WSFONT_FIND_BITMAP) &&
343 cookie = wsfont_find(name, 8, scr->pcs.type->fontheight, 0,
405 const struct wsscreen_descr *type = scr->pcs.type;
448 scr->pcs.hdl = (struct pcdisplay_handle *)&vc->hdl;
449 scr->pcs.type = type;
450 scr->pcs.active = existing;
467 scr->pcs.dispoffset = vga_6845_read(&vc->hdl, startadrh) << 9;
468 scr->pcs.dispoffset |= vga_6845_read(&vc->hdl, startadrl) << 1;
471 if (scr->pcs.dispoffset < scr->mindispoffset |
    [all...]
  /src/sys/dev/pci/
if_cas.c 180 #define CAS_PHY_TYPE_PCS "pcs"
225 bool pcs[4] = {false, false, false, false}; local
337 /* ...named "pcs". */
357 pcs[phy] = true;
383 if (pcs[pa->pa_device])
657 * Try the external PCS SERDES if we didn't find any
1770 bus_space_handle_t pcs = sc->sc_memh; local
1800 *val = bus_space_read_4(t, pcs, reg) & 0xffff;
1809 bus_space_handle_t pcs = sc->sc_memh; local
1822 bus_space_write_4(t, pcs, CAS_MII_CONFIG, 0)
    [all...]
isp_pci.c 485 struct isp_pcisoftc *pcs = device_private(self); local
486 struct ispsoftc *isp = &pcs->pci_isp;
527 pcs->pci_st = st;
528 pcs->pci_sh = sh;
529 pcs->pci_pc = pa->pa_pc;
530 pcs->pci_tag = pa->pa_tag;
531 pcs->pci_poff[BIU_BLOCK >> _BLK_REG_SHFT] = BIU_REGS_OFF;
532 pcs->pci_poff[MBOX_BLOCK >> _BLK_REG_SHFT] = PCI_MBOX_REGS_OFF;
533 pcs->pci_poff[SXP_BLOCK >> _BLK_REG_SHFT] = PCI_SXP_REGS_OFF;
534 pcs->pci_poff[RISC_BLOCK >> _BLK_REG_SHFT] = PCI_RISC_REGS_OFF
809 struct isp_pcisoftc *pcs = (struct isp_pcisoftc *) isp; local
833 struct isp_pcisoftc *pcs = (struct isp_pcisoftc *) isp; local
872 struct isp_pcisoftc *pcs = (struct isp_pcisoftc *) isp; local
927 struct isp_pcisoftc *pcs = (struct isp_pcisoftc *) isp; local
963 struct isp_pcisoftc *pcs = (struct isp_pcisoftc *) isp; local
1025 struct isp_pcisoftc *pcs = (struct isp_pcisoftc *) isp; local
1083 struct isp_pcisoftc *pcs = (struct isp_pcisoftc *) isp; local
1104 struct isp_pcisoftc *pcs = (struct isp_pcisoftc *) isp; local
1126 struct isp_pcisoftc *pcs = (struct isp_pcisoftc *) isp; local
1155 struct isp_pcisoftc *pcs = (struct isp_pcisoftc *) isp; local
1185 struct isp_pcisoftc *pcs = (struct isp_pcisoftc *)isp; local
1325 struct isp_pcisoftc *pcs = (struct isp_pcisoftc *)isp; local
1413 struct isp_pcisoftc *pcs = (struct isp_pcisoftc *)isp; local
1449 struct isp_pcisoftc *pcs = (struct isp_pcisoftc *)isp; local
    [all...]
yds.c 403 size_t pcs, rcs, ecs, ws, memsize; local
412 pcs = YREAD4(sc, YDS_PLAY_CTRLSIZE) * sizeof(uint32_t);
418 DPRINTF(("play control size : %d\n", (unsigned int)pcs));
426 if (pcs != sizeof(struct play_slot_ctrl_bank)) {
428 (unsigned int)pcs,
437 memsize = N_PLAY_SLOTS*N_PLAY_SLOT_CTRL_BANK*pcs +
486 cb += pcs;
489 cb += pcs;
  /src/external/gpl3/binutils/dist/gprofng/src/
CallStack.cc 238 Vector<Histable*> *pcs = getStackPCs (nat_stack); local
245 for (btm = 0; btm < pcs->size (); btm++)
247 hist = pcs->fetch (btm);
268 top = pcs->size () - 1;
277 for (top = pcs->size () - 1; top >= 0; top--)
279 hist = pcs->fetch (top);
288 top = pcs->size () - 1;
293 top = pcs->size () - 1;
299 if (pcs->fetch (top) != ppcs->fetch (ptop))
310 hist = (DbeInstr*) pcs->fetch (i)
    [all...]
  /src/external/gpl3/binutils.old/dist/gprofng/src/
CallStack.cc 238 Vector<Histable*> *pcs = getStackPCs (nat_stack); local
245 for (btm = 0; btm < pcs->size (); btm++)
247 hist = pcs->fetch (btm);
268 top = pcs->size () - 1;
277 for (top = pcs->size () - 1; top >= 0; top--)
279 hist = pcs->fetch (top);
288 top = pcs->size () - 1;
293 top = pcs->size () - 1;
299 if (pcs->fetch (top) != ppcs->fetch (ptop))
310 hist = (DbeInstr*) pcs->fetch (i)
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
printcmd.c 805 /* The vector PCS is used to store instruction addresses within local
808 std::vector<CORE_ADDR> pcs;
823 pcs.clear ();
845 pcs.push_back (p);
849 inst_count -= pcs.size ();
850 *inst_read += pcs.size ();
854 /* After the loop, the vector PCS has instruction addresses of the last
873 The case when the length of PCS is 0 means that we reached an area for
876 p = pcs.size () > 0 ? pcs[-inst_count] : loop_start
    [all...]
linespec.c 2089 above, we see if there are other PCs that are in the same
2090 block. If yes, the other PCs are filtered out. */
4048 std::vector<CORE_ADDR> pcs;
4056 pcs = find_pcs_for_symtab_line (elt, line, best_entry);
4057 for (CORE_ADDR pc : pcs)
4042 std::vector<CORE_ADDR> pcs; local
  /src/external/gpl3/gdb/dist/gdb/
printcmd.c 803 /* The vector PCS is used to store instruction addresses within local
806 std::vector<CORE_ADDR> pcs;
821 pcs.clear ();
843 pcs.push_back (p);
847 inst_count -= pcs.size ();
848 *inst_read += pcs.size ();
852 /* After the loop, the vector PCS has instruction addresses of the last
871 The case when the length of PCS is 0 means that we reached an area for
874 p = pcs.size () > 0 ? pcs[-inst_count] : loop_start
    [all...]
linespec.c 2075 above, we see if there are other PCs that are in the same
2076 block. If yes, the other PCs are filtered out. */
3998 std::vector<CORE_ADDR> pcs;
4006 pcs = find_pcs_for_symtab_line (elt, line, best_entry);
4007 for (CORE_ADDR pc : pcs)
3992 std::vector<CORE_ADDR> pcs; local
  /src/sys/arch/alpha/include/
rpb.h 214 uint64_t rpb_pcs_size; /* 98; pcs size in bytes */
215 u_long rpb_pcs_off; /* A0: offset to pcs info */
238 #define LOCATE_PCS(h,cpunumber) ((struct pcs *) \
242 * PCS: Per-CPU information.
244 struct pcs { struct

Completed in 80 milliseconds