OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:allocation
(Results
126 - 150
of
5138
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/cts/tests/tests/renderscript/src/android/renderscript/cts/
IntrinsicBase.java
21
import android.renderscript.
Allocation
;
28
protected
Allocation
mAllocSrc;
29
protected
Allocation
mAllocRef;
30
protected
Allocation
mAllocDst;
62
protected
Allocation
makeAllocation(int w, int h, Element e) {
67
return
Allocation
.createTyped(mRS, t);
114
mAllocRef =
Allocation
.createTyped(mRS, mAllocSrc.getType());
115
mAllocDst =
Allocation
.createTyped(mRS, mAllocSrc.getType());
ScriptC_leak.java
46
private
Allocation
mExportVar_a;
47
public synchronized void set_a(
Allocation
v) {
52
public
Allocation
get_a() {
/cts/tests/tests/rscpp/src/android/cts/rscpp/
RSBlurTest.java
49
Allocation
rsInput =
Allocation
.createTyped(mRS, build.create());
50
Allocation
rsOutput =
Allocation
.createTyped(mRS, build.create());
80
Allocation
rsInput =
Allocation
.createTyped(mRS, build.create());
81
Allocation
rsOutput =
Allocation
.createTyped(mRS, build.create());
/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/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/java/tests/LivePreview/src/com/android/rs/livepreview/
RsYuv.java
25
import android.renderscript.
Allocation
;
42
private
Allocation
mAllocationOut;
43
private
Allocation
mAllocationIn;
81
mAllocationOut =
Allocation
.createTyped(mRS, t,
Allocation
.USAGE_SCRIPT |
82
Allocation
.USAGE_IO_OUTPUT);
89
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;
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
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) {
/external/chromium/chrome/browser/renderer_host/
web_cache_manager.h
51
// manager may decide to adjust its resource
allocation
, but it will delay
86
// An
allocation
is the number of bytes a specific renderer should use for
88
typedef std::pair<int,size_t>
Allocation
;
90
// An
allocation
strategy is a list of allocations specifying the resources
92
typedef std::list<
Allocation
> AllocationStrategy;
100
// Recomputes the
allocation
of cache resources among the renderers. Also
101
// informs the renderers of their new
allocation
.
107
// The various tactics used as part of an
allocation
strategy. To decide
112
// Determining a resource
allocation
strategy amounts to picking a tactic
121
// some extra
allocation
to store new objects
[
all
...]
/external/chromium_org/chrome/browser/renderer_host/
web_cache_manager.h
53
// manager may decide to adjust its resource
allocation
, but it will delay
97
// An
allocation
is the number of bytes a specific renderer should use for
99
typedef std::pair<int,size_t>
Allocation
;
101
// An
allocation
strategy is a list of allocations specifying the resources
103
typedef std::list<
Allocation
> AllocationStrategy;
111
// Recomputes the
allocation
of cache resources among the renderers. Also
112
// informs the renderers of their new
allocation
.
118
// The various tactics used as part of an
allocation
strategy. To decide
123
// Determining a resource
allocation
strategy amounts to picking a tactic
132
// 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/compiler-rt/lib/lsan/lit_tests/TestCases/SharedLibs/
huge_tls_lib_so.cc
2
//
allocation
of a new TLS storage chunk when loaded with dlopen(). We use it
/external/kernel-headers/original/linux/
omap_ion.h
24
* @w: width of the
allocation
25
* @h: height of the
allocation
28
* @stride: stride of the
allocation
, returned to caller from kernel
30
* to this
allocation
/frameworks/rs/java/tests/ComputePerf/src/com/example/android/rs/computeperf/
LaunchTest.java
24
private
Allocation
mAllocationX;
25
private
Allocation
mAllocationXY;
35
mAllocationX =
Allocation
.createSized(rs, Element.U8(rs), dim);
39
mAllocationXY =
Allocation
.createTyped(rs, tb.create());
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
Histogram.java
27
private
Allocation
mSum;
28
private
Allocation
mSums;
47
mSums =
Allocation
.createTyped(mRS, t);
48
mSum =
Allocation
.createSized(mRS, Element.I32(mRS), 256);
/frameworks/rs/java/tests/LatencyBenchmark/src/com/example/android/rs/computebench/
Benchmark.java
25
private
Allocation
ain;
26
private
Allocation
aout;
31
ain =
Allocation
.createSized(rs, Element.U32(mRS), 10000);
32
aout =
Allocation
.createSized(rs, Element.U32(mRS), 10000);
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
UT_kernel.java
26
private
Allocation
A;
27
private
Allocation
B;
39
A =
Allocation
.createTyped(RS, typeBuilder.create());
41
B =
Allocation
.createTyped(RS, typeBuilder.create());
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
UT_check_dims.java
27
Allocation
mA;
38
Allocation
AFailed =
Allocation
.createTyped(RS, typeBuilder.create());
49
mA =
Allocation
.createTyped(RS, typeBuilder.create());
UT_kernel.java
26
private
Allocation
A;
27
private
Allocation
B;
39
A =
Allocation
.createTyped(RS, typeBuilder.create());
41
B =
Allocation
.createTyped(RS, typeBuilder.create());
/frameworks/rs/tests/cppstrided/
compute.cpp
35
sp<
Allocation
> ain =
Allocation
::createTyped(rs, t);
36
sp<
Allocation
> aout =
Allocation
::createTyped(rs, t);
/cts/tests/src/android/renderscript/cts/
set_object.rs
5
rs_allocation
allocation
;
11
rsSetObject(&dst,in->
allocation
);
12
*out = ( dst.p == in->
allocation
.p ? 1 : 0 );
/external/chromium_org/third_party/WebKit/ManualTests/
canvas-large-temporary.html
7
description("Test to verify that serial
allocation
and dereferencing of large canvases will succeed");
16
// Draw to trigger lazy backing store
allocation
20
// Verify that
allocation
succeeded by verifying that draw succeeded
/external/clang/lib/StaticAnalyzer/Checkers/
AllocationDiagnostics.cpp
1
//=- AllocationDiagnostics.cpp - Config options for
allocation
diags *- C++ -*-//
10
// Declares the configuration functions for leaks/
allocation
diagnostics.
20
return AOpts.getBooleanOption("leak-diagnostics-reference-
allocation
",
Completed in 582 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>