/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/top/ |
nouveau_nvkm_subdev_top_base.c | 32 nvkm_top_device_new(struct nvkm_top *top) 43 list_add_tail(&info->head, &top->device); 51 struct nvkm_top *top = device->top; local in function:nvkm_top_addr 54 if (top) { 55 list_for_each_entry(info, &top->device, head) { 67 struct nvkm_top *top = device->top; local in function:nvkm_top_reset 70 if (top) { 71 list_for_each_entry(info, &top->device, head) 83 struct nvkm_top *top = device->top; local in function:nvkm_top_intr_mask 99 struct nvkm_top *top = device->top; local in function:nvkm_top_intr 122 struct nvkm_top *top = device->top; local in function:nvkm_top_fault_id 136 struct nvkm_top *top = device->top; local in function:nvkm_top_fault 150 struct nvkm_top *top = device->top; local in function:nvkm_top_engine 168 struct nvkm_top *top = nvkm_top(subdev); local in function:nvkm_top_oneinit 175 struct nvkm_top *top = nvkm_top(subdev); local in function:nvkm_top_dtor 196 struct nvkm_top *top; local in function:nvkm_top_new_ [all...] |
priv.h | 7 #include <subdev/top.h>
|
/src/sys/external/bsd/compiler_rt/dist/lib/ubsan/ |
ubsan_diag_standalone.cc | 23 uptr top = 0; local in function:__sanitizer_print_stack_trace 27 __sanitizer::GetThreadStackTopAndBottom(false, &top, &bottom); 32 stack.Unwind(kStackTraceMax, pc, bp, nullptr, top, bottom,
|
/src/lib/libcurses/ |
scroll.c | 70 * Set the top and bottom of the scrolling region for stdscr. 73 setscrreg(int top, int bottom) 76 return wsetscrreg(stdscr, top, bottom); 81 * Get the top and bottom of the scrolling region for stdscr. 84 getscrreg(int *top, int *bottom) 87 return wgetscrreg(stdscr, top, bottom); 128 * Set the top and bottom of the scrolling region for win. 131 wsetscrreg(WINDOW *win, int top, int bottom) 136 if (top < 0 || bottom >= win->maxy || bottom - top < 1 [all...] |
/src/common/lib/libc/gmon/ |
mcount.c | 134 struct tostruct *top, *prevtop; local in function:_MCOUNT_DECL 204 top = &p->tos[(size_t)toindex]; 205 top->selfpc = selfpc; 206 top->count = 1; 207 top->link = 0; 210 top = &p->tos[(size_t)toindex]; 211 if (top->selfpc == selfpc) { 215 top->count++; 220 * top points to what we are looking at, 221 * prevtop points to previous top 296 struct tostruct *top; local in function:_gmonparam_merge [all...] |
/src/usr.sbin/altq/altqstat/ |
qdisc_wfq.c | 68 struct wfqinfo *qinfo, **top; local in function:wfq_stat_loop 88 if ((top = malloc(ntop * sizeof(struct wfqinfo *))) == NULL) 102 top[j] = NULL; 125 if (top[j] == NULL) { 126 top[j] = &qinfo[i]; 129 if (top[j]->bps < qinfo[i].bps || 130 (top[j]->bps == qinfo[i].bps && 131 top[j]->stats.xmit_cnt.packets < 134 top[k] = top[k-1] [all...] |
/src/usr.bin/vgrind/ |
vgrind.sh | 47 top: 55 goto top 60 goto top 65 goto top 70 goto top 80 goto top 91 goto top 97 goto top 102 goto top
|
/src/usr.bin/xlint/lint1/ |
err.c | 478 struct include_level *top; local in function:update_location 480 top = includes; 481 if (is_begin && top != NULL) 482 top->lineno = curr_pos.p_line; 484 if (top == NULL || is_begin) { 485 top = xmalloc(sizeof(*top)); 486 top->filename = filename; 487 top->lineno = lineno; 488 top->by = includes 506 const struct include_level *top; local in function:print_stack_trace [all...] |
/src/sys/lib/libsa/ |
alloc.c | 146 static char *top, *heapstart, *heaplimit; variable in typeref:typename:char * 150 heapstart = top = start; 160 static char *top = (char *)HEAP_START; variable in typeref:typename:char * 194 help = top; 199 top += ALIGN(sizeof(unsigned int)) + ALIGN(size); 201 if (top > (char *)HEAP_LIMIT)
|
/src/sys/arch/sun68k/stand/libsa/ |
gets.c | 53 top: 105 goto top;
|
/src/sys/arch/amiga/dev/ |
ite_rh.c | 147 screen_up(struct ite_softc *ip, int top, int bottom, int lines) 151 if (top >= bottom) 154 if (top + lines >= bottom) { 155 RZ3AlphaErase(ip->grf, 0, top, bottom - top, ip->cols); 159 RZ3AlphaCopy(ip->grf, 0, top+lines, 0, top, ip->cols, bottom-top-lines+1); 165 screen_down (struct ite_softc *ip, int top, int bottom, int lines) 169 if (top >= bottom [all...] |
ite_rt.c | 146 screen_up(struct ite_softc *ip, int top, int bottom, int lines) 153 if (top >= bottom) 156 if (top + lines >= bottom) 158 retina_clear (ip, top, 0, bottom - top, ip->cols); 185 /* write to line TOP */ 186 long toploc = top * (md->TX / 16); 191 /* read from line TOP + LINES */ 192 long fromloc = (top+lines) * (md->TX / 16); 199 short x = (1 + bottom - (top + lines)) * (md->TX / 16) - 1 [all...] |
ite_ul.c | 300 static void screen_up(struct ite_softc *ip, int top, int bottom, int lines) 309 printf("screen_up %d %d %d ->",top,bottom,lines); 313 if (top >= bottom) 316 if (top + lines >= bottom) 318 ulowell_clear (ip, top, 0, bottom - top, ip->cols); 324 cmd[2] = top * ip->ftheight; /* y */ 326 cmd[4] = (bottom-top+1) * ip->ftheight; /* h */ 328 cmd[6] = (top-lines) * ip->ftheight; /* dst y */ 334 static void screen_down(struct ite_softc *ip, int top, int bottom, int lines [all...] |
/src/sys/altq/ |
altq_cdnr.c | 129 * top level input function called from ip_input. 137 struct top_cdnr *top; local in function:altq_cdnr_input 147 top = ifp->if_snd.altq_cdnr; 163 cb = acc_classify(&top->tc_classifier, m, af); 168 tca = &top->tc_block.cb_action; 171 PKTCNTR_ADD(&top->tc_cnts[tca->tca_code], pktinfo.pkt_len); 210 struct top_cdnr *top; local in function:tcb_lookup 214 LIST_FOREACH(top, &tcb_list, tc_next) 215 if (top->tc_ifq->altq_ifp == ifp) 216 return top; 410 struct top_cdnr *top; local in function:top_create 839 struct top_cdnr *top; local in function:cdnrcmd_if_attach 855 struct top_cdnr *top; local in function:cdnrcmd_if_detach 866 struct top_cdnr *top; local in function:cdnrcmd_add_element 883 struct top_cdnr *top; local in function:cdnrcmd_delete_element 901 struct top_cdnr *top; local in function:cdnrcmd_add_filter 917 struct top_cdnr *top; local in function:cdnrcmd_delete_filter 928 struct top_cdnr *top; local in function:cdnrcmd_add_tbm 972 struct top_cdnr *top; local in function:cdnrcmd_add_trtcm 1032 struct top_cdnr *top; local in function:cdnrcmd_add_tswtcm 1077 struct top_cdnr *top; local in function:cdnrcmd_get_stats 1165 struct top_cdnr *top; local in function:cdnrclose 1183 struct top_cdnr *top; local in function:cdnrioctl [all...] |
/src/sys/arch/powerpc/fpu/ |
fpu_subr.c | 139 u_int m0, m1, m2, m3, top, sup, nrm; local in function:fpu_norm 170 for (rsh = 1, top = m0 >> 1; top >= sup; rsh++) /* XXX slow */ 171 top >>= 1; 177 m0 = top; 183 for (lsh = 1, top = m0 << 1; top < nrm; lsh++) /* XXX slow */ 184 top <<= 1; 187 m0 = top | (m1 >> rsh);
|
/src/sys/arch/sparc/fpu/ |
fpu_subr.c | 145 u_int m0, m1, m2, m3, top, sup, nrm; local in function:fpu_norm 176 for (rsh = 1, top = m0 >> 1; top >= sup; rsh++) /* XXX slow */ 177 top >>= 1; 183 m0 = top; 189 for (lsh = 1, top = m0 << 1; top < nrm; lsh++) /* XXX slow */ 190 top <<= 1; 193 m0 = top | (m1 >> rsh);
|
/src/lib/libc/db/btree/ |
bt_conv.c | 65 indx_t i, top; local in function:__bt_pgin 85 top = NEXTINDEX(h); 87 for (i = 0; i < top; i++) { 102 for (i = 0; i < top; i++) { 132 indx_t i, top; local in function:__bt_pgout 145 top = NEXTINDEX(h); 147 for (i = 0; i < top; i++) { 162 for (i = 0; i < top; i++) {
|
/src/sys/arch/vax/include/ |
qevent.h | 112 short top; member in struct:_vs_box
|
/src/sys/dev/qbus/ |
qevent.h | 112 short top; member in struct:_vs_box
|
/src/sys/external/bsd/drm2/dist/drm/qxl/ |
qxl_draw.c | 95 drawable->self_bitmap_area.top = 0; 142 int left, right, top, bottom; local in function:qxl_draw_dirty_fb 165 top = clips->y1; 173 top = min_t(int, top, (int)clips_ptr->y1); 178 height = bottom - top; 197 drawable_rect.top = top; 211 top, width, height, depth, stride); 226 drawable->u.copy.src_area.top = 0 [all...] |
/src/lib/libc/db/recno/ |
rec_get.c | 121 __rec_fpipe(BTREE *t, recno_t top) 139 for (nrec = t->bt_nrecs; nrec < top;) { 156 if (nrec < top) { 174 __rec_vpipe(BTREE *t, recno_t top) 183 for (nrec = t->bt_nrecs; nrec < top; ++nrec) { 210 if (nrec < top) { 228 __rec_fmap(BTREE *t, recno_t top) 247 for (nrec = t->bt_nrecs; nrec < top; ++nrec) { 275 __rec_vmap(BTREE *t, recno_t top) 286 for (nrec = t->bt_nrecs; nrec < top; ++nrec) [all...] |
rec_search.c | 74 indx_t top; local in function:__rec_search 87 for (idx = 0, top = NEXTINDEX(h);;) { 89 if (++idx == top || total + r->nrecs > recno)
|
/src/sys/external/bsd/drm2/dist/drm/amd/display/dmub/src/ |
amdgpu_dmub_srv.c | 228 inst->top = inst->base + params->inst_const_size; 230 data->base = dmub_align(inst->top, 256); 231 data->top = data->base + params->bss_data_size; 238 stack->base = dmub_align(data->top, 256); 239 stack->top = stack->base + DMUB_STACK_SIZE + DMUB_CONTEXT_SIZE; 241 bios->base = dmub_align(stack->top, 256); 242 bios->top = bios->base + params->vbios_size; 244 mail->base = dmub_align(bios->top, 256); 245 mail->top = mail->base + DMUB_MAILBOX_SIZE; 255 trace_buff->base = dmub_align(mail->top, 256) [all...] |
/src/lib/libc/gmon/ |
gmon.c | 267 struct tostruct *top; local in function:_m_gmon_merge_two 290 top = &p->tos[(size_t)toindex]; 291 top->selfpc = selfpc; 292 top->count = count; 293 top->link = 0; 296 top = &p->tos[(size_t)toindex]; 297 if (top->selfpc == selfpc) { 301 top->count+= count; 306 * top points to what we are looking at, 310 if (top->link == 0) [all...] |
/src/sys/coda/ |
coda_venus.c | 157 #define CNV_VV2V_ATTR(top, fromp) \ 159 (top)->va_type = (fromp)->va_type; \ 160 (top)->va_mode = (fromp)->va_mode; \ 161 (top)->va_nlink = (fromp)->va_nlink; \ 162 (top)->va_uid = (fromp)->va_uid; \ 163 (top)->va_gid = (fromp)->va_gid; \ 164 (top)->va_fsid = VNOVAL; \ 165 (top)->va_fileid = (fromp)->va_fileid; \ 166 (top)->va_size = (fromp)->va_size; \ 167 (top)->va_blocksize = (fromp)->va_blocksize; [all...] |