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

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/none/tests/scripts/
shell_nointerp2.stdout.exp 1 no space after #!
shell_nointerp3.stdout.exp 1 there is a space after the #!
  /external/llvm/test/MC/ELF/
pr19430.s 6 .space 1000
  /external/llvm/test/MC/AsmParser/
directive_space.s 4 # CHECK: .space 1
6 .space 1
9 # CHECK: .space 2,3
11 .space 2, 3
14 # CHECK: .space 1
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/
PhysicsTickListener.java 42 * @param space
45 public void prePhysicsTick(PhysicsSpace space, float f);
49 * @param space
52 public void physicsTick(PhysicsSpace space, float f);
  /art/runtime/gc/space/
valgrind_settings.h 22 namespace space { namespace in namespace:art::gc
28 } // namespace space
space_test.h 34 namespace space { namespace in namespace:art::gc
43 void AddSpace(ContinuousSpace* space, bool revoke = true) {
48 heap->AddSpace(space);
49 heap->SetSpaceAsDefault(space);
65 mirror::Object* Alloc(space::MallocSpace* alloc_space, Thread* self, size_t bytes,
79 mirror::Object* AllocWithGrowth(space::MallocSpace* alloc_space, Thread* self, size_t bytes,
125 void SizeFootPrintGrowthLimitAndTrimBody(MallocSpace* space, intptr_t object_size,
141 std::unique_ptr<Space> space(create_space("test", 16 * MB, 32 * MB, 32 * MB, nullptr));
142 EXPECT_TRUE(space.get() != nullptr)
    [all...]
  /external/llvm/test/MC/AArch64/
ldr-pseudo-obj-errors.s 12 .space 0xdeadb0
  /external/llvm/test/MC/MachO/
relax-recompute-align.s 26 .space 0x8a, 0x90
28 .space (0xb3 - 0x8f), 0x90
30 .space (0xcd - 0xb5), 0x90
33 .space (0x130 - 0xd0),0x90
x86_32-scattered-reloc-fallback.s 8 .space 0x01020f55, 0x90
12 .space 0x515b91, 0
14 .space 0xa70, 0
i386-large-relocations.s 3 .space 0x1ed280
6 .space 0x5181020
relax-jumps.s 18 .space 200, 0x90
28 .space 200, 0x90
  /art/runtime/gc/collector/
sticky_mark_sweep.cc 18 #include "gc/space/large_object_space.h"
19 #include "gc/space/space-inl.h"
37 // know what was allocated since the last GC. A side-effect of binding the allocation space mark
39 for (const auto& space : GetHeap()->GetContinuousSpaces()) {
40 if (space->IsContinuousMemMapAllocSpace() &&
41 space->GetGcRetentionPolicy() == space::kGcRetentionPolicyAlwaysCollect) {
42 DCHECK(space->IsContinuousMemMapAllocSpace());
43 space->AsContinuousMemMapAllocSpace()->BindLiveToMarkBitmap()
    [all...]
immune_region.cc 19 #include "gc/space/space-inl.h"
35 bool ImmuneRegion::AddContinuousSpace(space::ContinuousSpace* space) {
37 if (space->GetLiveBitmap() != space->GetMarkBitmap()) {
38 CHECK(space->IsContinuousMemMapAllocSpace());
39 space->AsContinuousMemMapAllocSpace()->BindLiveToMarkBitmap();
41 mirror::Object* space_begin = reinterpret_cast<mirror::Object*>(space->Begin());
42 mirror::Object* space_limit = reinterpret_cast<mirror::Object*>(space->Limit())
    [all...]
partial_mark_sweep.cc 20 #include "gc/space/space.h"
37 // For partial GCs we need to bind the bitmap of the zygote space so that all objects in the
38 // zygote space are viewed as marked.
39 for (const auto& space : GetHeap()->GetContinuousSpaces()) {
40 if (space->GetGcRetentionPolicy() == space::kGcRetentionPolicyFullCollect) {
41 CHECK(space->IsZygoteSpace());
42 CHECK(immune_region_.AddContinuousSpace(space)) << "Failed to add space " << *space
    [all...]
immune_region.h 28 namespace space { namespace in namespace:art::gc
30 } // namespace space
43 bool AddContinuousSpace(space::ContinuousSpace* space)
45 bool ContainsSpace(const space::ContinuousSpace* space) const;
  /external/parameter-framework/tools/xmlGenerator/analyse/
sortAsound.conf.sh 55 space=" "
83 echo "$space$current_value"
87 echo "$space$space$current_mode"
  /ndk/tests/device/test-stlport_shared-exception/jni/
new6.cpp 9 int space = 0xdeadbeef; variable
14 return &space;
  /ndk/tests/device/test-stlport_static-exception/jni/
new6.cpp 9 int space = 0xdeadbeef; variable
14 return &space;
  /art/runtime/gc/accounting/
mod_union_table-inl.h 22 #include "gc/space/space.h"
28 // A mod-union table to record image references to the Zygote and alloc space.
32 space::ContinuousSpace* space)
33 : ModUnionTableReferenceCache(name, heap, space) {}
remembered_set.h 34 namespace space { namespace in namespace:art::gc
36 } // namespace space
49 explicit RememberedSet(const std::string& name, Heap* heap, space::ContinuousSpace* space)
50 : name_(name), heap_(heap), space_(space) {}
55 // Mark through all references to the target space.
58 space::ContinuousSpace* target_space, void* arg)
64 space::ContinuousSpace* GetSpace() {
78 space::ContinuousSpace* const space_;
  /external/jmonkeyengine/engine/src/bullet-native/
com_jme3_bullet_PhysicsSpace.cpp 51 jmePhysicsSpace* space = new jmePhysicsSpace(env, object); local
52 if (space == NULL) {
54 env->ThrowNew(newExc, "The physics space has not been created.");
57 space->createPhysicsSpace(minX, minY, minZ, maxX, maxY, maxZ, broadphase, threading);
58 return reinterpret_cast<jlong>(space);
68 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*>(spaceId); local
69 if (space == NULL) {
71 env->ThrowNew(newExc, "The physics space does not exist.");
74 space->stepSimulation(tpf, maxSteps, accuracy);
84 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*>(spaceId) local
109 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*>(spaceId); local
133 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*>(spaceId); local
157 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*>(spaceId); local
181 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*>(spaceId); local
208 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*>(spaceId); local
232 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*>(spaceId); local
254 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*>(spaceId); local
276 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*>(spaceId); local
298 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*>(spaceId); local
320 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*>(spaceId); local
342 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*>(spaceId); local
364 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*>(spaceId); local
392 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*>(spaceId); local
402 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*> (spaceId); local
    [all...]
  /external/chromium-libpac/test/js-unittest/
return_unicode.js 1 // U+200B is the codepoint for zero-width-space.
  /external/clang/test/Analysis/
CGColorSpace.c 5 extern CGColorSpaceRef CGColorSpaceRetain(CGColorSpaceRef space);
6 extern void CGColorSpaceRelease(CGColorSpaceRef space);
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/
GhostControl.java 32 protected PhysicsSpace space = null; field in class:GhostControl
100 if (space != null) {
106 space.addCollisionObject(this);
109 space.removeCollisionObject(this);
128 if (enabled && space != null && space.getDebugManager() != null) {
130 attachDebugShape(space.getDebugManager());
140 public void setPhysicsSpace(PhysicsSpace space) {
141 if (space == null) {
142 if (this.space != null)
    [all...]

Completed in 3467 milliseconds

1 2 3 4 5 6 7 8 91011>>