Lines Matching refs:sizeInBytes
208 int sizeInBytes, totalSize, err; in ProcChangeProperty() local
228 sizeInBytes = format >> 3; in ProcChangeProperty()
229 totalSize = len * sizeInBytes; in ProcChangeProperty()
260 int sizeInBytes, totalSize, rc; in dixChangeWindowProperty() local
264 sizeInBytes = format >> 3; in dixChangeWindowProperty()
265 totalSize = len * sizeInBytes; in dixChangeWindowProperty()
327 data = xallocarray(pProp->size + len, sizeInBytes); in dixChangeWindowProperty()
330 memcpy(data, pProp->data, pProp->size * sizeInBytes); in dixChangeWindowProperty()
331 memcpy(data + pProp->size * sizeInBytes, value, totalSize); in dixChangeWindowProperty()
336 data = xallocarray(len + pProp->size, sizeInBytes); in dixChangeWindowProperty()
339 memcpy(data + totalSize, pProp->data, pProp->size * sizeInBytes); in dixChangeWindowProperty()