HomeSort by relevance Sort by last modified time
    Searched defs:block (Results 176 - 200 of 1844) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
WorkList.h 31 const CFGBlock *block; member in class:clang::ento::WorkListUnit
39 block(B),
45 block(nullptr),
51 /// Returns the block counter map associated with the worklist unit.
55 const CFGBlock *getBlock() const { return block; }
  /external/drm_hwcomposer/tests/
queue_worker_test.cpp 36 std::lock_guard<std::mutex> blk(block);
50 std::mutex block; member in struct:TestQueueWorker
118 // Block processing and fill up the queue
119 std::unique_lock<std::mutex> lk(qw.block);
  /external/e2fsprogs/debugfs/
zap.c 2 * zap.c --- zap block
34 blk64_t block; local
59 "must be within a %d block\n",
82 "within a %d block\n",
123 block = parse_ulonglong(argv[optind], argv[0], "block", &err);
132 block, 0, &block);
135 "while mapping logical block %llu\n", block);
175 blk64_t block; local
    [all...]
  /external/e2fsprogs/e2fsck/
emptydir.c 98 printf(_("Empty directory block %u (#%d) in inode %u\n"),
115 * copy the block reference as necessary. Big question --- what do
124 blk64_t block, new_block; local
129 block = *block_nr;
141 if (new_block == block)
  /external/e2fsprogs/lib/ext2fs/
bmove.c 47 blk64_t block, orig; local
50 block = orig = *block_nr;
56 if (ext2fs_test_block_bitmap2(pb->reserve, block)) {
58 if (++block >= ext2fs_blocks_count(fs->super))
59 block = fs->super->s_first_data_block;
60 if (block == orig) {
64 } while (ext2fs_test_block_bitmap2(pb->reserve, block) ||
65 ext2fs_test_block_bitmap2(pb->alloc_map, block));
72 retval = io_channel_write_blk64(fs->io, block, 1, pb->buf);
77 *block_nr = block;
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
Trie2_16.java 186 int block = 0; local
190 // - a partial data block
191 // - a reference to the null (default) data block.
192 // - a reference to the index2 null block
204 block = index[cp >> UTRIE2_SHIFT_2] << UTRIE2_INDEX_SHIFT;
208 block = index[index2Block + ((cp - 0xd800) >> UTRIE2_SHIFT_2)] << UTRIE2_INDEX_SHIFT;
213 block = index[index2Block + ((cp >> UTRIE2_SHIFT_2) & UTRIE2_INDEX_2_MASK)] << UTRIE2_INDEX_SHIFT;
227 } else if (block == dataNullOffset) {
228 // The block at dataNullOffset has all values == initialValue.
230 // encounter a null block at its beginning, and can skip ove
    [all...]
Trie2_32.java 183 int block = 0; local
187 // - a partial data block
188 // - a reference to the null (default) data block.
189 // - a reference to the index2 null block
201 block = index[cp >> UTRIE2_SHIFT_2] << UTRIE2_INDEX_SHIFT;
205 block = index[index2Block + ((cp - 0xd800) >> UTRIE2_SHIFT_2)] << UTRIE2_INDEX_SHIFT;
210 block = index[index2Block + ((cp >> UTRIE2_SHIFT_2) & UTRIE2_INDEX_2_MASK)] << UTRIE2_INDEX_SHIFT;
224 } else if (block == dataNullOffset) {
225 // The block at dataNullOffset has all values == initialValue.
227 // encounter a null block at its beginning, and can skip ove
    [all...]
  /external/ipsec-tools/src/racoon/missing/crypto/rijndael/
rijndael-api-fst.c 96 word8 block[16], iv[4][4]; local
120 bcopy(cipher->IV, block, 16);
122 ((word32*)block)[0] ^= ((word32*)iv)[0];
123 ((word32*)block)[1] ^= ((word32*)iv)[1];
124 ((word32*)block)[2] ^= ((word32*)iv)[2];
125 ((word32*)block)[3] ^= ((word32*)iv)[3];
127 ((word32*)block)[0] = ((word32*)cipher->IV)[0] ^ ((word32*)input)[0];
128 ((word32*)block)[1] = ((word32*)cipher->IV)[1] ^ ((word32*)input)[1];
129 ((word32*)block)[2] = ((word32*)cipher->IV)[2] ^ ((word32*)input)[2];
130 ((word32*)block)[3] = ((word32*)cipher->IV)[3] ^ ((word32*)input)[3]
210 word8 block[16], *iv, *cp; local
273 word8 block[16], iv[4][4]; local
371 word8 block[16]; local
463 word8 block[4][4]; local
    [all...]
  /external/javaparser/javaparser-core-generators/src/main/java/com/github/javaparser/generator/core/node/
RemoveMethodGenerator.java 81 final BlockStmt block = removeMethod.getBody().get(); local
82 block.addStatement(f("return %s((%s) null);", property.getSetterMethodName(), property.getTypeNameForSetter()));
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/stmt/
SynchronizedStmt.java 37 private BlockStmt block; field in class:SynchronizedStmt
42 public SynchronizedStmt(final Expression expr, final BlockStmt block) {
44 setBlock(block);
48 final BlockStmt block) {
51 setBlock(block);
70 return block;
79 * @param block
82 public SynchronizedStmt setBlock(final BlockStmt block) {
83 this.block = block;
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/body/
InitializerDeclaration.java 37 private BlockStmt block; field in class:InitializerDeclaration
42 public InitializerDeclaration(boolean isStatic, BlockStmt block) {
45 setBlock(block);
48 public InitializerDeclaration(int beginLine, int beginColumn, int endLine, int endColumn, boolean isStatic, BlockStmt block) {
51 setBlock(block);
65 return block;
72 public void setBlock(BlockStmt block) {
73 this.block = block;
74 setAsParentNodeOf(this.block);
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_etc.c 29 struct etc1_block block; local
36 etc1_parse_block(&block, src);
43 etc1_fetch_texel(&block, i, j, tmp);
68 struct etc1_block block; local
71 assert(i < 4 && j < 4); /* check i, j against 4x4 block size */
73 etc1_parse_block(&block, src);
74 etc1_fetch_texel(&block, i, j, tmp);
u_mm.c 72 struct mem_block *heap, *block; local
81 block = CALLOC_STRUCT(mem_block);
82 if (!block) {
87 heap->next = block;
88 heap->prev = block;
89 heap->next_free = block;
90 heap->prev_free = block;
92 block->heap = heap;
93 block->next = heap;
94 block->prev = heap
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_printf.c 67 LLVMBasicBlockRef block = LLVMAppendBasicBlockInContext(gallivm->context, func, "entry"); local
71 LLVMPositionBuilderAtEnd(builder, block);
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
fifo.hpp 94 uint32_t block = mHead >> mBlockSizeShift; local
95 return &mBlocks[block][mHead & (mBlockSize-1)];
  /external/mesa3d/src/mesa/main/
mm.c 63 struct mem_block *heap, *block; local
72 block = calloc(1, sizeof(struct mem_block));
73 if (!block) {
78 heap->next = block;
79 heap->prev = block;
80 heap->next_free = block;
81 heap->prev_free = block;
83 block->heap = heap;
84 block->next = heap;
85 block->prev = heap
    [all...]
  /external/python/cpython2/Modules/_multiprocessing/
pipe_connection.c 97 BOOL block = FALSE; local
106 block = TRUE;
119 if (!block) {
  /external/squashfs-tools/kernel/fs/squashfs/
inode.c 28 * location of the compressed metadata block containing the inode, and the byte
29 * offset into that block where the inode is placed (<block, offset>).
111 u64 block = SQUASHFS_INODE_BLK(ino) + msblk->inode_table; local
121 err = squashfs_read_metadata(sb, sqshb_ino, &block,
130 block = SQUASHFS_INODE_BLK(ino) + msblk->inode_table;
140 err = squashfs_read_metadata(sb, sqsh_ino, &block, &offset,
168 squashfs_i(inode)->block_list_start = block;
174 offset, squashfs_i(inode)->start, block, offset);
182 err = squashfs_read_metadata(sb, sqsh_ino, &block, &offset
    [all...]
  /external/swiftshader/src/Common/
Memory.cpp 63 unsigned char *block; member in struct:sw::Allocation
68 unsigned char *block = new unsigned char[bytes + sizeof(Allocation) + alignment]; local
71 if(block)
73 aligned = (unsigned char*)((uintptr_t)(block + sizeof(Allocation) + alignment - 1) & -(intptr_t)alignment);
77 allocation->block = block;
102 delete[] allocation->block;
  /external/syslinux/core/fs/
cache.c 15 * the block size, which is 512 byte for FAT fs of the current
16 * implementation since the block(cluster) size in FAT is a bit big.
32 /* We need one struct cache for the headnode plus one for each block */
43 head->block = -1;
51 cur->block = -1;
62 * Lock a block permanently in the cache by removing it
74 * Check for a particular BLOCK in the block cache,
76 * otherwise pick a victim block and update the LRU link.
78 struct cache *_get_cache_block(struct device *dev, block_t block)
141 block_t block; local
    [all...]
  /external/tensorflow/tensorflow/core/lib/core/
arena.cc 71 // satisfying alignment without exhausting the current block.
96 // There is no guarantee the first block is properly aligned, so
106 // (though GetMemory() can also make a new block for really big
111 AllocatedBlock* block = AllocNewBlock(block_size_, alignment); local
112 freestart_ = block->mem;
113 remaining_ = block->size;
137 AllocatedBlock* block; local
138 // Find the next block.
141 block = &first_blocks_[blocks_alloced_++];
145 // Adds another block to the vector
    [all...]
  /external/v8/src/crankshaft/
hydrogen-infer-representation.cc 118 HBasicBlock* block = graph()->blocks()->at(i); local
119 const ZoneList<HPhi*>* phis = block->phis();
124 for (HInstructionIterator it(block); !it.Done(); it.Advance()) {
140 HBasicBlock* block = graph()->blocks()->at(i); local
141 const ZoneList<HPhi*>* phis = block->phis();
148 for (HInstructionIterator it(block); !it.Done(); it.Advance()) {
  /external/valgrind/memcheck/tests/
atomic_incs.c 29 unsigned long block[2]; local
30 block[0] = (unsigned long)p;
31 block[1] = n;
36 : : "S"(&block[0])/* S means "esi only" */ : "memory","cc","eax","ebx"
39 unsigned long block[2];
40 block[0] = (unsigned long)p;
41 block[1] = n;
46 : : "S"(&block[0])/* S means "rsi only" */ : "memory","cc","rax","rbx"
100 unsigned int block[3]
112 : /*in*/ "r"(&block[0]
245 unsigned long block[2]; local
460 unsigned long block[2]; local
    [all...]
  /external/valgrind/none/tests/amd64/
pcmpxstrx64.c 56 ULong block[ 2/*in:argL*/ // 0 0 local
63 assert(sizeof(block) == 80);
65 UChar* blockC = (UChar*)&block[0];
94 printf(" rcx %016llx flags %08llx\n", block[8], block[9] & 0x8D5);
123 printf(" rcx %016llx flags %08llx\n", block[8], block[9] & 0x8D5);
152 printf(" rcx %016llx flags %08llx\n", block[8], block[9] & 0x8D5);
181 printf(" rcx %016llx flags %08llx\n", block[8], block[9] & 0x8D5)
    [all...]
pcmpxstrx64w.c 57 ULong block[ 2/*in:argL*/ // 0 0 local
64 assert(sizeof(block) == 80);
66 UChar* blockC = (UChar*)&block[0];
95 printf(" rcx %016llx flags %08llx\n", block[8], block[9] & 0x8D5);
124 printf(" rcx %016llx flags %08llx\n", block[8], block[9] & 0x8D5);
153 printf(" rcx %016llx flags %08llx\n", block[8], block[9] & 0x8D5);
182 printf(" rcx %016llx flags %08llx\n", block[8], block[9] & 0x8D5)
    [all...]

Completed in 837 milliseconds

1 2 3 4 5 6 78 91011>>