Searched defs:block (Results 201 - 225 of 450) sorted by relevance

1234567891011>>

/external/skia/src/core/
H A DSkDeque.cpp235 void SkDeque::freeBlock(Block* block) { argument
236 sk_free(block);
287 // member is then set to the first (or last) element in the block. If
H A DSkWriter32.cpp26 Block* block = fHead; local
29 SkASSERT(block);
30 // don't 'free' the first block, since it is owned by the caller
31 block = block->fNext;
33 while (block) {
34 Block* next = block->fNext;
35 sk_free(block);
36 block = next;
56 Block* block local
85 Block* block = fHead; local
119 Block* block = fHead; local
148 const Block* block = fHead; local
206 const Block* block = fHead; local
221 const Block* block = fHead; local
[all...]
/external/skia/src/gpu/
H A DGrBufferAllocPool.cpp107 BufferBlock& block = fBlocks.back(); local
108 if (block.fBuffer->isLocked()) {
109 block.fBuffer->unlock();
111 size_t flushSize = block.fBuffer->sizeInBytes() - block.fBytesFree;
232 BufferBlock& block = fBlocks.back(); local
233 size_t bytesUsed = block.fBuffer->sizeInBytes() - block.fBytesFree;
239 if (block.fBuffer->isLocked()) {
240 block
265 BufferBlock& block = fBlocks.push_back(); local
317 BufferBlock& block = fBlocks.back(); local
[all...]
/external/srec/portable/src/
H A Dphashtable.c131 PHashTableEntryBlock *tmp, *block; local
136 block = table->entryBlock;
137 while (block != NULL)
139 tmp = block->next;
140 FREE(block);
141 block = tmp;
370 /* Allocate a new block and put all entries on the free list. */
371 PHashTableEntryBlock *block; local
374 block = NEW(PHashTableEntryBlock, table->memoryTag);
375 if (block
[all...]
/external/stressapptest/src/
H A Ddisk_blocks.cc69 void DiskBlockTable::InsertOnStructure(BlockData *block) { argument
70 int64 address = block->GetAddress();
72 sd->block = block;
74 // Creating new block ...
87 int DiskBlockTable::RemoveBlock(BlockData *block) { argument
90 int64 address = block->GetAddress();
107 block->DecreaseReferenceCounter();
108 if (block->GetReferenceCounter() == 0)
109 delete block;
118 ReleaseBlock(BlockData *block) argument
183 BlockData *block = new BlockData(); local
[all...]
H A Derror_diag.cc214 int ErrorDiag::AddHDDMiscompareError(string devicename, int block, int offset, argument
225 error->block_ = block;
267 int ErrorDiag::AddHDDSectorTagError(string devicename, int block, int offset, argument
279 error->block_ = block;
/external/v8/src/
H A Ddata-flow.h124 uint32_t block = data_[i / 32]; local
125 return (block & (1U << (i % 32))) != 0;
/external/valgrind/main/coregrind/
H A Dm_debuglog.c109 volatile Long block[2]; local
110 block[0] = (Long)buf;
111 block[1] = n;
115 "movq %0, %%r15\n" /* r15 = &block */
116 "pushq %%r15\n" /* save &block */
122 "popq %%r15\n" /* reestablish &block */
123 "movq %%rax, 0(%%r15)\n" /* block[0] = result */
127 : /*rd*/ "r" (block)
130 if (block[0] < 0)
131 block[
152 volatile Int block[2]; local
195 volatile Long block[2]; local
238 volatile Int block[2]; local
396 volatile Int block[2]; local
[all...]
/external/valgrind/main/memcheck/tests/amd64/
H A Dbt_everything.c409 UChar* block; local
416 block = calloc(200,1);
417 block += 100;
425 case 0: c = btsl_mem(block, bitoff); break;
426 case 1: c = btrl_mem(block, bitoff); break;
427 case 2: c = btcl_mem(block, bitoff); break;
428 case 3: c = btl_mem(block, bitoff); break;
429 case 4: c = btsq_mem(block, bitoff); break;
430 case 5: c = btrq_mem(block, bitoff); break;
431 case 6: c = btcq_mem(block, bitof
[all...]
/external/valgrind/main/none/tests/x86/
H A Dx86locked.c210 int block[4]; \
233 block[0] = flags_in; \
234 block[1] = g_val; \
235 block[2] = (int)(long)&e_val; \
236 block[3] = 0; \
247 : : "r"(&block[0]) : "eax","ebx","cc","memory" \
254 e_val, block[3] & CC_MASK) ); \
298 int block[3]; \
319 block[0] = flags_in; \
320 block[
563 UChar* block; local
[all...]
/external/webkit/Source/JavaScriptCore/dfg/
H A DDFGNonSpeculativeJIT.cpp653 void NonSpeculativeJIT::compile(SpeculationCheckIndexIterator& checkIterator, BasicBlock& block) argument
655 ASSERT(m_compileIndex == block.begin);
662 for (; m_compileIndex < block.end; ++m_compileIndex) {
H A DDFGSpeculativeJIT.cpp785 bool SpeculativeJIT::compile(BasicBlock& block) argument
787 ASSERT(m_compileIndex == block.begin);
793 for (; m_compileIndex < block.end; ++m_compileIndex) {
/external/webkit/Source/WebCore/bindings/v8/
H A DV8Binding.h231 v8::TryCatch block; local
234 if (block.HasCaught()) {
235 block.ReThrow();
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DFontUtilsChromiumWin.cpp198 UBlockCode block = ublock_getCode(ucs4); local
199 switch (block) {
232 // infer a script based on the unicode block of a character.
/external/webkit/Source/WebCore/rendering/
H A DRenderLineBoxList.cpp151 RenderBox* block; local
153 block = toRenderBox(renderer);
155 block = renderer->containingBlock();
156 int physicalStart = block->flipForWritingMode(logicalTop);
157 int physicalEnd = block->flipForWritingMode(logicalBottom);
/external/webkit/Source/WebCore/rendering/mathml/
H A DRenderMathMLRoot.cpp75 // Add a block for the index
76 RenderBlock* block = new (renderArena()) RenderBlock(node()); local
79 block->setStyle(indexStyle.release());
80 RenderBlock::addChild(block);
84 block = new (renderArena()) RenderBlock(node());
88 block->setStyle(baseStyle.release());
89 RenderBlock::addChild(block);
90 block->addChild(child);
/external/webkit/Tools/DumpRenderTree/chromium/
H A DWebViewHost.h80 void setBlockRedirects(bool block) { m_blocksRedirects = block; } argument
321 // true if we should block any redirects
324 // true if we should block (set an empty request for) any requests
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Daes-gcm.c16 static void inc32(u8 *block) argument
19 val = WPA_GET_BE32(block + AES_BLOCK_SIZE - 4);
21 WPA_PUT_BE32(block + AES_BLOCK_SIZE - 4, val);
124 /* Add zero padded last block */
167 /* Last, partial block */
197 /* Prepare block J_0 = IV || 0^31 || 1 [len(IV) = 96] */
238 * (i.e., zero padded to block size A || C and lengths of each in bits)
H A Ddes-internal.c318 static void desfunc(u32 *block, const u32 *keys) argument
323 leftt = block[0];
324 right = block[1];
392 block[0] = right;
393 block[1] = leftt;
/external/wpa_supplicant_8/src/crypto/
H A Daes-gcm.c16 static void inc32(u8 *block) argument
19 val = WPA_GET_BE32(block + AES_BLOCK_SIZE - 4);
21 WPA_PUT_BE32(block + AES_BLOCK_SIZE - 4, val);
124 /* Add zero padded last block */
167 /* Last, partial block */
197 /* Prepare block J_0 = IV || 0^31 || 1 [len(IV) = 96] */
238 * (i.e., zero padded to block size A || C and lengths of each in bits)
H A Ddes-internal.c318 static void desfunc(u32 *block, const u32 *keys) argument
323 leftt = block[0];
324 right = block[1];
392 block[0] = right;
393 block[1] = leftt;
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Daes-gcm.c16 static void inc32(u8 *block) argument
19 val = WPA_GET_BE32(block + AES_BLOCK_SIZE - 4);
21 WPA_PUT_BE32(block + AES_BLOCK_SIZE - 4, val);
124 /* Add zero padded last block */
167 /* Last, partial block */
197 /* Prepare block J_0 = IV || 0^31 || 1 [len(IV) = 96] */
238 * (i.e., zero padded to block size A || C and lengths of each in bits)
H A Ddes-internal.c318 static void desfunc(u32 *block, const u32 *keys) argument
323 leftt = block[0];
324 right = block[1];
392 block[0] = right;
393 block[1] = leftt;
/external/yaffs2/yaffs2/direct/
H A Dyaffs_ramem2k.c71 nandemul_Block**block; member in struct:__anon17127
100 blk = ned.block[blockNumber];
138 ned.block = YMALLOC(sizeof(nandemul_Block*) * nBlocks );
140 if(!ned.block) return YAFFS_FAIL;
151 if(!(blk = ned.block[i] = YMALLOC(sizeof(nandemul_Block))))
165 ned.block[i]->damaged = 0;
176 YFREE(ned.block[i]);
178 YFREE(ned.block);
207 x = ned.block[blk]->page[pg]->data;
214 ned.block[bl
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
H A DGCMBlockCipher.java61 "cipher required with a block size of " + BLOCK_SIZE + ".");
216 // Hash each block as it fills
230 // Hash each block as it fills
246 // Finish hash for partial AAD block
341 // Finish hash for partial AAD block
450 private void gCTRBlock(byte[] block, byte[] out, int outOff) argument
454 xor(tmp, block);
457 gHASHBlock(S, forEncryption ? tmp : block);
514 private static void multiply(byte[] block, byte[] val) argument
516 byte[] tmp = Arrays.clone(block);
543 shiftRight(byte[] block) argument
559 xor(byte[] block, byte[] val) argument
567 xor(byte[] block, byte[] val, int off, int len) argument
[all...]

Completed in 2378 milliseconds

1234567891011>>