HomeSort by relevance Sort by last modified time
    Searched refs:ALLOCATION (Results 1 - 25 of 25) sorted by null

  /external/icu/icu4c/source/tools/genrb/
ustr.c 29 #define ALLOCATION(minSize) (minSize < 0x80 ? 0x80 : (2 * minSize + 0x80) & ~(0x80 - 1))
49 ustr_resize(s, ALLOCATION(length), status);
88 ustr_resize(dst, ALLOCATION(src->fLength), status);
109 ustr_resize(s, ALLOCATION(len), status);
136 ustr_resize(dst, ALLOCATION(dst->fLength + n), status);
156 ustr_resize(dst, ALLOCATION(dst->fLength + 1), status);
188 ustr_resize(dst, ALLOCATION(dst->fLength + len), status);
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
Transform.java 55 Allocation childRSData = Allocation.createSized(rs, Element.ALLOCATION(rs),
59 Allocation[] childrenAllocs = new Allocation[mChildren.size()];
Scene.java 271 Allocation drawableData = Allocation.createSized(rs,
272 Element.ALLOCATION(rs),
274 Allocation[] drawableAllocs = new Allocation[mRenderables.size()];
288 Allocation shaderData = Allocation.createSized(rs, Element.ALLOCATION(rs),
290 Allocation[] shaderAllocs = new Allocation[mVertexShaders.size()]
    [all...]
RenderPass.java 101 Allocation drawableData = Allocation.createSized(rs,
102 Element.ALLOCATION(rs),
104 Allocation[] drawableAllocs = new Allocation[mObjectsToDraw.size()];
  /cts/tests/tests/rscpp/librscpptest/
rs_jni_element.cpp 149 passed &= (Element::ALLOCATION(mRS) != nullptr);
169 sp<const Element> ALLOCATION = Element::ALLOCATION(mRS);
203 sp<const Element> ElementArrs[] = { ALLOCATION, BOOLEAN, ELEMENT, F32, F32_2,
285 eb->add(Element::ALLOCATION(mRS), "ALLOCATION", arraySize);
rs_jni_type.cpp 94 passed &= testTypeBuilderHelper(mRS, Element::ALLOCATION(mRS));
rs_jni_allocation.cpp 48 Allocation::createTyped(rs, typeBuilder.create());
119 createTypedHelper(rs, Element::ALLOCATION(rs));
134 * Test copyTo and copyFrom for all or part of a 1D Allocation.
137 * @param cellCount Total number of elements in this Allocation.
138 * @param offset Offset of this Allocation for copy.
140 * @param copyRange Copy the entire allocation or part of it (using different API).
151 sp<Allocation> alloc = nullptr;
157 alloc = Allocation::createSized(rs, makeElement(rs, dt, 3), cellCount);
160 alloc = Allocation::createSized(rs, makeElement(rs, dt, 1), cellCount);
190 //Corresponding 1D allocation to allocation copy
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ElementTest.java 120 assertTrue(Element.ALLOCATION(mRS) != null);
182 Element[] ALLOCATION = { Element.ALLOCATION(mRS) };
246 Element[][] ElementArrs = { ALLOCATION, BOOLEAN, ELEMENT,
337 eb.add(Element.ALLOCATION(mRS), "ALLOCATION", arraySize);
407 assertFalse(Element.ALLOCATION(mRS).isComplex());
TypeTest.java 76 testTypeBuilderHelper(Element.ALLOCATION(mRS));
AllocationTest.java 20 import android.renderscript.Allocation;
22 import android.renderscript.Allocation.MipmapControl;
48 Allocation.createTyped(mRS, typeBuilder.create());
59 Allocation.createTyped(mRS, typeBuilder.setX(8).create(),
61 Allocation.USAGE_GRAPHICS_TEXTURE);
62 Allocation.createTyped(mRS, typeBuilder.setY(8).create(),
64 Allocation.USAGE_GRAPHICS_TEXTURE);
66 Allocation.createTyped(mRS, typeBuilder.create(),
68 Allocation.USAGE_GRAPHICS_TEXTURE |
69 Allocation.USAGE_SCRIPT)
    [all...]
  /frameworks/rs/cpp/
Element.cpp 95 CREATE_USER(ALLOCATION, ALLOCATION);
rsCppStructs.h 27 * Every row in an RS allocation is guaranteed to be aligned by this amount, and
28 * every row in a user-backed allocation must be aligned by this amount.
47 class Allocation;
224 sp<const Element> ALLOCATION;
287 * from RenderScript kernels. An Allocation provides the backing store for a
290 * An Allocation also contains a set of usage flags that denote how the
291 * Allocation could be used. For example, an Allocation may have usage flags
294 * syncAll(int) in order to ensure that different users of the Allocation have
295 * a consistent view of memory. For example, in the case where an Allocation i
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/cpp/
rsCppStructs.h 28 * Every row in an RS allocation is guaranteed to be aligned by this amount, and
29 * every row in a user-backed allocation must be aligned by this amount.
43 class Allocation;
217 sp<const Element> ALLOCATION;
280 * from RenderScript kernels. An Allocation provides the backing store for a
283 * An Allocation also contains a set of usage flags that denote how the
284 * Allocation could be used. For example, an Allocation may have usage flags
287 * syncAll(int) in order to ensure that different users of the Allocation have
288 * a consistent view of memory. For example, in the case where an Allocation i
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/cpp/
rsCppStructs.h 28 * Every row in an RS allocation is guaranteed to be aligned by this amount, and
29 * every row in a user-backed allocation must be aligned by this amount.
43 class Allocation;
217 sp<const Element> ALLOCATION;
280 * from RenderScript kernels. An Allocation provides the backing store for a
283 * An Allocation also contains a set of usage flags that denote how the
284 * Allocation could be used. For example, an Allocation may have usage flags
287 * syncAll(int) in order to ensure that different users of the Allocation have
288 * a consistent view of memory. For example, in the case where an Allocation i
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/cpp/
rsCppStructs.h 28 * Every row in an RS allocation is guaranteed to be aligned by this amount, and
29 * every row in a user-backed allocation must be aligned by this amount.
43 class Allocation;
217 sp<const Element> ALLOCATION;
280 * from RenderScript kernels. An Allocation provides the backing store for a
283 * An Allocation also contains a set of usage flags that denote how the
284 * Allocation could be used. For example, an Allocation may have usage flags
287 * syncAll(int) in order to ensure that different users of the Allocation have
288 * a consistent view of memory. For example, in the case where an Allocation i
    [all...]
  /frameworks/base/rs/java/android/renderscript/
Element.java 21 * android.renderscript.Allocation}. An Element is roughly equivalent to a C
39 * android.renderscript.Allocation} objects with DataKind {@link
42 * android.renderscript.Allocation} objects that are intended for use with a
425 public static Element ALLOCATION(RenderScript rs) {
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Element.java 25 * android.support.v8.renderscript.Allocation}. An Element is roughly
44 * Note that {@link android.support.v8.renderscript.Allocation} objects with
47 * general, {@link android.support.v8.renderscript.Allocation} objects that are
422 public static Element ALLOCATION(RenderScript rs) {
    [all...]
  /prebuilts/sdk/renderscript/lib/
javalib.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar 
  /external/robolectric/lib/main/
android.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/org.eclipse.jdt.core/3.9.1.v20130905-0837/
org.eclipse.jdt.core-3.9.1.v20130905-0837.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/19/
android.jar 
  /prebuilts/sdk/20/
android.jar 

Completed in 423 milliseconds