Searched refs:update (Results 1 - 25 of 178) sorted by relevance

12345678

/src/sys/external/bsd/drm2/dist/drm/amd/display/dc/core/
H A Damdgpu_dc_debug.c191 const struct dc_surface_update *update = &updates[i]; local in function:update_surface_trace
194 if (update->flip_addr) {
199 update->flip_addr->address.type,
200 update->flip_addr->address.grph.addr.quad_part,
201 update->flip_addr->address.grph.meta_addr.quad_part,
202 update->flip_addr->flip_immediate);
205 if (update->plane_info) {
216 update->plane_info->color_space,
217 update->plane_info->format,
218 update
[all...]
/src/tests/kernel/
H A Dt_ps_strings.sh68 atf_test_case update
84 atf_add_test_case update
/src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv50/
H A Dnouveau_dispnv50_core907d.c35 .update = core507d_update,
H A Dnouveau_dispnv50_core917d.c35 .update = core507d_update,
H A Dnouveau_dispnv50_core827d.c35 .update = core507d_update,
H A Dnouveau_dispnv50_cursc37a.c46 .update = cursc37a_update,
/src/usr.bin/systat/
H A Dicmp.c57 enum update { enum
63 static enum update update = UPDATE_TIME; variable in typeref:enum:update
183 if (update == UPDATE_TIME)
192 update = UPDATE_BOOT;
199 if (update != UPDATE_RUN) {
201 update = UPDATE_RUN;
209 if (update != UPDATE_TIME) {
211 update = UPDATE_TIME;
219 if (update
[all...]
H A Dip6.c53 enum update { enum
59 static enum update update = UPDATE_TIME; variable in typeref:enum:update
197 if (update == UPDATE_TIME)
206 update = UPDATE_BOOT;
213 if (update != UPDATE_RUN) {
215 update = UPDATE_RUN;
223 if (update != UPDATE_TIME) {
225 update = UPDATE_TIME;
233 if (update
[all...]
H A Dtcp.c56 enum update { enum
62 static enum update update = UPDATE_TIME; variable in typeref:enum:update
226 if (update == UPDATE_TIME)
235 update = UPDATE_BOOT;
242 if (update != UPDATE_RUN) {
244 update = UPDATE_RUN;
252 if (update != UPDATE_TIME) {
254 update = UPDATE_TIME;
262 if (update
[all...]
H A Dip.c60 enum update { enum
66 static enum update update = UPDATE_TIME; variable in typeref:enum:update
231 if (update == UPDATE_TIME)
240 update = UPDATE_BOOT;
247 if (update != UPDATE_RUN) {
249 update = UPDATE_RUN;
257 if (update != UPDATE_TIME) {
259 update = UPDATE_TIME;
267 if (update
[all...]
/src/sys/arch/usermode/usermode/
H A Dthunk.c1203 thunk_rfb_update_t *update; local in function:thunk_rfb_send_pending
1213 /* If we have too many updates queued, just send a single update */
1214 if (rfb->nupdates >= __arraycount(rfb->update)) {
1216 rfb->update[0].enc = THUNK_RFB_TYPE_RAW;
1217 rfb->update[0].x = 0;
1218 rfb->update[0].y = 0;
1219 rfb->update[0].w = rfb->width;
1220 rfb->update[0].h = rfb->height;
1240 update = &rfb->update[
1516 thunk_rfb_update_t *update = NULL; local in function:thunk_rfb_update
1557 thunk_rfb_update_t *update = NULL; local in function:thunk_rfb_copyrect
1584 thunk_rfb_update_t *update = NULL; local in function:thunk_rfb_fillrect
[all...]
/src/sys/external/bsd/drm2/dist/drm/nouveau/
H A Dnouveau_crtc.h62 void (*hide)(struct nouveau_crtc *, bool update);
63 void (*show)(struct nouveau_crtc *, bool update);
/src/sys/external/bsd/drm/dist/bsd-core/
H A Ddrm_drawable.c123 struct drm_update_draw *update = (struct drm_update_draw *)data; local in function:drm_update_draw
126 info = drm_get_drawable_info(dev, update->handle);
130 switch (update->type) {
133 if (update->num != info->num_rects) {
139 if (update->num == 0) {
145 update->num, DRM_MEM_DRAWABLE, M_NOWAIT);
150 info->num_rects = update->num;
153 ret = copyin((void *)(intptr_t)update->data, info->rects,
/src/usr.sbin/rtadvd/
H A Dtimer.h42 void (*update)(void *, struct timespec *); /* update function */ member in struct:rtadvd_timer
H A Dtimer.c62 void (*update) (void *, struct timespec *),
77 newtimer->update = update;
108 /* update the next expiration time */
118 * call the expire function for the timer and update the timer.
137 if (tm->update)
138 (*tm->update)(tm->update_data, &tm->tm);
/src/share/misc/
H A DMakefile27 update-domains:
31 echo '# Last update:' `date` ; \
40 update-na.phone:
43 update-country:
/src/lib/libc/hash/
H A Dhmac.c54 void (*update)(void *, const uint8_t *, unsigned int); member in struct:hmac
133 (*h->update)(c, k, (unsigned int)klen);
151 (*h->update)(c, ipad, (unsigned int)h->blocksize);
152 (*h->update)(c, text, (unsigned int)tlen);
156 (*h->update)(c, opad, (unsigned int)h->blocksize);
157 (*h->update)(c, digest, (unsigned int)h->digsize);
/src/tools/binstall/
H A Dmkmanifest6 *instal*|*patch*|*update*|*setup*)
/src/lib/libc/arch/sparc/sys/
H A Dsbrk.S74 retl ! and update curbrk
87 retl ! and update curbrk
/src/games/atc/
H A Dlex.l66 update { return(UpdateOp); }
/src/sys/external/bsd/drm2/dist/drm/vmwgfx/
H A Dvmwgfx_stdu.c59 * struct vmw_stdu_dirty - closure structure for the update functions
266 struct vmw_stdu_update *update = cmd; local in function:vmw_stdu_populate_update
268 update->header.id = SVGA_3D_CMD_UPDATE_GB_SCREENTARGET;
269 update->header.size = sizeof(update->body);
271 update->body.stid = unit;
272 update->body.rect.x = left;
273 update->body.rect.y = top;
274 update->body.rect.w = right - left;
275 update
798 struct vmw_stdu_update *update; local in function:vmw_kms_stdu_surface_fifo_commit
1189 vmw_stdu_bo_fifo_size(struct vmw_du_update_plane * update,uint32_t num_hits) argument
1197 vmw_stdu_bo_fifo_size_cpu(struct vmw_du_update_plane * update,uint32_t num_hits) argument
1204 vmw_stdu_bo_populate_dma(struct vmw_du_update_plane * update,void * cmd,uint32_t num_hits) argument
1228 vmw_stdu_bo_populate_clip(struct vmw_du_update_plane * update,void * cmd,struct drm_rect * clip,uint32_t fb_x,uint32_t fb_y) argument
1247 vmw_stdu_bo_populate_update(struct vmw_du_update_plane * update,void * cmd,struct drm_rect * bb) argument
1266 vmw_stdu_bo_pre_clip_cpu(struct vmw_du_update_plane * update,void * cmd,uint32_t num_hits) argument
1278 vmw_stdu_bo_clip_cpu(struct vmw_du_update_plane * update,void * cmd,struct drm_rect * clip,uint32_t fb_x,uint32_t fb_y) argument
1292 vmw_stdu_bo_populate_update_cpu(struct vmw_du_update_plane * update,void * cmd,struct drm_rect * bb) argument
1406 vmw_stdu_surface_fifo_size_same_display(struct vmw_du_update_plane * update,uint32_t num_hits) argument
1422 vmw_stdu_surface_fifo_size(struct vmw_du_update_plane * update,uint32_t num_hits) argument
1440 vmw_stdu_surface_update_proxy(struct vmw_du_update_plane * update,void * cmd) argument
1481 vmw_stdu_surface_populate_copy(struct vmw_du_update_plane * update,void * cmd,uint32_t num_hits) argument
1501 vmw_stdu_surface_populate_clip(struct vmw_du_update_plane * update,void * cmd,struct drm_rect * clip,uint32_t fb_x,uint32_t fb_y) argument
1521 vmw_stdu_surface_populate_update(struct vmw_du_update_plane * update,void * cmd,struct drm_rect * bb) argument
[all...]
/src/lib/libwrap/
H A DMakefile9 update.c misc.c diag.c expandm.c
/src/sys/dtb/
H A DMakefile30 update-sets:
35 echo '# Generated by "make update-sets" in sys/dtb'; \
/src/tests/usr.bin/xlint/lint2/
H A DMakefile35 cvs update "$$mi"; \
/src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv04/
H A Dnouveau_dispnv04_cursor.c14 nv04_cursor_show(struct nouveau_crtc *nv_crtc, bool update) argument
20 nv04_cursor_hide(struct nouveau_crtc *nv_crtc, bool update) argument

Completed in 24 milliseconds

12345678