Lines Matching refs:region
205 * Copies data into a 1D region of this Allocation.
210 * The size of the region is: count * Element's size.
241 * Copies from an array into a rectangular region in this Allocation.
246 * The size of the region is: w * h * Element's size.
249 * @param xoff X offset of the region to update in this Allocation
250 * @param yoff Y offset of the region to update in this Allocation
253 * @param w Width of the region to update
254 * @param h Height of the region to update
266 * Copies from an array into a 3D region in this Allocation.
271 * The size of the region is: w * h * d * Element's size.
274 * @param xoff X offset of the region to update in this Allocation
275 * @param yoff Y offset of the region to update in this Allocation
276 * @param zoff Z offset of the region to update in this Allocation
278 * @param w Width of the region to update
279 * @param h Height of the region to update
280 * @param d Depth of the region to update
324 * Copies a 1D region of this Allocation into an array.
329 * The size of the region is: count * Element's size.
366 * Copies from a rectangular region in this Allocation to an array.
371 * The size of the region is: w * h * Element's size.
377 * @param xoff X offset of the region to copy in this array
378 * @param yoff Y offset of the region to copy in this array
381 * @param w Width of the region to copy
382 * @param h Height of the region to copy
395 * Copies from a rectangular cuboid region in this Allocation to an array.
400 * The size of the region is: w * h * d * Element's size.
406 * @param xoff X offset of the region to copy in this array
407 * @param yoff Y offset of the region to copy in this array
408 * @param zoff Z offset of the region to copy in this array
410 * @param w Width of the region to copy
411 * @param h Height of the region to copy
412 * @param d Depth of the region to copy
437 * null contents and the region is otherwise undefined")
445 * and the new region is otherwise undefined.
447 * If the new region is smaller, the references of any object outside the
448 * new region must be released.
462 * Copies a rectangular region from an Allocation into a rectangular region
466 * @param dstXoff X offset of the region to update
467 * @param dstYoff Y offset of the region to update
470 * @param width Width of the region to update
471 * @param height Height of the region to update
473 * @param srcXoff X offset of the region in the source Allocation
474 * @param srcYoff Y offset of the region in the source Allocation
487 * Copies a rectangular cuboid region into the allocation from another
491 * @param dstXoff X offset of the region to update
492 * @param dstYoff Y offset of the region to update
493 * @param dstZoff Z offset of the region to update
495 * @param width Width of the region to update
496 * @param height Height of the region to update
497 * @param depth Depth of the region to update
499 * @param srcXoff Source X offset of the region in the source Allocation
500 * @param srcYoff Source Y offset of the region in the source Allocation
501 * @param srcZoff Source Z offset of the region in the souce Allocation