OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:allocation
(Results
276 - 300
of
5756
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/cts/tests/tests/rscpp/librscpptest/
rs_jni_allocation.cpp
48
Allocation
::createTyped(mRS, typeBuilder.create());
119
createTypedHelper(mRS, Element::
ALLOCATION
(mRS));
127
sp<
Allocation
> A =
Allocation
::createSized(mRS, Element::F32(mRS), nElems);
158
sp<
Allocation
> A =
Allocation
::createSized(mRS, Element::I8(mRS), nElems);
189
sp<
Allocation
> A =
Allocation
::createSized(mRS, Element::I16(mRS), nElems);
220
sp<
Allocation
> A =
Allocation
::createSized(mRS, Element::I32(mRS), nElems)
[
all
...]
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
AllocationThunker.java
29
class AllocationThunker extends
Allocation
{
30
android.renderscript.
Allocation
mN;
31
//
Allocation
mAdaptedAllocation;
33
android.renderscript.
Allocation
getNObj() {
37
static android.renderscript.
Allocation
.MipmapControl
42
return android.renderscript.
Allocation
.MipmapControl.MIPMAP_NONE;
44
return android.renderscript.
Allocation
.MipmapControl.MIPMAP_FULL;
46
return android.renderscript.
Allocation
.MipmapControl.MIPMAP_ON_SYNC_TO_TEXTURE;
75
AllocationThunker(RenderScript rs, Type t, int usage, android.renderscript.
Allocation
na) {
186
public void copyFrom(
Allocation
a)
[
all
...]
ScriptIntrinsicBlur.java
25
* specified radius to all elements of an
allocation
.
31
private
Allocation
mInput;
38
* Create an intrinsic for applying a blur to an
allocation
. The
66
* @param ain The input
allocation
68
public void setInput(
Allocation
ain) {
89
*
allocation
.
91
* @param aout Output
allocation
. Must match creation element
94
public void forEach(
Allocation
aout) {
/cts/tests/tests/renderscript/src/android/renderscript/cts/
IntrinsicBase.java
21
import android.renderscript.
Allocation
;
29
protected
Allocation
mAllocSrc;
30
protected
Allocation
mAllocRef;
31
protected
Allocation
mAllocDst;
63
protected
Allocation
makeAllocation(int w, int h, Element e, boolean clear) {
68
Allocation
a =
Allocation
.createTyped(mRS, t);
79
protected
Allocation
makeAllocation(int w, int h, Element e) {
TestNan.java
21
import android.renderscript.
Allocation
;
43
Allocation
in = createRandomAllocation(mRS, Element.DataType.UNSIGNED_32, 1, 0x757e939c0e627774l, false);
45
Allocation
out =
Allocation
.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
52
Allocation
out =
Allocation
.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
60
private void verifyResultsNanUintFloat(
Allocation
in,
Allocation
out, boolean relaxed) {
is_object.rs
5
rs_allocation
allocation
;
10
*out = rsIsObject(in->
allocation
)==false ? 0 : 1;
/external/chromium_org/third_party/sqlite/src/test/
memsubsys2.test
12
# This file contains tests of the memory
allocation
subsystem.
75
#
allocation
.
109
set ::
allocation
[sqlite3_malloc 100000]
110
expr {$::
allocation
!="0"}
119
sqlite3_free $::
allocation
147
set ::
allocation
[sqlite3_malloc 100000]
148
expr {$::
allocation
!="0"}
157
sqlite3_free $::
allocation
/external/chromium_org/tools/android/heap_profiler/
heap_profiler.h
14
// The
allocation
is a result of a system malloc() invocation.
17
// The
allocation
is a result of a mmap() invocation.
18
#define HEAP_PROFILER_FLAGS_MMAP 2 //
Allocation
performed through mmap.
23
// Android only:
allocation
made by the Zygote (before forking).
57
uint32_t num_allocs; // The total number of
allocation
entries present.
61
size_t total_alloc_bytes; // Total
allocation
bytes tracked.
70
// Records and
allocation
. The caller must unwind the stack and pass the
79
// Frees any
allocation
(even partial) overlapping with the given range.
/external/fio/
gcompat.c
41
return w->
allocation
.width;
46
return w->
allocation
.height;
/external/oprofile/libutil/
op_growable_buffer.h
26
* init_buffer do not do any
allocation
, the first
allocation
will occur
/external/valgrind/main/massif/tests/
ignoring.c
12
// The peak is from the first
allocation
.
16
// Now do an
allocation
to provide the post-peak baseline.
/frameworks/rs/cpu_ref/
rsd_cpu.h
73
const
Allocation
* ain,
74
Allocation
* aout,
80
const
Allocation
** ains,
82
Allocation
* aout,
94
virtual void setGlobalBind(uint32_t slot,
Allocation
*data) = 0;
97
virtual
Allocation
* getAllocationForPointer(const void *ptr) const = 0;
108
virtual void setInput(const ScriptKernelID *kid,
Allocation
*) = 0;
109
virtual void setOutput(const ScriptKernelID *kid,
Allocation
*) = 0;
/frameworks/rs/java/tests/LivePreview/src/com/android/rs/livepreview/
RsYuv.java
25
import android.renderscript.
Allocation
;
43
private
Allocation
mAllocationOut;
44
private
Allocation
mAllocationIn;
82
mAllocationOut =
Allocation
.createTyped(mRS, t,
Allocation
.USAGE_SCRIPT |
83
Allocation
.USAGE_IO_OUTPUT);
90
mAllocationIn =
Allocation
.createTyped(mRS, tb.create(),
Allocation
.USAGE_SCRIPT);
/frameworks/rs/
rsAdapter.h
30
// By policy this
allocation
will hold a pointer to the type
33
Adapter1D(Context *,
Allocation
*);
36
void setAllocation(
Allocation
*a) {mAllocation.set(a);}
54
ObjectBaseRef<
Allocation
> mAllocation;
64
// By policy this
allocation
will hold a pointer to the type
67
Adapter2D(Context *,
Allocation
*);
74
void setAllocation(
Allocation
*a) {mAllocation.set(a);}
87
ObjectBaseRef<
Allocation
> mAllocation;
/pdk/apps/TestingCamera/src/com/android/testingcamera/
CallbackProcessor.java
8
import android.renderscript.
Allocation
;
27
* into an
Allocation
that's backed by a SurfaceView
36
private
Allocation
mAllocationIn;
37
private
Allocation
mAllocationOut;
63
mAllocationIn =
Allocation
.createSized(mRS, Element.U8(mRS), inputSize);
70
mAllocationOut =
Allocation
.createTyped(mRS, outType,
71
Allocation
.USAGE_IO_OUTPUT |
Allocation
.USAGE_SCRIPT);
/prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/
rsAdapter.h
30
// By policy this
allocation
will hold a pointer to the type
33
Adapter1D(Context *,
Allocation
*);
36
void setAllocation(
Allocation
*a) {mAllocation.set(a);}
54
ObjectBaseRef<
Allocation
> mAllocation;
64
// By policy this
allocation
will hold a pointer to the type
67
Adapter2D(Context *,
Allocation
*);
74
void setAllocation(
Allocation
*a) {mAllocation.set(a);}
87
ObjectBaseRef<
Allocation
> mAllocation;
/prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/
rsAdapter.h
30
// By policy this
allocation
will hold a pointer to the type
33
Adapter1D(Context *,
Allocation
*);
36
void setAllocation(
Allocation
*a) {mAllocation.set(a);}
54
ObjectBaseRef<
Allocation
> mAllocation;
64
// By policy this
allocation
will hold a pointer to the type
67
Adapter2D(Context *,
Allocation
*);
74
void setAllocation(
Allocation
*a) {mAllocation.set(a);}
87
ObjectBaseRef<
Allocation
> mAllocation;
/prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/
rsAdapter.h
30
// By policy this
allocation
will hold a pointer to the type
33
Adapter1D(Context *,
Allocation
*);
36
void setAllocation(
Allocation
*a) {mAllocation.set(a);}
54
ObjectBaseRef<
Allocation
> mAllocation;
64
// By policy this
allocation
will hold a pointer to the type
67
Adapter2D(Context *,
Allocation
*);
74
void setAllocation(
Allocation
*a) {mAllocation.set(a);}
87
ObjectBaseRef<
Allocation
> mAllocation;
/cts/tests/tests/hardware/src/android/hardware/camera2/cts/rs/
ScriptYuvMeans1d.java
27
* Average a {@code Hx1} {@link ElementInfo#U8_3 U8_3} {@link
Allocation
allocation
} into a 1x1
28
* {@code U8x3} {@link
Allocation
allocation
}.
/external/chromium_org/components/web_cache/browser/
web_cache_manager.h
70
// manager may decide to adjust its resource
allocation
, but it will delay
114
// An
allocation
is the number of bytes a specific renderer should use for
116
typedef std::pair<int,size_t>
Allocation
;
118
// An
allocation
strategy is a list of allocations specifying the resources
120
typedef std::list<
Allocation
> AllocationStrategy;
128
// Recomputes the
allocation
of cache resources among the renderers. Also
129
// informs the renderers of their new
allocation
.
135
// The various tactics used as part of an
allocation
strategy. To decide
140
// Determining a resource
allocation
strategy amounts to picking a tactic
149
// some extra
allocation
to store new objects
[
all
...]
/external/chromium_org/third_party/tcmalloc/chromium/src/
heap-profile-stats.h
5
// This file defines structs to accumulate memory
allocation
and deallocation
10
// trace and counts of (de)
allocation
. Buckets are stored in a hash table
35
int32 allocs; // Number of
allocation
calls.
41
//
Allocation
and deallocation statistics per each stack trace.
/external/clang/test/CXX/expr/expr.unary/expr.new/
p20-0x.cpp
5
// Placement
allocation
function:
/external/llvm/test/MC/COFF/
seh-stackalloc-zero.s
3
// CHECK:
Allocation
size must be non-zero!
/external/pdfium/core/src/fxge/Microsoft SDK/include/
GdiPlusBase.h
11
* Represents the base class for GDIPlus memory
allocation
.
/frameworks/av/include/media/stagefright/foundation/
ABase.h
27
/* Returns true if the size parameter is safe for new array
allocation
(32-bit)
37
* There is a bug in gcc versions earlier than 4.8 where the new[] array
allocation
38
* will overflow in the internal 32 bit heap
allocation
, resulting in an
46
* https://securityblog.redhat.com/2012/10/31/array-
allocation
-in-cxx/
Completed in 473 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>