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

1 2 3 4 5 6 7 8 91011>>

  /external/freetype/src/base/
md5.h 38 MD5_u32plus block[16]; member in struct:__anon20161
  /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);
cbc128.c 68 unsigned char ivec[16], block128_f block)
81 (*block)(out, out, key);
92 (*block)(out, out, key);
105 (*block)(out, out, key);
117 unsigned char ivec[16], block128_f block)
131 (*block)(in, out, key);
142 (*block)(in, out, key);
157 (*block)(in, tmp.c, key);
171 (*block)(in, tmp.c, key);
187 (*block)(in, tmp.c, key)
    [all...]
  /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:__anon30804
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.
ext2_io.h 39 unsigned long block,
46 unsigned long block,
72 errcode_t (*read_blk)(io_channel channel, unsigned long block,
74 errcode_t (*write_blk)(io_channel channel, unsigned long block,
82 errcode_t (*read_blk64)(io_channel channel, unsigned long long block,
84 errcode_t (*write_blk64)(io_channel channel, unsigned long long block,
110 unsigned long long block,
113 unsigned long long block,
127 (unsigned long block, int count, errcode_t err);
129 (unsigned long block, int count, errcode_t err)
    [all...]
  /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...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/news_a11y/
feed.css 20 display: block;
42 display: block;
51 display: block;
59 display: block;
69 display: block;
  /external/chromium_org/third_party/openssl/openssl/crypto/modes/
cbc128.c 68 unsigned char ivec[16], block128_f block)
81 (*block)(out, out, key);
92 (*block)(out, out, key);
105 (*block)(out, out, key);
117 unsigned char ivec[16], block128_f block)
131 (*block)(in, out, key);
142 (*block)(in, out, key);
157 (*block)(in, tmp.c, key);
171 (*block)(in, tmp.c, key);
187 (*block)(in, tmp.c, key)
    [all...]
  /external/flac/libFLAC/
metadata_iterators.c 90 static FLAC__bool read_metadata_block_data_(FLAC__Metadata_SimpleIterator *iterator, FLAC__StreamMetadata *block);
92 static FLAC__Metadata_SimpleIteratorStatus read_metadata_block_data_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Read read_cb, FLAC__IOCallback_Seek seek_cb, FLAC__StreamMetadata *block);
93 static FLAC__Metadata_SimpleIteratorStatus read_metadata_block_data_streaminfo_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Read read_cb, FLAC__StreamMetadata_StreamInfo *block);
94 static FLAC__Metadata_SimpleIteratorStatus read_metadata_block_data_padding_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Seek seek_cb, FLAC__StreamMetadata_Padding *block, unsigned block_length);
95 static FLAC__Metadata_SimpleIteratorStatus read_metadata_block_data_application_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Read read_cb, FLAC__StreamMetadata_Application *block, unsigned block_length);
96 static FLAC__Metadata_SimpleIteratorStatus read_metadata_block_data_seektable_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Read read_cb, FLAC__StreamMetadata_SeekTable *block, unsigned block_length);
98 static FLAC__Metadata_SimpleIteratorStatus read_metadata_block_data_vorbis_comment_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Read read_cb, FLAC__StreamMetadata_VorbisComment *block);
100 static FLAC__Metadata_SimpleIteratorStatus read_metadata_block_data_cuesheet_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Read read_cb, FLAC__StreamMetadata_CueSheet *block);
101 static FLAC__Metadata_SimpleIteratorStatus read_metadata_block_data_picture_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Read read_cb, FLAC__StreamMetadata_Picture *block);
102 static FLAC__Metadata_SimpleIteratorStatus read_metadata_block_data_unknown_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Read read_cb, FLAC__StreamMetadata_Unknown *block, unsigned block_length)
646 FLAC__StreamMetadata *block = FLAC__metadata_object_new(iterator->type); local
    [all...]
  /external/chromium_org/third_party/freetype/src/base/
ftutil.c 55 FT_Pointer block = ft_mem_qalloc( memory, size, &error ); local
58 FT_MEM_ZERO( block, size );
61 return block;
71 FT_Pointer block = NULL; local
76 block = memory->alloc( memory, size );
77 if ( block == NULL )
87 return block;
96 void* block,
101 block = ft_mem_qrealloc( memory, item_size,
102 cur_count, new_count, block, &error )
    [all...]
  /external/chromium_org/v8/src/
hydrogen-escape-analysis.cc 55 HBasicBlock* block = graph()->blocks()->at(i); local
56 for (HInstructionIterator it(block); !it.Done(); it.Advance()) {
89 HBasicBlock* block = previous->block(); local
93 HPhi* phi = NewPhiAndInsert(block, operand, index);
112 // Insert a newly created phi into the given block and fill all incoming
115 HBasicBlock* block, HValue* incoming_value, int index) {
118 for (int i = 0; i < block->predecessors()->length(); i++) {
121 block->AddPhi(phi);
131 HBasicBlock* allocate_block = allocate->block();
138 HBasicBlock* block = graph()->blocks()->at(i); local
    [all...]

Completed in 1184 milliseconds

1 2 3 4 5 6 7 8 91011>>