HomeSort by relevance Sort by last modified time
    Searched refs:block (Results 226 - 250 of 2292) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/openssl/openssl/crypto/modes/
ofb128.c 64 * 128bit block we have used is contained in *num;
69 block128_f block)
90 (*block)(ivec, ivec, key);
100 (*block)(ivec, ivec, key);
113 (*block)(ivec, ivec, key);
  /external/chromium_org/v8/src/
hydrogen-redundant-phi.h 45 void ProcessBlock(HBasicBlock* block);
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
WorkList.h 31 const CFGBlock *block; member in class:clang::ento::WorkListUnit
39 block(B),
45 block(NULL),
51 /// Returns the block counter map associated with the worklist unit.
55 const CFGBlock *getBlock() const { return block; }
  /external/clang/test/CodeGen/
blockstret.c 65 const char *getBlockSignature(void *block) {
66 struct block_layout_abi *layout = (struct block_layout_abi *)block;
74 int usesStruct(void *block) {
75 struct block_layout_abi *layout = (struct block_layout_abi *)block;
  /external/clang/test/Index/
complete-type-factors.m 20 void (^block)(enum Color, int);
21 block(c, 17);
98 // CHECK-CC6: VarDecl:{ResultType void (^)(enum Color, int)}{TypedText block} (34)
  /external/dropbear/libtomcrypt/src/mac/pmac/
pmac_done.c 30 if ((state->buflen > (int)sizeof(state->block)) || (state->buflen < 0) ||
31 (state->block_len > (int)sizeof(state->block)) || (state->buflen > state->block_len)) {
41 state->checksum[x] ^= state->block[x] ^ state->Lr[x];
46 state->checksum[x] ^= state->block[x];
  /external/eigen/bench/
benchmarkSlice.cpp 31 m.block(r,c,nr,nc) += Mat::Ones(nr,nc);
32 m.block(r,c,nr,nc) *= SCALAR(10);
33 m.block(r,c,nr,nc) -= Mat::constant(nr,nc,10);
34 m.block(r,c,nr,nc) /= SCALAR(10);
  /external/freetype/src/base/
md5.h 38 MD5_u32plus block[16]; member in struct:__anon21074
  /external/grub/netboot/
fsys_tftp.c 40 static unsigned short block, prevblock; variable
63 timeout = rfc2131_sleep_interval (block ? TFTP_REXMT : TIMEOUT, retry);
73 if (! block && retry++ < MAX_TFTP_RETRIES)
87 if (block && ((retry += TFTP_REXMT) < TFTP_TIMEOUT))
187 block = tp.u.ack.block = 0;
205 block = ntohs (tp.u.ack.block = tr->u.data.block);
211 if ((block || bcounter) && (block != prevblock + (unsigned short) 1)
    [all...]
  /external/libnfc-nci/src/nfa/include/
nfa_nv_ci.h 101 UINT8 block);
  /external/libvorbis/lib/
highlevel.h 56 highlevel_byblocktype block[4]; /* padding, impulse, transition, long */ member in struct:highlevel_encode_setup
  /external/mesa3d/src/gallium/auxiliary/util/
u_draw.c 73 assert(format_desc->block.width == 1);
74 assert(format_desc->block.height == 1);
75 assert(format_desc->block.bits % 8 == 0);
76 format_size = format_desc->block.bits/8;
  /external/mesa3d/src/gallium/state_trackers/xvmc/
Makefile 8 C_SOURCES = block.c \
  /external/openssl/crypto/modes/
ofb128.c 64 * 128bit block we have used is contained in *num;
69 block128_f block)
90 (*block)(ivec, ivec, key);
100 (*block)(ivec, ivec, key);
113 (*block)(ivec, ivec, key);
  /external/stressapptest/src/
disk_blocks.h 32 // Data about a block written to disk so that it can be verified later.
48 int64 addr_; // address of first sector in block
49 int64 size_; // size of block
51 bool initialized_; // flag indicating the block was written on disk
57 // Disk Block table - store data from blocks to be write / read by
68 // Get a random block from the list. Only returns if a element
77 // Return a new block in a unused address.
79 // Remove block from structure (called by write threads)
80 int RemoveBlock(BlockData *block);
81 // Release block to be erased (called by random threads
92 BlockData *block; member in struct:DiskBlockTable::StorageData
    [all...]
  /external/yaffs2/yaffs2/direct/
yaffs_ramem2k.c 71 nandemul_Block**block; member in struct:__anon31689
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[blk]->page[pg]->empty = 0
    [all...]
  /system/core/libsparse/
backed_block.h 33 unsigned int len, unsigned int block);
35 unsigned int len, unsigned int block);
37 int64_t offset, unsigned int len, unsigned int block);
39 int64_t offset, unsigned int len, unsigned int block);
  /system/core/libsparse/include/sparse/
sparse.h 34 * size of the file is 2**32 * block_size (16TB for 4k block size).
54 * @data - pointer to data block
55 * @len - length of the data block
56 * @block - offset in blocks into the sparse file to place the data chunk
59 * [block * block_size : block * block_size + len) must not already be used in
60 * the sparse file. If len is not a multiple of the block size the data
64 * data block is removed from the sparse file.
69 void *data, unsigned int len, unsigned int block);
76 * @len - length of the fill block
    [all...]
  /system/extras/ext4_utils/
allocate.h 37 u32 get_block(struct block_allocation *alloc, u32 block);
38 u32 get_oob_block(struct block_allocation *alloc, u32 block);
40 void get_region(struct block_allocation *alloc, u32 *block, u32 *len);
56 u32 block, u32 len, int bg);
  /external/chromium/net/spdy/
spdy_protocol.h 441 uint16 type = ntohs(block()->control_.type_);
447 return ntohs(block()->control_.version_) & kVersionMask;
456 uint16 type = ntohs(block()->control_.type_);
466 // Returns true if this control frame is of a type that has a header block,
476 // The size of the 'Number of Name/Value pairs' field in a Name/Value block.
479 // The size of the 'Length of a name' field in a Name/Value block.
482 // The size of the 'Length of a value' field in a Name/Value block.
486 const struct SpdyFrameBlock* block() const { function in class:spdy::SpdyControlFrame
503 return ntohl(block()->stream_id_) & kStreamIdMask;
511 return ntohl(block()->associated_stream_id_) & kStreamIdMask
536 const struct SpdySynStreamControlFrameBlock* block() const { function in class:spdy::SpdySynStreamControlFrame
573 const struct SpdySynReplyControlFrameBlock* block() const { function in class:spdy::SpdySynReplyControlFrame
614 const struct SpdyRstStreamControlFrameBlock* block() const { function in class:spdy::SpdyRstStreamControlFrame
650 const struct SpdySettingsControlFrameBlock* block() const { function in class:spdy::SpdySettingsControlFrame
685 const struct SpdyPingControlFrameBlock* block() const { function in class:spdy::SpdyPingControlFrame
710 const struct SpdyGoAwayControlFrameBlock* block() const { function in class:spdy::SpdyGoAwayControlFrame
748 const struct SpdyHeadersControlFrameBlock* block() const { function in class:spdy::SpdyHeadersControlFrame
785 const struct SpdyWindowUpdateControlFrameBlock* block() const { function in class:spdy::SpdyWindowUpdateControlFrame
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/table/
filter_block_test.cc 48 Slice block = builder.Finish(); local
49 ASSERT_EQ("\\x00\\x00\\x00\\x00\\x0b", EscapeString(block));
50 FilterBlockReader reader(&policy_, block);
65 Slice block = builder.Finish(); local
66 FilterBlockReader reader(&policy_, block);
96 Slice block = builder.Finish(); local
97 FilterBlockReader reader(&policy_, block);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_scene.c 246 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/e2fsprogs/lib/ext2fs/
expanddir.c 37 char *block; local
50 retval = ext2fs_new_dir_block(fs, 0, 0, &block);
56 retval = ext2fs_write_dir_block(fs, new_blk, block);
58 retval = ext2fs_get_mem(fs->blocksize, &block);
63 memset(block, 0, fs->blocksize);
64 retval = io_channel_write_blk(fs->io, new_blk, 1, block);
70 ext2fs_free_mem(&block);
112 * Update the size and block count fields in the inode.
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_scene.c 246 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/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
CTSBlockCipher.java 9 * A Cipher Text Stealing (CTS) mode cipher. CTS allows block ciphers to
18 * Create a buffered block cipher that uses Cipher Text Stealing
20 * @param cipher the underlying block cipher this buffering object wraps.
75 * process a single byte, producing an output block if neccessary.
175 * Process the last block in the buffer.
177 * @param out the array the block currently being held is copied into.
199 byte[] block = new byte[blockSize];
203 cipher.processBlock(buf, 0, block, 0);
207 throw new DataLengthException("need at least one block of input for CTS");
212 buf[i] = block[i - blockSize]
    [all...]

Completed in 299 milliseconds

1 2 3 4 5 6 7 8 91011>>