/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
TestFmax.java | 21 import android.renderscript.Allocation; 44 Allocation inX = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0xe6ec75a46e6fdd91l, false); 45 Allocation inY = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0xe6ec75a46e6fdd92l, false); 47 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); 55 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); 64 private void verifyResultsFmaxFloatFloatFloat(Allocation inX, Allocation inY, Allocation out, boolean relaxed) [all...] |
TestFmin.java | 21 import android.renderscript.Allocation; 44 Allocation inX = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x7b46a8451d7b106fl, false); 45 Allocation inY = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x7b46a8451d7b1070l, false); 47 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); 55 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); 64 private void verifyResultsFminFloatFloatFloat(Allocation inX, Allocation inY, Allocation out, boolean relaxed) [all...] |
TestLdexp.java | 21 import android.renderscript.Allocation; 44 Allocation inX = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0xdeada0999238fe8bl, false); 45 Allocation inY = createRandomAllocation(mRS, Element.DataType.SIGNED_32, 1, 0xdeada0999238fe8cl, false); 47 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); 55 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); 64 private void verifyResultsLdexpFloatIntFloat(Allocation inX, Allocation inY, Allocation out, boolean relaxed) [all...] |
DebugContext.java | 19 import android.renderscript.Allocation; 28 Allocation AUnused; 29 Allocation AInt; 51 AInt = Allocation.createTyped(mRS, t); 54 AUnused = Allocation.createTyped(mRS, t); 58 * Test whether we are detect out-of-bounds allocation accesses 74 * Test whether we are detect out-of-bounds allocation accesses
|
RsUnpackColor8888Test.java | 19 import android.renderscript.Allocation; 29 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException { 35 Allocation mAllocationIn = Allocation.createSized(mRS, Element.U8_4(mRS), INPUTSIZE); 36 Allocation mAllocationOut = Allocation.createSized(mRS, Element.F32_4(mRS), INPUTSIZE);
|
/external/chromium_org/build/toolchain/ |
clang.gni | 7 # with the allocation type.
|
/external/chromium_org/third_party/lzma_sdk/ |
7zAlloc.h | 1 /* 7zAlloc.h -- Allocation functions
|
/external/chromium_org/third_party/sqlite/src/src/ |
mem0.c | 13 ** This file contains a no-op memory allocation drivers for use when 14 ** SQLITE_ZERO_MALLOC is defined. The allocation drivers implemented 29 ** No-op versions of all memory allocation routines 42 ** Populate the low-level memory allocation function pointers in
|
/external/lzma/C/ |
7zAlloc.h | 1 /* 7zAlloc.h -- Allocation functions
|
/external/valgrind/main/drd/tests/ |
annotate_hb_race.stderr.exp | 4 Allocation context: BSS section of annotate_hb_race
|
/frameworks/rs/cpu_ref/ |
rsCpuScriptGroup.h | 28 virtual void setInput(const ScriptKernelID *kid, Allocation *); 29 virtual void setOutput(const ScriptKernelID *kid, Allocation *); 43 Allocation *const* ins; 45 Allocation *const* outs;
|
/frameworks/rs/java/tests/HelloComputeNDK/libhellocomputendk/ |
helloComputeNDK.cpp | 45 sp<Allocation> inputAlloc = Allocation::createTyped(rs, t, RS_ALLOCATION_MIPMAP_NONE, 48 sp<Allocation> outputAlloc = Allocation::createTyped(rs, t, RS_ALLOCATION_MIPMAP_NONE,
|
/frameworks/rs/tests/cppallocation/ |
compute.cpp | 33 sp<Allocation> ain = Allocation::createTyped(rs, t); 34 sp<Allocation> aout = Allocation::createTyped(rs, t);
|
/frameworks/base/tests/RenderScriptTests/FountainFbo/src/com/example/android/rs/fountainfbo/ |
FountainFboRS.java | 20 import android.renderscript.Allocation; 37 private Allocation mColorBuffer; 68 /* Create the allocation for the color buffer */ 71 mColorBuffer = Allocation.createTyped(mRS, colorBuilder.create(), 72 Allocation.USAGE_GRAPHICS_TEXTURE | 73 Allocation.USAGE_GRAPHICS_RENDER_TARGET); 75 /* Set the allocation in the Renderscript runtime */
|
/frameworks/rs/ |
rsMesh.h | 43 // Position, normal, texcoord, etc could either be strided in one allocation 45 Allocation **vertexBuffers; 49 Allocation **indexBuffers; 67 void setVertexBuffer(Allocation *vb, uint32_t index) { 72 void setPrimitive(Allocation *idx, RsPrimitive prim, uint32_t index) { 88 ObjectBaseRef<Allocation> *mVertexBuffers; 89 ObjectBaseRef<Allocation> *mIndexBuffers;
|
/frameworks/rs/scriptc/ |
rs_mesh.rsh | 53 * Returns an allocation that is part of the mesh and contains 57 * @param index index of the vertex allocation 58 * @return allocation containing vertex data 64 * Returns an allocation containing index data or a null 65 * allocation if only the primitive is specified 68 * @param index index of the index allocation 69 * @return allocation containing index data
|
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/ |
ScriptIntrinsicYuvToRGB.java | 23 * The input allocation is supplied in NV21 format as a U8 28 private Allocation mInput; 58 * Set the input yuv allocation, must be {@link Element#U8}. 60 * @param ain The input allocation. 62 public void setInput(Allocation ain) { 70 * @param aout Output allocation. Must match creation element 73 public void forEach(Allocation aout) {
|
/prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/ |
rsMesh.h | 43 // Position, normal, texcoord, etc could either be strided in one allocation 45 Allocation **vertexBuffers; 49 Allocation **indexBuffers; 67 void setVertexBuffer(Allocation *vb, uint32_t index) { 72 void setPrimitive(Allocation *idx, RsPrimitive prim, uint32_t index) { 88 ObjectBaseRef<Allocation> *mVertexBuffers; 89 ObjectBaseRef<Allocation> *mIndexBuffers;
|
/prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/scriptc/ |
rs_mesh.rsh | 53 * Returns an allocation that is part of the mesh and contains 57 * @param index index of the vertex allocation 58 * @return allocation containing vertex data 64 * Returns an allocation containing index data or a null 65 * allocation if only the primitive is specified 68 * @param index index of the index allocation 69 * @return allocation containing index data
|
/prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/ |
rsMesh.h | 43 // Position, normal, texcoord, etc could either be strided in one allocation 45 Allocation **vertexBuffers; 49 Allocation **indexBuffers; 67 void setVertexBuffer(Allocation *vb, uint32_t index) { 72 void setPrimitive(Allocation *idx, RsPrimitive prim, uint32_t index) { 88 ObjectBaseRef<Allocation> *mVertexBuffers; 89 ObjectBaseRef<Allocation> *mIndexBuffers;
|
/prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/scriptc/ |
rs_mesh.rsh | 53 * Returns an allocation that is part of the mesh and contains 57 * @param index index of the vertex allocation 58 * @return allocation containing vertex data 64 * Returns an allocation containing index data or a null 65 * allocation if only the primitive is specified 68 * @param index index of the index allocation 69 * @return allocation containing index data
|
/prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/ |
rsMesh.h | 43 // Position, normal, texcoord, etc could either be strided in one allocation 45 Allocation **vertexBuffers; 49 Allocation **indexBuffers; 67 void setVertexBuffer(Allocation *vb, uint32_t index) { 72 void setPrimitive(Allocation *idx, RsPrimitive prim, uint32_t index) { 88 ObjectBaseRef<Allocation> *mVertexBuffers; 89 ObjectBaseRef<Allocation> *mIndexBuffers;
|
/prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/scriptc/ |
rs_mesh.rsh | 53 * Returns an allocation that is part of the mesh and contains 57 * @param index index of the vertex allocation 58 * @return allocation containing vertex data 64 * Returns an allocation containing index data or a null 65 * allocation if only the primitive is specified 68 * @param index index of the index allocation 69 * @return allocation containing index data
|
/prebuilts/sdk/renderscript/include/ |
rs_mesh.rsh | 53 * Returns an allocation that is part of the mesh and contains 57 * @param index index of the vertex allocation 58 * @return allocation containing vertex data 64 * Returns an allocation containing index data or a null 65 * allocation if only the primitive is specified 68 * @param index index of the index allocation 69 * @return allocation containing index data
|
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
turnserver.cc | 65 // IDs used for posted messages for TurnServer::Allocation. 70 // Encapsulates a TURN allocation. 71 // The object is created when an allocation request is received, and then 73 // (via HandleChannelData) for this allocation when received by the server. 75 class TurnServer::Allocation : public rtc::MessageHandler, 78 Allocation(TurnServer* server_, 82 virtual ~Allocation(); 96 sigslot::signal1<Allocation*> SignalDestroyed; 145 // allocation, and self-deletes when its lifetime timer expires. 165 // allocation, and self-deletes when its lifetime timer expires 298 Allocation* allocation = FindAllocation(&conn); local 331 Allocation* allocation = FindAllocation(conn); local 424 Allocation* allocation = FindAllocation(conn); local 534 Allocation* allocation = new Allocation(this, local [all...] |