HomeSort by relevance Sort by last modified time
    Searched full:allocation (Results 251 - 275 of 5138) sorted by null

<<11121314151617181920>>

  /external/chromium_org/base/process/
memory_unittest_mac.mm 17 // Objective-C allocation in this environment would be to loop over allocation
  /external/chromium_org/chrome/browser/ui/gtk/
menu_bar_helper.cc 29 GtkAllocation allocation; local
30 gtk_widget_get_allocation(menu, &allocation);
33 motion->x < allocation.width &&
34 motion->y < allocation.height) {
137 GtkAllocation allocation; local
138 gtk_widget_get_allocation(button, &allocation);
140 if (x >= 0 && y >= 0 && x < allocation.width && y < allocation.height) {
  /external/chromium_org/third_party/tcmalloc/chromium/src/
heap-profile-table.h 77 // Info we can return about an allocation.
79 size_t object_size; // size of the allocation
80 const void* const* call_stack; // call stack that made the allocation call
86 // Info we return about an allocation context.
87 // An allocation context is a unique caller stack trace
88 // of an allocation operation.
104 // allocation for passing to RecordAlloc() below.
109 // and the memory allocation function.
112 // Record an allocation at 'ptr' of 'bytes' bytes. 'stack_depth'
114 // allocation. They can be generated using GetCallerStackTrace() above
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
AllocationDiagnostics.h 1 //=--- AllocationDiagnostics.h - Config options for allocation diags *- C++ -*-//
10 // Declares the configuration functions for leaks/allocation diagnostics.
  /external/compiler-rt/lib/lsan/lit_tests/TestCases/
do_leak_check_override.cc 35 // CHECK-strict: SUMMARY: LeakSanitizer: 2003 byte(s) leaked in 2 allocation(s)
36 // CHECK-normal: SUMMARY: LeakSanitizer: 666 byte(s) leaked in 1 allocation(s)
ignore_object.cc 13 // The first malloc call can cause an allocation in libdl. Ignore it here so
30 // CHECK: SUMMARY: LeakSanitizer: 1337 byte(s) leaked in 1 allocation(s)
  /external/lzma/C/
Lzma2Enc.h 29 SZ_ERROR_MEM - Memory allocation error
50 SZ_ERROR_MEM - Memory allocation error
  /external/valgrind/main/drd/tests/
hg05_race2.stderr.exp-powerpc 6 Allocation context: unknown.
15 Allocation context: unknown.
tc21_pthonce.stderr.exp 7 Allocation context: BSS section of tc21_pthonce
17 Allocation context: BSS section of tc21_pthonce
  /frameworks/base/graphics/java/android/renderscript/
ScriptIntrinsicHistogram.java 29 private Allocation mOut;
62 * output allocation. The output allocation may be a narrower
73 public void forEach(Allocation ain) {
119 * @param aout The output allocation
121 public void setOutput(Allocation aout) {
146 * output allocation. The dot product of the input channel and
154 public void forEach_Dot(Allocation ain) {
  /frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
SceneGraphRS.java 59 private Allocation mGridImage;
60 private Allocation mAllocPV;
65 private Allocation mTextAlloc;
132 mGridImage = Allocation.createFromBitmapResource(mRS, mRes, R.drawable.robot,
133 Allocation.MipmapControl.MIPMAP_ON_SYNC_TO_TEXTURE,
134 Allocation.USAGE_GRAPHICS_TEXTURE);
140 mTextAlloc = Allocation.createFromString(mRS, allocString, Allocation.USAGE_SCRIPT);
SimpleModelRS.java 51 private Allocation mGridImage;
52 private Allocation mAllocPV;
55 private Allocation mTextAlloc;
116 mGridImage = Allocation.createFromBitmapResource(mRS, mRes, R.drawable.robot,
117 Allocation.MipmapControl.MIPMAP_ON_SYNC_TO_TEXTURE,
118 Allocation.USAGE_GRAPHICS_TEXTURE);
124 mTextAlloc = Allocation.createFromString(mRS, allocString, Allocation.USAGE_SCRIPT);
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
MeshTest.java 26 import android.renderscript.Allocation.MipmapControl;
69 mTests[index].testName = Allocation.createFromString(mRS,
71 Allocation.USAGE_SCRIPT);
74 Allocation.USAGE_SCRIPT);
135 private Allocation loadTextureRGB(int id) {
136 return Allocation.createFromBitmapResource(mRS, mRes, id,
137 Allocation.MipmapControl.MIPMAP_ON_SYNC_TO_TEXTURE,
138 Allocation.USAGE_GRAPHICS_TEXTURE);
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
TextureRenderTarget.java 35 public TextureRenderTarget(Allocation tex) {
40 public void setTexture(Allocation tex) {
  /frameworks/rs/driver/
rsdPath.h 25 const android::renderscript::Allocation *vertex,
26 const android::renderscript::Allocation *loops);
rsdScriptGroup.cpp 39 const ScriptKernelID *kid, Allocation *) {
43 const ScriptKernelID *kid, Allocation *) {
rsdScriptGroup.h 27 android::renderscript::Allocation *);
31 android::renderscript::Allocation *);
  /frameworks/rs/java/tests/ComputePerf/src/com/example/android/rs/computeperf/
Mandelbrot.java 24 private Allocation mAllocationXY;
34 mAllocationXY = Allocation.createTyped(rs, tb.create());
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
Artistic1.java 26 private Allocation mBlured;
30 mBlured = Allocation.createTyped(mRS, mInPixelsAllocation.getType());
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
UT_refcount.java 36 Allocation A = Allocation.createTyped(RS, typeBuilder.create());
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
UT_noroot.java 25 private Allocation A;
39 A = Allocation.createTyped(RS, typeBuilder.create());
UT_refcount.java 36 Allocation A = Allocation.createTyped(RS, typeBuilder.create());
UT_static_globals.java 36 Allocation A = Allocation.createTyped(pRS, typeBuilder.setX(1).create());
  /frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/
UT_foreach.java 25 private Allocation A;
39 A = Allocation.createTyped(RS, typeBuilder.create());
UT_refcount.java 36 Allocation A = Allocation.createTyped(RS, typeBuilder.create());

Completed in 586 milliseconds

<<11121314151617181920>>