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

1234567891011>>

/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_scene.c246 struct data_block *block, *tmp; local
248 for (block = list->head->next; block; block = tmp) {
249 tmp = block->next;
250 FREE(block);
278 struct cmd_block *block = lp_scene_alloc(scene, sizeof(struct cmd_block)); local
279 if (block) {
281 bin->tail->next = block;
282 bin->tail = block;
305 struct data_block *block = MALLOC_STRUCT(data_block); local
328 const struct data_block *block; local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_fs_cfg.cpp41 fs_bblock *block = link->block; local
44 return block;
106 /* Set up the block just after the endif. Don't know when exactly
111 /* Set up our immediately following block, full of "then"
153 /* Set up the block just after the while. Don't know when exactly
158 /* Set up our immediately following block, full of "then"
220 fs_bblock *block = new(mem_ctx) fs_bblock(); local
222 return block;
226 fs_cfg::set_next_block(fs_bblock *block) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dtexcompress_etc_tmp.h84 TAG(etc1_parse_block)(struct TAG(etc1_block) *block, const UINT8_TYPE *src) argument
88 block->base_colors[0][0] = (int) TAG(etc1_base_color_diff_hi)(src[0]);
89 block->base_colors[1][0] = (int) TAG(etc1_base_color_diff_lo)(src[0]);
90 block->base_colors[0][1] = (int) TAG(etc1_base_color_diff_hi)(src[1]);
91 block->base_colors[1][1] = (int) TAG(etc1_base_color_diff_lo)(src[1]);
92 block->base_colors[0][2] = (int) TAG(etc1_base_color_diff_hi)(src[2]);
93 block->base_colors[1][2] = (int) TAG(etc1_base_color_diff_lo)(src[2]);
97 block->base_colors[0][0] = (int) TAG(etc1_base_color_ind_hi)(src[0]);
98 block->base_colors[1][0] = (int) TAG(etc1_base_color_ind_lo)(src[0]);
99 block
116 etc1_fetch_texel(const struct TAG(etc1_block) *block, int x, int y, UINT8_TYPE *dst) argument
147 struct etc1_block block; local
[all...]
/external/chromium_org/third_party/skia/src/utils/
H A DSkSHA1.cpp15 /** SHA1 basic transformation. Transforms state based on block. */
16 static void transform(uint32_t state[5], const uint8_t block[64]);
123 static void transform(uint32_t state[5], const uint8_t block[64]) { argument
139 W[i] = (((uint32_t)block[j ]) << 24) |
140 (((uint32_t)block[j+1]) << 16) |
141 (((uint32_t)block[j+2]) << 8) |
142 (((uint32_t)block[j+3]) );
/external/chromium_org/third_party/smhasher/src/
H A DSpeedTest.cpp179 uint8_t * block = reinterpret_cast<uint8_t*>(t1); local
181 r.rand_p(block,blocksize);
190 r.rand_p(block,blocksize);
192 double t = (double)timehash(hash,block,blocksize,itrial);
H A Dsha1.cpp100 #define blk0(i) block->l[i]
102 #define blk0(i) (block->l[i] = (rol(block->l[i],24)&0xFF00FF00) | (rol(block->l[i],8)&0x00FF00FF))
104 #define blk(i) (block->l[i&15] = rol(block->l[(i+13)&15]^block->l[(i+8)&15] ^ block->l[(i+2)&15]^block->l[i&15],1))
114 /* Hash a single 512-bit block
122 CHAR64LONG16* block; local
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dsha1.cc115 #define blk0(i) block->l[i]
117 #define blk0(i) (block->l[i] = (rol(block->l[i], 24) & 0xFF00FF00) | \
118 (rol(block->l[i], 8) & 0x00FF00FF))
120 #define blk(i) (block->l[i & 15] = rol(block->l[(i + 13) & 15] ^ \
121 block->l[(i + 8) & 15] ^ block->l[(i + 2) & 15] ^ block->l[i & 15], 1))
153 // Hash a single 512-bit block
162 CHAR64LONG16* block = reinterpret_cast<CHAR64LONG16*>(workspace); local
165 CHAR64LONG16* block = const_cast<CHAR64LONG16*>( local
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Dencode.c47 const int16_t *block, /* (i) speech vector to encode */
106 WEBRTC_SPL_MEMCPY_W16 (iLBCenc_inst->past_samples, block, 80);
110 WEBRTC_SPL_MEMCPY_W16 (iLBCenc_inst->past_samples + 80, block, 80);
115 WEBRTC_SPL_MEMCPY_W16 (data + (iLBCenc_inst->mode * 8) - 80, block, 80);
121 /* copy input block to data*/
122 WEBRTC_SPL_MEMCPY_W16(data,block,iLBCenc_inst->blockl);
45 WebRtcIlbcfix_EncodeImpl( uint16_t *bytes, const int16_t *block, iLBC_Enc_Inst_t *iLBCenc_inst ) argument
/external/chromium_org/v8/src/
H A Dhydrogen-flow-engine.h52 // over a graph of basic blocks, either one block at a time (local analysis)
62 // each block at most twice; once for state, and optionally once for effects.
81 // Local analysis. Iterates over the instructions in the given block.
82 State* AnalyzeOneBlock(HBasicBlock* block, State* state) { argument
83 // Go through all instructions of the current block, updating the state.
84 for (HInstructionIterator it(block); !it.Done(); it.Advance()) {
91 // block, starting with the initial state. Computes effects for nested loops.
96 // Iterate all dominated blocks starting from the given start block.
98 HBasicBlock* block = graph_->blocks()->at(i); local
101 if (SkipNonDominatedBlock(root, block)) continu
141 ComputeLoopEffects(HBasicBlock* block) argument
180 StateAt(HBasicBlock* block) argument
184 SetStateAt(HBasicBlock* block, State* state) argument
197 CheckPredecessorCount(HBasicBlock* block) argument
201 IncrementPredecessorCount(HBasicBlock* block) argument
[all...]
H A Dhydrogen-range-analysis.cc13 Pending(HBasicBlock* block, int last_changed_range) argument
14 : block_(block), last_changed_range_(last_changed_range) {}
16 HBasicBlock* block() const { return block_; } function in class:v8::internal::Pending
36 HBasicBlock* block(graph()->entry_block());
38 while (block != NULL) {
39 TraceRange("Analyzing block B%d\n", block->block_id());
42 if (block->predecessors()->length() == 1) {
43 HBasicBlock* pred = block->predecessors()->first();
46 block);
112 HBasicBlock* block = graph()->blocks()->at(i); local
[all...]
H A Dhydrogen-removable-simulates.cc21 reinterpret_cast<void*>(this), instr->block()->block_id(),
52 // Merge the accumulated simulates at the end of the block.
89 static State* Finish(State* state, HBasicBlock* block, Zone* zone) { argument
92 block->block_id());
95 // block boundaries.
97 // Nasty heuristic: Never remove the first simulate in a block. This
145 // block boundaries.
/external/chromium_org/v8/test/cctest/
H A Dtest-utils.cc158 Vector<int> block = collector.AddBlock(7, 0xbadcafe); local
163 block[i] = i * 7;
/external/clang/lib/ARCMigrate/
H A DTransZeroOutPropsInDealloc.cpp144 bool TraverseBlockDecl(BlockDecl *block) { return true; } argument
145 bool TraverseBlockExpr(BlockExpr *block) { return true; } argument
/external/clang/test/CodeGen/
H A Dblockstret.c72 const char *getBlockSignature(void *block) { argument
73 struct block_layout_abi *layout = (struct block_layout_abi *)block;
81 int usesStruct(void *block) { argument
82 struct block_layout_abi *layout = (struct block_layout_abi *)block;
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_md5.cc39 MD5_u32plus block[16]; member in struct:__tsan::__anon19639
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DBasicBlockList.java37 * and the first-block label is initially {@code -1}.
50 * @param old block to copy
71 * Sets the basic block at the given index.
103 * sum of the instruction counts of each block.
151 * Gets the first block in the list with the given label, if any.
154 * @return {@code non-null;} the so-labelled block
169 * Visits each instruction of each block in the list, in order.
220 * Gets the preferred successor for the given block. If the block
222 * Otherwise, if the block ha
229 preferredSuccessorOf(BasicBlock block) argument
[all...]
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DDominators.java53 /** indexed by basic block index */
94 private BitSet getSuccs(SsaBasicBlock block) { argument
96 return block.getPredecessors();
98 return block.getSuccessors();
102 private BitSet getPreds(SsaBasicBlock block) { argument
104 return block.getSuccessors();
106 return block.getPredecessors();
113 * @param in Basic block whose DFS info we are path compressing.
252 * from the entry block or the exit block)
[all...]
H A DNormalSsaInsn.java32 * @param block block that contains this insn
34 NormalSsaInsn(final Insn insn, final SsaBasicBlock block) { argument
35 super(insn.getResult(), block);
H A DSsaInsn.java26 /** {@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) { argument
40 if (block == null) {
41 throw new NullPointerException("block == null");
44 this.block = block;
52 * @param block {
55 makeFromRop(Insn insn, SsaBasicBlock block) argument
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dalloc.c29 * Check for uninit block bitmaps and deal with them appropriately
102 * Right now, just search forward from the parent directory's block
217 * This function zeros out the allocated block, and updates all of the
224 blk64_t block; local
236 retval = (fs->get_alloc_block)(fs, goal, &block);
246 retval = ext2fs_new_block2(fs, goal, 0, &block);
251 retval = io_channel_write_blk64(fs->io, block, 1, block_buf);
255 ext2fs_block_alloc_stats2(fs, block, +1);
256 *ret = block;
H A Dinode_io.c52 static errcode_t inode_read_blk(io_channel channel, unsigned long block,
54 static errcode_t inode_write_blk(io_channel channel, unsigned long block,
60 unsigned long long block, int count, void *data);
62 unsigned long long block, int count, const void *data);
210 unsigned long long block, int count, void *buf)
220 block * channel->block_size,
229 static errcode_t inode_read_blk(io_channel channel, unsigned long block, argument
232 return inode_read_blk64(channel, block, count, buf);
236 unsigned long long block, int count, const void *buf)
246 block * channe
209 inode_read_blk64(io_channel channel, unsigned long long block, int count, void *buf) argument
235 inode_write_blk64(io_channel channel, unsigned long long block, int count, const void *buf) argument
255 inode_write_blk(io_channel channel, unsigned long block, int count, const void *buf) argument
[all...]
H A Direl.h13 blk64_t block; member in struct:ext2_inode_reference
63 * particular block/offset contains a reference to an inode)
/external/e2fsprogs/util/
H A Dcopy_sparse.c46 #define FIGETBSZ _IO(0x00,2) /* get the block size used for bmap */
48 static unsigned long get_bmap(int fd, unsigned long block) argument
53 b = block;
93 long lb, i, fd, ofd, bs, block, numblocks; local
121 printf("%s: Invalid block size: %ld\n", src, bs);
149 block = get_bmap(fd, lb);
150 if (!block)
/external/eigen/test/
H A Dblock.cpp20 VERIFY_IS_APPROX(m1.block(r1,c1,r2-r1+1,c2-c1+1).cwiseMin(s1), m1.cwiseMin(s1).block(r1,c1,r2-r1+1,c2-c1+1));
21 VERIFY_IS_APPROX(m1.block(r1,c1,r2-r1+1,c2-c1+1).cwiseMax(s1), m1.cwiseMax(s1).block(r1,c1,r2-r1+1,c2-c1+1));
33 template<typename MatrixType> void block(const MatrixType& m) function
68 // check nested block xpr on lhs
78 //check block()
81 RowVectorType br1(m1.block(r1,0,1,cols));
82 VectorType bc1(m1.block(0,c1,rows,1));
83 VERIFY_IS_EQUAL(b1, m1.block(r
[all...]
/external/glide/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/
H A DGifHeaderParser.java22 protected byte[] block = new byte[256]; // current data block field in class:GifHeaderParser
23 protected int blockSize = 0; // block size last graphic control extension info
81 app += (char) block[i];
113 read(); // block size
123 read(); // block terminator
166 if (block[0] == 1) {
167 // loop count sub-block
168 int b1 = ((int) block[1]) & 0xff;
169 int b2 = ((int) block[
[all...]

Completed in 3684 milliseconds

1234567891011>>