Searched defs:length (Results 1 - 13 of 13) sorted by relevance

/solaris-x11-s12/open-src/kernel/drm/src/
H A Ddrm_pci.c196 int length; local
201 "assigned-addresses", (caddr_t)&regs, &length) !=
210 kmem_free(regs, (size_t)length);
H A Ddrm_edid.c987 * \param len : EDID data buffer length
1043 static bool drm_edid_is_zero(u8 *in_edid, int length) argument
1048 for (i = 0; i < length / 4; i++)
H A Ddrm_crtc.c2996 if (put_user(prop_blob->length, blob_length_ptr + copied)) {
3011 static struct drm_property_blob *drm_property_create_blob(struct drm_device *dev, int length, argument
3017 if (!length || !data)
3020 blob = kzalloc(sizeof(struct drm_property_blob)+length, GFP_KERNEL);
3026 kfree(blob, sizeof(struct drm_property_blob)+length);
3030 blob->length = length;
3032 (void) memcpy(blob->data, data, length);
3043 kfree(blob, sizeof(struct drm_property_blob) + blob->length);
3066 if (out_resp->length
[all...]
/solaris-x11-s12/open-src/lib/libX11/sun-src/src/
H A DXInteractive.c248 long length = 0; local
267 _XEatDataWords(dpy, rep.length);
272 length = rep.count << 2;
273 _XRead32(dpy, (long *)(*Pinfo), length);
290 unsigned long length; local
299 req->length += count;
302 length = count << 2;
303 Data32(dpy, (long *)Pinfo, length);
306 length = count << 2;
307 Data32(dpy, (long *)Pinfo, length);
[all...]
/solaris-x11-s12/open-src/proto/sun-ext-protos/include/
H A Dinteractive.h56 CARD16 length B16;
64 CARD32 length B32;
78 CARD16 length B16; /* Request length */
87 CARD16 length; /* Request length */ member in struct:_IAGetProcessInfo
96 CARD32 length B32;
/solaris-x11-s12/open-src/app/gfx-utils/sun-src/gfx_common/include/
H A Dgfx_common.h111 uint32_t length; /* length of the buffer. */ member in struct:gfx_edid
/solaris-x11-s12/open-src/lib/libXmu/sun-src/src/
H A DVisGamma.c220 ** Upon entry, pChar should point to the length element of the channel.
228 unsigned int nElements, length; local
233 length = _XcmsGetElement(format, pChar, pCount) + 1;
235 nElements = ((cType == 0) ? 2 : 1) * length;
370 * length
388 * length
405 * length
444 ** the same length. This is a safe bet for most hardware, as it depends
/solaris-x11-s12/open-src/xserver/xorg/sun-src/IA/
H A Dinteractive.c87 int length);
309 rep.length = 0;
322 register int length; local
333 length = stuff->length - (sizeof(xIASetProcessInfoReq)>>2);
334 SetClientPrivate(client, (ConnectionPidPtr)&stuff[1], length);
354 register int length = 0; local
360 rep.length = 0;
370 length = rep.count << 2;
371 rep.length
642 SetClientPrivate(ClientPtr client, ConnectionPidPtr stuff, int length) argument
[all...]
/solaris-x11-s12/open-src/app/installalias/sun-src/
H A Dinstallalias.c323 copyISOLatin1Lowered(char *dest, char *source, int length) argument
326 for (i = 0; i < length; i++, source++, dest++)
399 tmpName.length = namelen;
406 tmpName.length = strlen (lowerName);
446 tmpName.length = strlen (lowerName);
451 p = lowerName + tmpName.length;
466 tmpName.length = p - lowerName;
/solaris-x11-s12/open-src/kernel/i915/src/
H A Dintel_ringbuffer.c1121 u32 offset, u32 length,
1708 /* bit0-7 is the length on GEN6+ */
1729 /* bit0-7 is the length on GEN6+ */
1120 i965_dispatch_execbuffer(struct intel_ring_buffer *ring, u32 offset, u32 length, unsigned flags) argument
H A Di915_gem.c258 int length,
267 gpu_page + gpu_offset, length);
270 cpu_page + cpu_offset, length);
279 while (length > 0) {
281 int this_length = min(cacheline_end - gpu_offset, length);
295 length -= this_length;
254 slow_shmem_bit17_copy(caddr_t gpu_page, int gpu_offset, uint32_t *cpu_page, int cpu_offset, int length, int is_read) argument
H A Dintel_sdvo.c924 uint8_t *data, unsigned length)
943 if_index, length, hbuf_size);
947 if (i < length)
948 (void) memcpy(tmp, data + i, min(8, length - i));
922 intel_sdvo_write_infoframe(struct intel_sdvo *intel_sdvo, unsigned if_index, uint8_t tx_rate, uint8_t *data, unsigned length) argument
/solaris-x11-s12/open-src/kernel/sys/drm/
H A Ddrm_crtc.h285 unsigned int length; member in struct:drm_property_blob

Completed in 2418 milliseconds