/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
tipc_config.h | 229 * of the request failure. To simplify error processing (and to save space) 276 static __inline__ int TLV_OK(const void *tlv, __u16 space) 287 return (space >= TLV_SPACE(0)) && 288 (ntohs(((struct tlv_desc *)tlv)->tlv_len) <= space); 291 static __inline__ int TLV_CHECK(const void *tlv, __u16 space, __u16 exp_type) 293 return TLV_OK(tlv, space) && 322 void *data, __u32 space) 325 list->tlv_space = space;
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
tipc_config.h | 229 * of the request failure. To simplify error processing (and to save space) 276 static __inline__ int TLV_OK(const void *tlv, __u16 space) 287 return (space >= TLV_SPACE(0)) && 288 (ntohs(((struct tlv_desc *)tlv)->tlv_len) <= space); 291 static __inline__ int TLV_CHECK(const void *tlv, __u16 space, __u16 exp_type) 293 return TLV_OK(tlv, space) && 322 void *data, __u32 space) 325 list->tlv_space = space;
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
tipc_config.h | 229 * of the request failure. To simplify error processing (and to save space) 276 static __inline__ int TLV_OK(const void *tlv, __u16 space) 287 return (space >= TLV_SPACE(0)) && 288 (ntohs(((struct tlv_desc *)tlv)->tlv_len) <= space); 291 static __inline__ int TLV_CHECK(const void *tlv, __u16 space, __u16 exp_type) 293 return TLV_OK(tlv, space) && 322 void *data, __u32 space) 325 list->tlv_space = space;
|
/external/chromium_org/v8/src/ |
spaces-inl.h | 54 PageIterator::PageIterator(PagedSpace* space) 55 : space_(space), 56 prev_page_(&space->anchor_), 77 NewSpacePageIterator::NewSpacePageIterator(NewSpace* space) 78 : prev_page_(NewSpacePage::FromAddress(space->ToSpaceStart())->prev_page()), 79 next_page_(NewSpacePage::FromAddress(space->ToSpaceStart())), 80 last_page_(NewSpacePage::FromLimit(space->ToSpaceEnd())) { } 82 NewSpacePageIterator::NewSpacePageIterator(SemiSpace* space) 83 : prev_page_(space->anchor()), 205 // space [all...] |
incremental-marking.h | 107 // with the data that is entering the old space through promotion. 234 void ActivateIncrementalWriteBarrier(PagedSpace* space); 235 static void ActivateIncrementalWriteBarrier(NewSpace* space); 238 static void DeactivateIncrementalWriteBarrierForSpace(PagedSpace* space); 239 static void DeactivateIncrementalWriteBarrierForSpace(NewSpace* space);
|
store-buffer.h | 83 // Iterates over all pointers that go from old space to new space. It will 151 // The garbage collector iterates over many pointers to new space that are not 183 // For each region of pointers on a page in use from an old space call 186 // in old space and changes in allocation watermark then 189 PagedSpace* space, 207 PagedSpace* space, 217 void VerifyPointers(PagedSpace* space, RegionCallback region_callback); 218 void VerifyPointers(LargeObjectSpace* space);
|
/external/chromium_org/v8/test/cctest/ |
cctest.h | 334 // Helper function that simulates a full new-space in the heap. 335 static inline void SimulateFullSpace(v8::internal::NewSpace* space) { 337 *space->allocation_limit_address() - *space->allocation_top_address()); 339 v8::internal::MaybeObject* maybe = space->AllocateRaw(new_linear_size); 341 node->set_size(space->heap(), new_linear_size); 345 // Helper function that simulates a full old-space in the heap. 346 static inline void SimulateFullSpace(v8::internal::PagedSpace* space) { 347 space->EmptyAllocationInfo(); 348 space->ResetFreeList() [all...] |
/external/v8/src/ |
spaces-inl.h | 53 PageIterator::PageIterator(PagedSpace* space) 54 : space_(space), 55 prev_page_(&space->anchor_), 76 NewSpacePageIterator::NewSpacePageIterator(NewSpace* space) 77 : prev_page_(NewSpacePage::FromAddress(space->ToSpaceStart())->prev_page()), 78 next_page_(NewSpacePage::FromAddress(space->ToSpaceStart())), 79 last_page_(NewSpacePage::FromLimit(space->ToSpaceEnd())) { } 81 NewSpacePageIterator::NewSpacePageIterator(SemiSpace* space) 82 : prev_page_(space->anchor()), 204 // space [all...] |
json.js | 307 function JSONStringify(value, replacer, space) { 316 if (IS_OBJECT(space)) { 317 // Unwrap 'space' if it is wrapped 318 if (IS_NUMBER_WRAPPER(space)) { 319 space = ToNumber(space); 320 } else if (IS_STRING_WRAPPER(space)) { 321 space = ToString(space); 325 if (IS_NUMBER(space)) { [all...] |
/art/runtime/gc/accounting/ |
card_table.h | 33 namespace space { namespace in namespace:art::gc 35 } // namespace space 116 // Resets all of the bytes in the card table which do not map to the image space. 117 void ClearSpaceCards(space::ContinuousSpace* space);
|
/build/core/ |
node_fns.mk | 100 $(eval h := |||$(subst $(space),|||,$(strip $(1)))|||) \ 101 $(eval h := $(subst |||$(strip $(2))|||,|||$(space)|||,$(h))) \ 103 $(subst |||,$(space),$(h)) \ 211 # $(foreach _inc,$(_included),$(eval $(warning $(space)$(space)$(space)includes: $(_inc)))),)
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/ |
stringprintf.cc | 59 char space[kSpaceLength]; local 66 int result = vsnprintf(space, kSpaceLength, format, backup_ap); 72 dst->append(space, result); 77 // Error or MSVC running out of space. MSVC 8.0 and higher 78 // can be asked about space needed with the special idiom below:
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/ |
CipherOutputStream.java | 44 int space = BUFF_SIZE - out_buffer_pos; local 45 int copy = (len > space) ? space : len;
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/digest/ |
MD5.java | 196 final int space = 64 - ((int) (count & 0x3f)); local 200 block[64 - space] = b; 202 if (space == 1) 208 int space = 64 - ((int) (count & 0x3f)); local 214 if (len < space) 216 System.arraycopy(buff, pos, block, 64 - space, len); 220 if (space == 64) 226 System.arraycopy(buff, pos, block, 64 - space, space); 230 pos += space; [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_disasm.c | 448 static int control (FILE *file, char *name, char *ctrl[], GLuint id, int *space) 457 if (space && *space) 460 if (space) 461 *space = 1; 1064 int space = 0; local 1155 space = 0; [all...] |
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_disasm.c | 448 static int control (FILE *file, char *name, char *ctrl[], GLuint id, int *space) 457 if (space && *space) 460 if (space) 461 *space = 1; 1064 int space = 0; local 1155 space = 0; [all...] |
/art/runtime/gc/space/ |
dlmalloc_space-inl.h | 24 namespace space { namespace in namespace:art::gc 34 // Zero freshly allocated memory, done while not holding the space's lock. 45 << ") not in bounds of allocation space " << *this; 58 } // namespace space
|
/external/chromium_org/chrome/browser/resources/options/ |
managed_user_import.css | 16 white-space: pre-wrap; 29 white-space: nowrap;
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
breakpointsList.css | 59 white-space: nowrap; 79 white-space: nowrap;
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
internal_logging.cc | 164 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);
|
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
internal_logging.cc | 163 char space[22]; // more than enough for 2^64 in smallest supported base (10) local 164 char* end = space + sizeof(space); 170 } while (num > 0 && pos > space);
|
/external/jmonkeyengine/engine/src/bullet-native/ |
jmeBulletUtil.h | 60 void *space; member in class:jmeUserPointer
|
/external/llvm/test/MC/MachO/ARM/ |
thumb-bl-jbits.s | 7 .space 4441096 - 4 - 2
|
/external/netperf/ |
netcpu_procstat.c | 146 int space; local 161 /* Idle time is the 4th space-separated token */ 163 for (space = 0; space < 4; space ++) {
|
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
ElementType.java | 220 boolean space = false; 226 if (!space) b.append(v); 227 space = true; 231 space = false;
|