/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/ |
r600.h | 96 /* there is a block entry for each register so 512 blocks */ 146 struct r600_block **blocks; member in struct:r600_range
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/ |
radeonsi_pipe.h | 57 /* linked list of preallocated blocks */ 58 struct list_head blocks; member in struct:r600_pipe_fences
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
glsl_parser_extras.h | 96 * Currently affects uniform blocks and uniform buffer variables in 97 * those blocks.
|
/external/chromium_org/third_party/openssl/openssl/crypto/aes/ |
aes.h | 125 /* NB: the IV is _two_ blocks long */ 129 /* NB: the IV is _four_ blocks long */
|
/external/chromium_org/third_party/openssl/openssl/include/openssl/ |
aes.h | 125 /* NB: the IV is _two_ blocks long */ 129 /* NB: the IV is _four_ blocks long */
|
modes.h | 19 size_t blocks, const void *key, 23 size_t blocks, const void *key,
|
/external/chromium_org/third_party/opus/src/celt/ |
bands.h | 89 * @param shortBlocks Zero for long blocks, non-zero for short blocks
|
/external/chromium_org/third_party/sqlite/src/src/ |
mem5.c | 30 ** 2. If two adjacent free blocks are the halves of a larger block, 31 ** then the two blocks are coalesed into the single larger block. 97 int nBlock; /* Number of szAtom sized blocks in zPool */ 118 ** Lists of free blocks. aiFreelist[0] is a list of free blocks of 119 ** size mem5.szAtom. aiFreelist[1] holds blocks of size szAtom*2. 125 ** Space for tracking which blocks are checked out and the size 308 ** the array of mem5.szAtom byte blocks pointed to by mem5.zPool.
|
/external/chromium_org/third_party/sqlite/src/test/ |
crash2.test | 33 # simulated disk blocks (i.e. 3KB file using 2KB disk blocks).
|
/external/chromium_org/third_party/tcmalloc/chromium/src/base/ |
low_level_alloc.cc | 69 // first. Valid in both allocated and unallocated blocks 75 // Next two fields: in unallocated blocks: freelist skiplist data 76 // in allocated blocks: overlaps with client data 191 int32 allocation_count; // count of allocated blocks (under mu) 210 // magic numbers to identify allocated and unallocated blocks 271 // Don't allocate blocks less than twice the roundup size to avoid tiny 272 // free blocks. 445 if (i < arena->freelist.levels) { // potential blocks exist
|
low_level_alloc.h | 93 // provided no allocated blocks remain in the arena. 94 // If allocated blocks remain in the arena, does nothing and
|
/external/chromium_org/third_party/tcmalloc/vendor/src/base/ |
low_level_alloc.cc | 69 // first. Valid in both allocated and unallocated blocks 75 // Next two fields: in unallocated blocks: freelist skiplist data 76 // in allocated blocks: overlaps with client data 191 int32 allocation_count; // count of allocated blocks (under mu) 210 // magic numbers to identify allocated and unallocated blocks 271 // Don't allocate blocks less than twice the roundup size to avoid tiny 272 // free blocks. 445 if (i < arena->freelist.levels) { // potential blocks exist
|
low_level_alloc.h | 93 // provided no allocated blocks remain in the arena. 94 // If allocated blocks remain in the arena, does nothing and
|
/external/chromium_org/v8/src/ |
handles.cc | 50 int n = impl->blocks()->length(); 53 (isolate->handle_scope_data()->next - impl->blocks()->last())); 74 if (!impl->blocks()->is_empty()) { 75 Object** limit = &impl->blocks()->last()[kHandleBlockSize]; 87 // Add the extension to the global list of blocks, but count the 89 impl->blocks()->Add(result); 759 ASSERT(data->limit == &impl_->blocks()->last()[kHandleBlockSize]); 760 impl_->blocks()->Add(new_next);
|
lithium-codegen.cc | 81 // Don't emit code for basic blocks with a replacement. 143 for (int i = current_block_ + 1; i < graph()->blocks()->length(); ++i) {
|
/external/chromium_org/v8/src/platform/ |
condition-variable.h | 66 // notified or a spurious wakeup occurs. Atomically releases the mutex, blocks 74 // Atomically releases the mutex, blocks the current executing thread, and
|
/external/clang/include/clang/Lex/ |
PTHLexer.h | 40 /// This is used to perform quick skipping of conditional blocks. 44 /// to process when doing quick skipping of preprocessor blocks.
|
/external/clang/lib/AST/ |
Mangle.cpp | 10 // Implements generic name mangling support for blocks and Objective-C. 34 // FIXME: For blocks we currently mimic GCC's mangling scheme, which leaves
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
AnalyzerStatsChecker.cpp | 30 "The # of blocks in top level functions"); 32 "The # of unreachable blocks in analyzing top level functions");
|
/external/clang/test/Analysis/ |
blocks.m | 1 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -analyze -analyzer-checker=core -analyzer-store=region -fblocks -analyzer-opt-analyze-nested-blocks -verify %s 2 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -analyze -analyzer-checker=core -analyzer-store=region -fblocks -analyzer-opt-analyze-nested-blocks -verify -x objective-c++ %s
|
/external/clang/test/SemaObjC/ |
blocks.m | 109 // These two blocks actually return 'int' 169 // These two blocks actually return 'unsigned'.
|
/external/compiler-rt/BlocksRuntime/ |
Block_private.h | 127 /* the raw data space for runtime classes for blocks */ 128 /* class+meta used for stack, malloc, and collectable based blocks */
|
runtime.c | 243 /* blocks with ctors & dtors need to have the dtor run from a class with a finalizer */ 267 * Blocks and Block_byrefs have their own special entry points. 359 * Runtime entry points for maintaining the sharing knowledge of byref data blocks. 531 3) Other Blocks 544 When a __block variable is either a C++ object, an Objective-C object, or another Block then the compiler also generates copy/dispose helper functions. Similarly to the Block copy helper, the "__block" copy helper (formerly and still a.k.a. "byref" copy helper) will do a C++ copy constructor (not a const one though!) and the dispose helper will do the destructor. And similarly the helpers will call into the same two support functions with the same values for objects and Blocks with the additional BLOCK_BYREF_CALLER (128) bit of information supplied. 546 So the __block copy/dispose helpers will generate flag values of 3 or 7 for objects and Blocks respectively, with BLOCK_FIELD_IS_WEAK (16) or'ed as appropriate and always 128 or'd in, for the following set of possibilities: 557 * When Blocks or Block_byrefs hold objects then their copy routine helpers use this entry point 590 // When Blocks or Block_byrefs hold objects their destroy helper routines call this entry point
|
/external/e2fsprogs/e2fsck/ |
pass4.c | 12 * - A bitmap of which inodes are in bad blocks. (inode_bb_map) 51 * blocks. If there is an EA block, it might have useful
|
recovery.c | 222 * blocks. In the third and final pass, we replay any un-revoked blocks 257 jbd_debug(1, "JBD: Replayed %d and revoked %d/%d blocks\n", 322 * calc_chksums calculates the checksums for the blocks described in the 459 * just skip over the blocks it describes. */ 481 * the data blocks. Yay, useful work is finally 641 * commit blocks. 718 /* Scan a revoke record, marking all blocks mentioned as revoked. */
|