Searched refs:block (Results 251 - 275 of 1527) sorted by relevance

<<11121314151617181920>>

/external/chromium-trace/trace-viewer/src/tcmalloc/
H A Dtcmalloc_snapshot_view.css42 display: inline-block;
50 display: inline-block;
58 display: inline-block;
/external/clang/lib/ARCMigrate/
H A DTransBlockObjCVariable.cpp14 // This transformation checks whether a reference of the variable for the block
78 bool VisitBlockDecl(BlockDecl *block) { argument
82 I = block->capture_begin(), E = block->capture_end(); I != E; ++I) {
95 bool onlyValueOfVarIsNeeded = checker.TraverseStmt(block->getBody());
120 bool TraverseBlockDecl(BlockDecl *block) { argument
121 RootBlockObjCVarRewriter(VarsToChange).TraverseDecl(block);
/external/valgrind/main/memcheck/tests/
H A Drealloc3.stderr.exp3 Address 0x........ is 15 bytes after a block of size 5 alloc'd
9 Address 0x........ is 15 bytes after a block of size 5 alloc'd
15 Address 0x........ is 15 bytes after a block of size 5 alloc'd
/external/elfutils/libdw/
H A Ddwarf_getlocation.c115 getlocation (struct Dwarf_CU *cu, const Dwarf_Block *block, argument
121 struct loc_s fake = { .addr = block->data };
132 const unsigned char *data = block->data;
133 const unsigned char *const end_data = data + block->length;
138 block of size zero. */
145 newloc->offset = data - block->data;
332 newp->addr = block->data;
350 /* If it has a block form, it's a single location expression. */
351 Dwarf_Block block;
352 if (INTUSE(dwarf_formblock) (attr, &block) !
373 Dwarf_Block block; local
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/modes/
H A Dcfb128.c64 * 128bit block we have used is contained in *num;
69 int enc, block128_f block)
91 (*block)(ivec, ivec, key);
102 (*block)(ivec, ivec, key);
115 (*block)(ivec, ivec, key);
136 (*block)(ivec, ivec, key);
148 (*block)(ivec, ivec, key);
163 (*block)(ivec, ivec, key);
173 /* This expects a single block of size nbits for both in and out. Note that
178 block128_f block)
66 CRYPTO_cfb128_encrypt(const unsigned char *in, unsigned char *out, size_t len, const void *key, unsigned char ivec[16], int *num, int enc, block128_f block) argument
175 cfbr_encrypt_block(const unsigned char *in,unsigned char *out, int nbits,const void *key, unsigned char ivec[16],int enc, block128_f block) argument
209 CRYPTO_cfb128_1_encrypt(const unsigned char *in, unsigned char *out, size_t bits, const void *key, unsigned char ivec[16], int *num, int enc, block128_f block) argument
229 CRYPTO_cfb128_8_encrypt(const unsigned char *in, unsigned char *out, size_t length, const void *key, unsigned char ivec[16], int *num, int enc, block128_f block) argument
[all...]
/external/openssl/crypto/modes/
H A Dcfb128.c64 * 128bit block we have used is contained in *num;
69 int enc, block128_f block)
91 (*block)(ivec, ivec, key);
102 (*block)(ivec, ivec, key);
115 (*block)(ivec, ivec, key);
136 (*block)(ivec, ivec, key);
148 (*block)(ivec, ivec, key);
163 (*block)(ivec, ivec, key);
173 /* This expects a single block of size nbits for both in and out. Note that
178 block128_f block)
66 CRYPTO_cfb128_encrypt(const unsigned char *in, unsigned char *out, size_t len, const void *key, unsigned char ivec[16], int *num, int enc, block128_f block) argument
175 cfbr_encrypt_block(const unsigned char *in,unsigned char *out, int nbits,const void *key, unsigned char ivec[16],int enc, block128_f block) argument
209 CRYPTO_cfb128_1_encrypt(const unsigned char *in, unsigned char *out, size_t bits, const void *key, unsigned char ivec[16], int *num, int enc, block128_f block) argument
229 CRYPTO_cfb128_8_encrypt(const unsigned char *in, unsigned char *out, size_t length, const void *key, unsigned char ivec[16], int *num, int enc, block128_f block) argument
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DGrBufferAllocPool.cpp108 BufferBlock& block = fBlocks.back(); local
109 if (block.fBuffer->isLocked()) {
110 block.fBuffer->unlock();
112 size_t flushSize = block.fBuffer->sizeInBytes() - block.fBytesFree;
233 BufferBlock& block = fBlocks.back(); local
234 size_t bytesUsed = block.fBuffer->sizeInBytes() - block.fBytesFree;
240 if (block.fBuffer->isLocked()) {
241 block
266 BufferBlock& block = fBlocks.push_back(); local
330 BufferBlock& block = fBlocks.back(); local
[all...]
/external/skia/src/gpu/
H A DGrBufferAllocPool.cpp108 BufferBlock& block = fBlocks.back(); local
109 if (block.fBuffer->isLocked()) {
110 block.fBuffer->unlock();
112 size_t flushSize = block.fBuffer->sizeInBytes() - block.fBytesFree;
233 BufferBlock& block = fBlocks.back(); local
234 size_t bytesUsed = block.fBuffer->sizeInBytes() - block.fBytesFree;
240 if (block.fBuffer->isLocked()) {
241 block
266 BufferBlock& block = fBlocks.push_back(); local
330 BufferBlock& block = fBlocks.back(); local
[all...]
/external/clang/lib/Analysis/
H A DLiveVariables.cpp39 void enqueueBlock(const CFGBlock *block);
40 void enqueueSuccessors(const CFGBlock *block);
41 void enqueuePredecessors(const CFGBlock *block);
50 void DataflowWorklist::enqueueBlock(const clang::CFGBlock *block) { argument
51 if (block && !enqueuedBlocks[block->getBlockID()]) {
52 enqueuedBlocks[block->getBlockID()] = true;
53 worklist.push_back(block);
57 void DataflowWorklist::enqueueSuccessors(const clang::CFGBlock *block) { argument
59 for (CFGBlock::const_succ_iterator I = block
70 enqueuePredecessors(const clang::CFGBlock *block) argument
462 runOnBlock(const CFGBlock *block, LiveVariables::LivenessValues val, LiveVariables::Observer *obs) argument
528 const CFGBlock *block = *it; local
[all...]
/external/chromium_org/chrome/browser/resources/file_manager/css/
H A Dtree.css8 display: block;
27 display: inline-block;
59 display: block;
67 display: inline-block;
/external/chromium_org/chrome/browser/resources/options/
H A Dpassword_manager.css27 display: inline-block;
/external/chromium_org/chrome/browser/resources/print_preview/search/
H A Dsearch_box.css12 display: inline-block;
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dplatform_app.css19 display: inline-block;
/external/chromium_org/native_client_sdk/src/libraries/sdk_util/
H A Dthread_safe_queue.h39 T* Dequeue(bool block) { argument
43 if (block) {
/external/chromium_org/net/disk_cache/
H A Dmapped_file.h20 // 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);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A Dsvg.css51 display: block
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLImport.h71 static void block(HTMLImport*);
74 void block();
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGRootInlineBox.h36 SVGRootInlineBox(RenderBlock* block) argument
37 : RootInlineBox(block)
/external/chromium_org/third_party/freetype/include/freetype/
H A Dftsystem.h85 * Address of new memory block. 0~in case of failure.
99 * A function used to release a given block of memory.
105 * block ::
106 * The address of the target memory block.
111 void* block );
120 * A function used to re-allocate a given block of memory.
127 * The block's current size in bytes.
130 * The block's requested new size.
132 * block ::
133 * The block'
[all...]
/external/chromium_org/ui/webui/resources/css/
H A Dbutter_bar.css18 display: inline-block;
/external/chromium_org/v8/src/
H A Dhydrogen-environment-liveness.h54 void ZapEnvironmentSlotsInSuccessors(HBasicBlock* block, BitVector* live);
56 void UpdateLivenessAtBlockEnd(HBasicBlock* block, BitVector* live);
65 // Per-block data. All these lists are indexed by block_id.
H A Dhydrogen-gvn.cc397 // Compute side effects for the block.
398 HBasicBlock* block = graph()->blocks()->at(i); local
399 int id = block->block_id();
401 for (HInstructionIterator it(block); !it.Done(); it.Advance()) {
413 if (block->IsLoopHeader()) {
418 if (block->HasParentLoopHeader()) {
419 int header_id = block->parent_loop_header()->block_id();
420 loop_side_effects_[header_id].Add(block->IsLoopHeader()
518 HBasicBlock* block = graph()->blocks()->at(i);
519 if (block
529 ProcessLoopBlock(graph()->blocks()->at(j), block, side_effects, local
538 ProcessLoopBlock( HBasicBlock* block, HBasicBlock* loop_header, GVNFlagSet loop_kills, GVNFlagSet* first_time_depends, GVNFlagSet* first_time_changes) argument
621 HBasicBlock* block = dominated->predecessors()->at(i); local
653 HBasicBlock* block() { return block_; } function in class:v8::internal::BASE_EMBEDDED::GvnBasicBlockState
680 Initialize(HBasicBlock* block, HValueMap* map, HSideEffectMap* dominators, bool copy_map, Zone* zone) argument
695 GvnBasicBlockState(GvnBasicBlockState* previous, HBasicBlock* block, HValueMap* map, HSideEffectMap* dominators, Zone* zone) argument
721 push(Zone* zone, HBasicBlock* block) argument
762 HBasicBlock* block = current->block(); local
[all...]
/external/clang/test/CodeGenCXX/
H A Dinstantiate-blocks.cpp6 void (^block)(int);
23 T1 (^block)(char, T, T1, double) =
/external/clang/test/Sema/
H A Dblock-args.c20 ^{return 2;}(arg); // expected-error {{too many arguments to block call}}
21 ^(void){return 3;}(1); // expected-error {{too many arguments to block call}}
22 ^(){return 4;}(arg); // expected-error {{too many arguments to block call}}
55 void (^block)(array_ty) = ^(array_ty arr) { };
57 block(arr);
/external/e2fsprogs/lib/ext2fs/
H A Dtst_iscan.c38 static void test_read_blk(unsigned long block, int count, errcode_t err) argument
48 printf("%lu-%lu", block, block+count-1);
50 printf("%lu", block);
52 for (i=0; i < count; i++, block++) {
53 if (ext2fs_test_block_bitmap(touched_map, block)) {
54 printf("\nDuplicate block?!? --- %lu\n", block);
58 ext2fs_mark_block_bitmap(touched_map, block);
92 retval = ext2fs_allocate_block_bitmap(test_fs, "bad block ma
[all...]

Completed in 709 milliseconds

<<11121314151617181920>>