Searched defs:total (Results 1 - 16 of 16) sorted by relevance

/solaris-x11-s11/open-src/app/gfx-utils/sun-src/fbconf_xorg/fbc/
H A Dfbc_mode_list.c59 long total; /* Total pixels */ local
80 total = (long)new_mode_ptr->ml_htotal * new_mode_ptr->ml_vtotal;
81 if (total <= 0) {
84 new_frequency = (long)new_mode_ptr->ml_clock * 1000 / total;
109 total = (long)mode_ptr->ml_htotal * mode_ptr->ml_vtotal;
110 frequency = (long)mode_ptr->ml_clock * 1000 / total;
/solaris-x11-s11/open-src/kernel/drm/src/
H A Ddrm_fops.c439 size_t total, size_t max, struct drm_pending_event **out)
453 if (e->event->length + total > max)
469 size_t total; local
479 total = 0;
480 while (drm_dequeue_event(file_priv, total, uiop->uio_iov->iov_len, &e)) {
486 total += e->event->length;
490 return total;
438 drm_dequeue_event(struct drm_file *file_priv, size_t total, size_t max, struct drm_pending_event **out) argument
H A Ddrm_bufs.c550 int total; local
565 total = PAGE_SIZE << page_order;
576 DRM_DEBUG("total: %d\n", total);
619 buf->total = alignment;
701 int total; local
722 total = PAGE_SIZE << page_order;
733 DRM_DEBUG("total: %d\n", total);
777 buf->total
[all...]
H A Ddrm_mm.c723 unsigned long total_used = 0, total_free = 0, total = 0; local
734 total = total_free + total_used;
736 DRM_DEBUG("%s total: %lu, used %lu free %lu\n", prefix, total,
/solaris-x11-s11/open-src/lib/libXaw4/sun-src/
H A DXaw3_1Viewport.c364 static void SetBar(w, top, length, total)
367 Dimension length, total;
369 XawScrollbarSetThumb(w, (float) top / total, (float) length / total ); local
/solaris-x11-s11/open-src/kernel/i915/src/
H A Dintel_bios.c48 u16 total, current_size; local
53 total = bdb->bdb_size;
56 while (index < total) {
H A Di915_gem_execbuffer.c507 int i, total, ret; local
520 total = 0;
522 total += exec[i].relocation_count;
525 reloc = drm_calloc(total, sizeof(*reloc), DRM_MEM_DRIVER);
527 drm_free(reloc, total * sizeof(*reloc), DRM_MEM_DRIVER);
533 total = 0;
539 if (copy_from_user(reloc+total, user_relocs,
546 reloc_offset[i] = total;
547 total += exec[i].relocation_count;
595 drm_free(reloc, total * sizeo
[all...]
/solaris-x11-s11/open-src/kernel/efb/src/
H A Ddrm_io32.h86 int total; /* Buffer size */ member in struct:drm_buf_pub_32
H A Ddrm.h470 int total; /**< Buffer size */ member in struct:drm_buf_pub
859 * type defines the type of event, the length specifies the total
H A DdrmP.h332 int total; /* Buffer size */ member in struct:drm_buf
333 int order; /* log-base-2(total) */
/solaris-x11-s11/open-src/kernel/sys/drm/
H A Ddrm_io32.h103 int total; /* Buffer size */ member in struct:drm_buf_pub_32
H A Ddrm.h382 int total; /**< Buffer size */ member in struct:drm_buf_pub
819 * type defines the type of event, the length specifies the total
H A DdrmP.h476 int total; /* Buffer size */ member in struct:drm_buf
477 int order; /* log-base-2(total) */
680 int buf_count; /**< total number of buffers */
/solaris-x11-s11/open-src/lib/DPS/sun-src/libdps/
H A Dcslibint.c522 long total = dpybufsize + size + padsize; local
523 long todo = total;
537 while (total) {
539 long remain = todo; /* amount to try this time, <= total */
577 total -= len;
578 todo = total;
1755 int i, len, total; local
1759 for (i=0, total=0; i<iovcnt; i++, iov++) {
1765 if (nbytes < 0 && total == 0) return -1;
1766 if (nbytes <= 0) return total;
[all...]
H A DdpsXcmu.c1398 int total; local
1403 if (map->blue_max == 0 || vinfo->class == DirectColor) total = 2;
1404 else total = 8;
1408 while (total <= top) {
1409 mid = total + ((top - total + 1) / 2);
1418 total = mid;
/solaris-x11-s11/open-src/lib/DPS/sun-src/libdpstk/
H A DFontCreato.c242 float total; local
260 /* Force b[0] to be 1 - total(b[1..n]) to avoid round-off error */
262 total = 0.0;
269 total += b[i];
271 b[0] = 1.0 - total;

Completed in 76 milliseconds