Searched defs:space (Results 26 - 50 of 180) sorted by relevance

12345678

/external/chromium_org/third_party/leveldatabase/src/util/
H A Denv.cc76 char* space = new char[kBufferSize]; local
79 s = file->Read(kBufferSize, &fragment, space);
88 delete[] space;
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/
H A DCharacterControl.java31 protected PhysicsSpace space = null; field in class:CharacterControl
97 if (space != null) {
102 space.addCollisionObject(this);
105 space.removeCollisionObject(this);
155 if (enabled && space != null && space.getDebugManager() != null) {
157 attachDebugShape(space.getDebugManager());
166 public void setPhysicsSpace(PhysicsSpace space) { argument
167 if (space == null) {
168 if (this.space !
[all...]
H A DGhostControl.java32 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) { argument
141 if (space == null) {
142 if (this.space !
[all...]
H A DRigidBodyControl.java38 protected PhysicsSpace space = null; field in class:RigidBodyControl
138 if (space != null) {
144 space.addCollisionObject(this);
147 space.removeCollisionObject(this);
213 if (enabled && space != null && space.getDebugManager() != null) {
215 attachDebugShape(space.getDebugManager());
226 public void setPhysicsSpace(PhysicsSpace space) { argument
227 if (space == null) {
228 if (this.space !
[all...]
H A DVehicleControl.java35 protected PhysicsSpace space = null; field in class:VehicleControl
154 if (space != null) {
160 space.addCollisionObject(this);
163 space.removeCollisionObject(this);
190 if (enabled && space != null && space.getDebugManager() != null) {
192 attachDebugShape(space.getDebugManager());
231 public void setPhysicsSpace(PhysicsSpace space) { argument
232 createVehicle(space);
233 if (space
[all...]
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
H A DBombControl.java57 public void setPhysicsSpace(PhysicsSpace space) { argument
58 super.setPhysicsSpace(space);
59 if (space != null) {
60 space.addCollisionListener(this);
92 if (space == null) {
96 space.add(ghostObject);
98 space.addTickListener(this);
105 space.remove(this);
110 public void prePhysicsTick(PhysicsSpace space, float f) { argument
111 space
114 physicsTick(PhysicsSpace space, float f) argument
[all...]
/external/libppp/src/
H A Darp.c173 char space[128]; member in struct:__anon20385
/external/netperf/
H A Dnetcpu_procstat.c146 int space; local
161 /* Idle time is the 4th space-separated token */
163 for (space = 0; space < 4; space ++) {
/external/qemu/android/skin/
H A Dcomposer.c134 int n, count = areflist_count( p->space.viewports );
136 SkinViewport* v = areflist_get( p->space.viewports, n );
229 areflist_init( p->space.viewports );
238 while ( areflist_count( p->space.viewports ) )
239 skin_viewport_free( areflist_get( p->space.viewports, 0 ) );
345 skin_viewport( SkinPlate* space, SkinRect* rect, void* surface, int sx, int sy ) argument
350 v->space = space;
363 SkinPlate* space = v->space; local
[all...]
H A Dcomposer.h68 struct SkinPlateSpace space; member in union:SkinPlate
90 SkinPlate* space; member in struct:SkinViewport
97 extern SkinViewport* skin_viewport( SkinPlate* space, SkinRect* rect, void* surface, int sx, int sy );
/external/skia/gm/
H A Dgammatext.cpp46 CGColorSpaceRef space = CGColorSpaceCreateDeviceRGB(); local
48 8, bm.rowBytes(), space, BITMAP_INFO_RGB);
49 CFRelease(space);
/external/valgrind/main/coregrind/m_demangle/
H A Ddyn-string.c72 dyn_string_init (struct dyn_string *ds_struct_ptr, int space) argument
75 if (space == 0)
76 space = 1;
79 ds_struct_ptr->s = (char *) malloc (space);
83 ds_struct_ptr->s = XNEWVEC (char, space);
85 ds_struct_ptr->allocated = space;
99 dyn_string_new (int space) argument
106 if (!dyn_string_init (result, space))
113 dyn_string_init (result, space);
152 dyn_string_resize (dyn_string_t ds, int space) argument
[all...]
/external/chromium/net/websockets/
H A Dwebsocket_handshake.cc278 uint32 space = rand_(1, 12); local
279 uint32 max = 4294967295U / space;
281 uint32 product = *number * space;
291 for (uint32 i = 0; i < space; i++) {
/external/chromium/third_party/libevent/
H A Dbuffer.c140 size_t space; local
145 /* make sure that at least some space is available */
151 space = buf->totallen - used;
158 sz = evutil_vsnprintf(buffer, space, fmt, aq);
164 if ((size_t)sz < space) {
261 /* Expands the available space in the event buffer to at least datlen */
274 * alignment to happen. Afterwards, we have enough space.
381 /* If we don't have FIONREAD, we might waste some space here */
/external/chromium_org/chrome/browser/chromeos/drive/file_system/
H A Dcopy_operation.cc489 // For regular files, check the server-side quota whether sufficient space
517 const int64 space = local
519 if (space < local_file_size) {
/external/chromium_org/native_client_sdk/src/libraries/xray/
H A Dreport.c38 char space[257]; local
40 memset(space, ' ', 256);
41 space[256] = 0;
79 &space[256 - depth], symbol_name, annotation);
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
H A DFontUtilsChromiumWin.cpp258 WCHAR space = L' '; local
260 GetGlyphIndices(dc, &space, 1, &spaceGlyph, GGI_MARK_NONEXISTING_GLYPHS);
336 // Sometimes characters common to script (e.g. space) is at
/external/chromium_org/third_party/WebKit/Source/wtf/unicode/
H A DCharacterNames.h78 const UChar space = 0x0020; member in namespace:WTF::Unicode
133 using WTF::Unicode::space;
/external/chromium_org/third_party/libevent/
H A Dbuffer.c140 size_t space; local
145 /* make sure that at least some space is available */
151 space = buf->totallen - used;
158 sz = evutil_vsnprintf(buffer, space, fmt, aq);
164 if ((size_t)sz < space) {
261 /* Expands the available space in the event buffer to at least datlen */
274 * alignment to happen. Afterwards, we have enough space.
381 /* If we don't have FIONREAD, we might waste some space here */
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
H A Dnvc0_query.c102 unsigned space = NVC0_QUERY_ALLOC_SPACE; local
112 space = NVC0_QUERY_ALLOC_SPACE;
116 space = 512;
121 space = 64;
129 space = 32;
132 space = 16;
138 if (!nvc0_query_allocate(nvc0, q, space)) {
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/
H A Dt_draw.c45 GLubyte *space = malloc(bytes); local
47 tnl->block[tnl->nr_blocks++] = space;
48 return space;
252 GLboolean *space = (GLboolean *)get_space(ctx, count + CLIPVERTS); local
253 GLboolean *bptr = space;
261 return space;
359 /* user-space elements, or buffer already mapped */
/external/chromium_org/third_party/openssl/openssl/crypto/bio/
H A Dbss_bio.c142 * never more than buffer space (size-len) warrants. */
426 * bio_nwrite0: check how much space is available
482 ossl_ssize_t num, space; local
489 space = bio_nwrite0(bio, buf);
490 if (num > space)
491 num = space;
/external/chromium_org/third_party/skia/src/gpu/
H A DGrBufferAllocPool.cpp178 // We could honor the space request using by a partial update of the current
238 // if we locked a vb to satisfy the make space and we're releasing
416 void* space = makeSpace(vertexSize, vertexCount, buffer, startVertex); local
417 if (NULL != space) {
418 memcpy(space,
473 void* space = makeSpace(indexCount, buffer, startIndex); local
474 if (NULL != space) {
475 memcpy(space, indices, sizeof(uint16_t) * indexCount);
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dinternal_logging.cc164 char space[22]; // more than enough for 2^64 in smallest supported base (10) local
165 char* end = space + sizeof(space);
171 } while (num > 0 && pos > space);
H A Dthread_cache.cc472 // Divide available space across threads
474 size_t space = overall_thread_cache_size_ / n; local
477 if (space < kMinThreadCacheSize) space = kMinThreadCacheSize;
478 if (space > kMaxThreadCacheSize) space = kMaxThreadCacheSize;
480 double ratio = space / max<double>(1, per_thread_cache_size_);
491 per_thread_cache_size_ = space;

Completed in 697 milliseconds

12345678