/external/mesa3d/src/mesa/main/ |
execmem.c | 42 * Allocate a large block of memory which can hold code then dole it out 93 struct mem_block *block = NULL; local 103 block = mmAllocMem( exec_heap, size, 32, 0 ); 106 if (block) 107 addr = exec_mem + block->ofs; 124 struct mem_block *block = mmFindBlock(exec_heap, (unsigned char *)addr - exec_mem); local 126 if (block) 127 mmFreeMem(block);
|
/frameworks/base/libs/hwui/ |
PatchCache.cpp | 101 BufferBlock* block = mFreeBlocks; local 102 while (block) { 103 BufferBlock* next = block->next; 104 delete block; 105 block = next; 142 // Add a new free block to the list 144 BufferBlock* block = new BufferBlock(patch->offset, patch->getSize()); local 145 block->next = mFreeBlocks; 146 mFreeBlocks = block; 182 // Find a block where we can fit the mes 184 BufferBlock* block = mFreeBlocks; local 262 BufferBlock* block = mFreeBlocks; local [all...] |
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
SsaInsn.java | 26 /** {@code non-null;} the block that contains this instance */ 27 private final SsaBasicBlock block; field in class:SsaInsn 36 * @param block {@code non-null;} block containing this insn. Can 39 protected SsaInsn(RegisterSpec result, SsaBasicBlock block) { 40 if (block == null) { 41 throw new NullPointerException("block == null"); 44 this.block = block; 52 * @param block {@code non-null;} owning bloc [all...] |
/external/ceres-solver/internal/ceres/ |
residual_block_utils.cc | 47 void InvalidateEvaluation(const ResidualBlock& block, 51 const int num_parameter_blocks = block.NumParameterBlocks(); 52 const int num_residuals = block.NumResiduals(); 58 const int parameter_block_size = block.parameter_blocks()[i]->Size(); 82 string EvaluationToString(const ResidualBlock& block, 90 const int num_parameter_blocks = block.NumParameterBlocks(); 91 const int num_residuals = block.NumResiduals(); 95 "Residual Block size: %d parameter blocks x %d residuals\n\n", 98 "For each parameter block, the value of the parameters are printed in the first column \n" // NOLINT 111 const int parameter_block_size = block.parameter_blocks()[i]->Size() [all...] |
/frameworks/base/core/java/android/os/ |
ConditionVariable.java | 25 * open(), close() and block() are sticky. If open() is called before block(), 26 * block() will not block, and instead return immediately. 59 * Any threads that later approach block() will not block unless close() 77 * Any threads that call block() will block until someone calls open. 87 * Block the current thread until the condition is opened. 92 public void block() method in class:ConditionVariable 117 public boolean block(long timeout) method in class:ConditionVariable [all...] |
/external/chromium_org/v8/src/ |
hydrogen-flow-engine.h | 75 // over a graph of basic blocks, either one block at a time (local analysis) 85 // each block at most twice; once for state, and optionally once for effects. 104 // Local analysis. Iterates over the instructions in the given block. 105 State* AnalyzeOneBlock(HBasicBlock* block, State* state) { 106 // Go through all instructions of the current block, updating the state. 107 for (HInstructionIterator it(block); !it.Done(); it.Advance()) { 114 // block, starting with the initial state. Computes effects for nested loops. 119 // Iterate all dominated blocks starting from the given start block. 121 HBasicBlock* block = graph_->blocks()->at(i); local 124 if (SkipNonDominatedBlock(root, block)) continue [all...] |
hydrogen-load-elimination.h | 44 void EliminateLoads(HBasicBlock* block);
|
hydrogen-dce.cc | 76 HBasicBlock* block = graph()->blocks()->at(i); local 77 for (HInstructionIterator it(block); !it.Done(); it.Advance()) { 81 for (int j = 0; j < block->phis()->length(); j++) { 82 HPhi* phi = block->phis()->at(j); 96 HBasicBlock* block = graph()->blocks()->at(i); local 97 for (HInstructionIterator it(block); !it.Done(); it.Advance()) { 108 for (int j = 0; j < block->phis()->length(); j++) { 109 HPhi* phi = block->phis()->at(j); 121 HBasicBlock* block = phi->block(); local [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/ |
heap.py | 114 # returns a large enough block -- it might be much larger 126 block = seq.pop() 130 (arena, start, stop) = block 133 return block 135 def _free(self, block): 137 (arena, start, stop) = block 153 block = (arena, start, stop) 157 self._len_to_seq[length].append(block) 159 self._len_to_seq[length] = [block] 162 self._start_to_block[(arena, start)] = block [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/ |
heap.py | 114 # returns a large enough block -- it might be much larger 126 block = seq.pop() 130 (arena, start, stop) = block 133 return block 135 def _free(self, block): 137 (arena, start, stop) = block 153 block = (arena, start, stop) 157 self._len_to_seq[length].append(block) 159 self._len_to_seq[length] = [block] 162 self._start_to_block[(arena, start)] = block [all...] |
/device/asus/flo/ |
kickstart_checker.sh | 10 chown system:system $(realpath /dev/block/platform/msm_sdcc.1/by-name/m9kefs1) 11 chmod 660 $(realpath /dev/block/platform/msm_sdcc.1/by-name/m9kefs1) 12 chown system:system $(realpath /dev/block/platform/msm_sdcc.1/by-name/m9kefs2) 13 chmod 660 $(realpath /dev/block/platform/msm_sdcc.1/by-name/m9kefs2) 14 chown system:system $(realpath /dev/block/platform/msm_sdcc.1/by-name/m9kefs3) 15 chmod 660 $(realpath /dev/block/platform/msm_sdcc.1/by-name/m9kefs3) 16 chown system:system $(realpath /dev/block/platform/msm_sdcc.1/by-name/m9kefsc) 17 chmod 660 $(realpath /dev/block/platform/msm_sdcc.1/by-name/m9kefsc)
|
/external/chromium_org/build/config/win/ |
get_msvc_config.py | 36 """Format as an 'environment block' directly suitable for CreateProcess. 39 block = '' 42 block += key + '=' + value + nul 43 block += nul 44 return block
|
/external/chromium_org/net/disk_cache/ |
mapped_file.h | 20 // This class implements a memory mapped file used to access block-files. The 37 // Loads or stores a given block from the backing file (synchronously). 38 bool Load(const FileBlock* block); 39 bool Store(const FileBlock* block); 43 bool Load(const FileBlock* block, FileIOCallback* callback, bool* completed); 44 bool Store(const FileBlock* block, FileIOCallback* callback, bool* completed);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/ |
LineInfo.h | 51 void setEmpty(bool empty, RenderBlock* block = 0, LineWidth* lineWidth = 0) 56 if (!empty && block && floatPaginationStrut()) { 57 block->setLogicalHeight(block->logicalHeight() + floatPaginationStrut());
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_linear.h | 41 /** Block size in bytes */ 44 /** Block width in pixels */ 47 /** Block height in pixels */ 68 /* Describe each block within the tile */ 69 struct u_linear_format_block block; member in struct:pipe_tile_info 81 * @block block info about pixel layout 88 const struct u_linear_format_block *block, 94 if (t->tile.size != t->block.size * t->cols * t->rows) 97 if (t->stride != t->block.size * t->cols * t->tiles_x [all...] |
u_slab.c | 33 /* The block is either allocated memory or free space. */ 36 /* The first next free block. */ 41 /* Memory after the last member is dedicated to the block itself. 57 struct util_slab_block *block; local 65 block = util_slab_get_block(pool, page, i); 66 block->next_free = util_slab_get_block(pool, page, i+1); 67 block->magic = UTIL_SLAB_MAGIC; 70 block = util_slab_get_block(pool, page, pool->num_blocks-1); 71 block->next_free = pool->first_free; 72 block->magic = UTIL_SLAB_MAGIC 83 struct util_slab_block *block; local 97 struct util_slab_block *block = local [all...] |
/external/libvpx/libvpx/vp9/decoder/ |
vp9_detokenize.h | 19 int plane, int block, BLOCK_SIZE plane_bsize,
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_linear.h | 41 /** Block size in bytes */ 44 /** Block width in pixels */ 47 /** Block height in pixels */ 68 /* Describe each block within the tile */ 69 struct u_linear_format_block block; member in struct:pipe_tile_info 81 * @block block info about pixel layout 88 const struct u_linear_format_block *block, 94 if (t->tile.size != t->block.size * t->cols * t->rows) 97 if (t->stride != t->block.size * t->cols * t->tiles_x [all...] |
u_slab.c | 33 /* The block is either allocated memory or free space. */ 36 /* The first next free block. */ 41 /* Memory after the last member is dedicated to the block itself. 57 struct util_slab_block *block; local 65 block = util_slab_get_block(pool, page, i); 66 block->next_free = util_slab_get_block(pool, page, i+1); 67 block->magic = UTIL_SLAB_MAGIC; 70 block = util_slab_get_block(pool, page, pool->num_blocks-1); 71 block->next_free = pool->first_free; 72 block->magic = UTIL_SLAB_MAGIC 83 struct util_slab_block *block; local 97 struct util_slab_block *block = local [all...] |
/external/valgrind/main/memcheck/tests/ |
err_disable3.c | 13 char* block = NULL; variable 25 usechar( block[5] ); 41 block = malloc(10); 42 free(block);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderTextFragment.cpp | 75 if (RenderBlock* block = blockForAccompanyingFirstLetter()) { 76 block->style()->removeCachedPseudoStyle(FIRST_LETTER); 77 block->updateFirstLetter(); 128 for (RenderObject* block = m_firstLetter->parent(); block; block = block->parent()) { 129 if (block->style()->hasPseudoStyle(FIRST_LETTER) && block->canHaveChildren() && block->isRenderBlock() [all...] |
/external/e2fsprogs/e2fsck/ |
ehandler.c | 2 * ehandler.c --- handle bad block errors which come up during the 23 unsigned long block, 39 * If more than one block was read, try reading each block 45 for (i=0; i < count; i++, p += channel->block_size, block++) { 46 error = io_channel_read_blk(channel, block, 54 printf(_("Error reading block %lu (%s) while %s. "), block, 57 printf(_("Error reading block %lu (%s). "), block, [all...] |
/external/chromium/net/disk_cache/ |
mapped_file.h | 19 // This class implements a memory mapped file used to access block-files. The 36 // Loads or stores a given block from the backing file (synchronously). 37 bool Load(const FileBlock* block); 38 bool Store(const FileBlock* block);
|
/external/chromium_org/chrome/browser/resources/gaia_auth/ |
main.css | 20 display: inline-block;
|
/external/chromium_org/third_party/ocmock/OCMock/ |
OCMBlockCaller.h | 12 void (^block)(NSInvocation *);
|