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

<<31323334353637383940>>

  /dalvik/dx/src/com/android/dx/cf/code/
Ropper.java 49 * Utility that converts a basic block list into a list of register-oriented
53 /** label offset for the parameter assignment block */
56 /** label offset for the return block */
59 /** label offset for the synchronized method final return block */
62 /** label offset for the first synchronized method setup block */
65 /** label offset for the second synchronized method setup block */
70 * handler block
76 * handler block
86 /** {@code non-null;} original block list */
92 /** max label (exclusive) of any original bytecode block */
588 BasicBlock block = result.get(idx); local
650 ByteBlock block = blocks.labelToBlock(offset); local
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
block.cpp 82 int16 *coef = video->block;
83 uint8 *pred = video->pred_block; // size 16 for a 4x4 block
91 coef += ((blkidx & 0x3) << 2) + ((blkidx >> 2) << 6); /* point to the 4x4 block */
192 if (video->currMB->mb_intra) // only do inverse transform with intra block
262 int16 *coef, *coef8 = video->block;
366 int16 *coef = video->block;
566 /* offset btw 4x4 block */
570 /* offset btw 8x8 block */
729 int16 *coef = video->block + 256;
909 /* offset btw 4x4 block */
1117 int16 *block = video->block; local
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
mux.py 170 block = (chr(first_byte) +
174 return block
182 block = chr(first_byte) + _encode_channel_id(channel_id)
184 block += _encode_number(0) # Reason size
188 block += reason_size + reason
190 return block
195 block = (chr(first_byte) +
198 return block
205 block = (chr(first_byte) +
208 return block
    [all...]
  /external/grub/netboot/
main.c 305 unsigned short len, block = 0, prevblock = 0; local
333 timeout = rfc2131_sleep_interval (block ? TFTP_REXMT : TIMEOUT, retry);
340 if (! block && retry++ < MAX_TFTP_RETRIES)
351 if (block && ((retry += TFTP_REXMT) < TFTP_TIMEOUT))
425 block = tp.u.ack.block = 0;
435 block = ntohs (tp.u.ack.block = tr->u.data.block);
441 if ((block || bcounter) && (block != prevblock + 1)
    [all...]
  /build/tools/
generate-notice-files.py 72 block = f.read(MD5_BLOCKSIZE)
73 if not block:
75 sum.update(block)
  /external/ceres-solver/internal/ceres/
block_jacobian_writer.cc 46 // Given the residual block ordering, build a lookup table to determine which
52 // block ordering. The remaining parameter blocks are the F blocks.
54 // TODO(keir): Consider if we should use a boolean for each parameter block
72 // Advance f_block_pos over each E block for this residual.
174 row->block.size = residual_block->NumResiduals();
175 row->block.position = row_block_position;
176 row_block_position += row->block.size;
  /external/chromium/chrome/browser/resources/bookmark_manager/css/
bmm.css 15 display: block;
40 display: inline-block; /* We need to use inline-block here due to RTL. */
92 display: block;
97 display: block;
205 display: inline-block;
284 display: inline-block;
  /external/chromium/chrome/browser/resources/options/
sync_setup_overlay.css 47 display: inline-block;
201 display: block;
275 display: inline-block;
279 display: block;
287 display: inline-block;
317 display: block;
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8StringResource.h 202 v8::TryCatch block; local
205 if (block.HasCaught()) {
206 block.ReThrow();
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
heapProfiler.css 67 display: block;
75 display: block;
134 display: inline-block;
211 display: block;
235 display: block;
243 display: inline-block;
  /external/chromium_org/third_party/angle_dx11/src/compiler/
PoolAlloc.h 11 #define GUARD_BLOCKS // define to enable guard block sanity checking
188 void* initializeAllocation(tHeader* block, unsigned char* memory, size_t numBytes) {
190 new(memory) TAllocation(numBytes, memory, block->lastAllocation);
191 block->lastAllocation = reinterpret_cast<TAllocation*>(memory);
  /external/chromium_org/third_party/openssl/openssl/ssl/
s3_cbc.c 65 /* MAX_HASH_BLOCK_SIZE is the maximum hash block size that we'll support.
66 * Currently SHA-384/512 has a 128-byte block size and that's the largest
104 * block_size: the block size of the cipher used to encrypt the record.
138 * block_size: the block size of the cipher used to encrypt the record.
451 void (*md_transform)(void *ctx, const unsigned char *block);
478 md_transform = (void(*)(void *ctx, const unsigned char *block)) MD5_Transform;
486 md_transform = (void(*)(void *ctx, const unsigned char *block)) SHA1_Transform;
493 md_transform = (void(*)(void *ctx, const unsigned char *block)) SHA256_Transform;
499 md_transform = (void(*)(void *ctx, const unsigned char *block)) SHA256_Transform;
507 md_transform = (void(*)(void *ctx, const unsigned char *block)) SHA512_Transform
674 unsigned char block[MAX_HASH_BLOCK_SIZE]; local
    [all...]
  /external/dnsmasq/src/
tftp.c 156 transfer->block = 1;
216 transfer->block = 0;
222 transfer->block = 0;
377 unsigned short op, block; member in struct:ack
392 if (ntohs(mess->op) == OP_ACK && ntohs(mess->block) == (unsigned short)transfer->block)
397 if (transfer->block++ != 0)
417 (int)ntohs(mess->block), err,
519 if (transfer->block == 0)
547 unsigned short op, block; member in struct:datamess
    [all...]
  /external/e2fsprogs/e2fsck/
emptydir.c 97 printf(_("Empty directory block %u (#%d) in inode %u\n"),
114 * copy the block reference as necessary. Big question --- what do
123 blk_t block, new_block; local
128 block = *block_nr;
140 if (new_block == block)
  /external/emma/core/java12/com/vladium/emma/report/
ClassItem.java 152 final int block = lblocks [bID]; local
154 final boolean bcovered = mcoverage != null && mcoverage [block];
155 final int instr = mbsizes [block];
  /external/libvpx/libvpx/nestegg/halloc/src/
halloc.c 23 * block control header
111 void hattach(void * block, void * parent)
115 if (! block)
122 b = structof(block, hblock_t, data);
  /external/libvpx/libvpx/vp8/common/arm/armv6/
copymem16x16_v6.asm 17 AREA Block, CODE, READONLY ; name this block of code
25 pld [r0, #31] ; preload for next 16x16 block
91 pld [r0, #31] ; preload for next 16x16 block
124 pld [r0, #31] ; preload for next 16x16 block
153 pld [r0, #31] ; preload for next 16x16 block
177 pld [r0, #31] ; preload for next 16x16 block
  /external/openssl/ssl/
s3_cbc.c 65 /* MAX_HASH_BLOCK_SIZE is the maximum hash block size that we'll support.
66 * Currently SHA-384/512 has a 128-byte block size and that's the largest
104 * block_size: the block size of the cipher used to encrypt the record.
138 * block_size: the block size of the cipher used to encrypt the record.
451 void (*md_transform)(void *ctx, const unsigned char *block);
478 md_transform = (void(*)(void *ctx, const unsigned char *block)) MD5_Transform;
486 md_transform = (void(*)(void *ctx, const unsigned char *block)) SHA1_Transform;
493 md_transform = (void(*)(void *ctx, const unsigned char *block)) SHA256_Transform;
499 md_transform = (void(*)(void *ctx, const unsigned char *block)) SHA256_Transform;
507 md_transform = (void(*)(void *ctx, const unsigned char *block)) SHA512_Transform
674 unsigned char block[MAX_HASH_BLOCK_SIZE]; local
    [all...]
  /external/qemu/android/utils/
system.h 24 void* _android_array_realloc( void* block, size_t itemSize, size_t count );
37 void* android_realloc( void* block, size_t size );
39 /* free memory block */
40 void android_free( void* block );
124 ** the following can be used to block SIGALRM for a given period of time.
  /external/qemu/distrib/sdl-1.2.15/src/video/riscos/
SDL_riscosFullScreenVideo.c 305 regs.r[6] = 0; /* pointer to block or 0 for count */
306 regs.r[7] = 0; /* Size of block in bytes */
320 /* Read mode information into block */
728 int block[5]; local
729 block[0] = 148; /* Write screen start */
730 block[1] = 149; /* Display screen start */
731 block[2] = 4; /* X eig factor */
732 block[3] = 5; /* Y eig factor */
733 block[4] = -1; /* End of list of variables to request */
735 regs.r[0] = (int)block;
    [all...]
  /external/qemu/elff/
dwarf_cu.cc 67 /* Property is a block of data, contained in .debug_info section. Block
68 * size is encoded with 1 byte value, and block data immediately follows
69 * block size. */
72 attr_value->block.block_size = *prop;
73 attr_value->block.block_ptr = prop + 1;
75 static_cast<Elf_Word>(attr_value->block.block_size + 1);
78 /* Property is a block of data, contained in .debug_info section. Block
79 * size is encoded with 2 bytes value, and block data immediately follows
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
CameraTest.java 101 if (!startDone.block(WAIT_FOR_COMMAND_TO_COMPLETE)) {
179 if (!mPreviewDone.block(WAIT_FOR_COMMAND_TO_COMPLETE)) {
186 if (!mSnapshotDone.block(MediaNames.WAIT_SNAPSHOT_TIME)) {
  /hardware/qcom/msm8x74/kernel-headers/linux/
msm_mdp.h 340 uint32_t block; member in struct:mdp_qseed_cfg_data
367 uint32_t block; member in struct:mdp_csc_cfg_data
381 uint32_t block; member in struct:mdp_igc_lut_data
390 uint32_t block; member in struct:mdp_histogram_cfg
397 uint32_t block; member in struct:mdp_hist_lut_data
520 uint32_t block; member in struct:mdp_histogram_start_req
527 uint32_t block; member in struct:mdp_histogram_data
541 uint32_t block; member in struct:mdp_pcc_cfg_data
562 uint32_t block; member in struct:mdp_pgc_lut_data
590 uint32_t block; member in struct:mdp_pa_cfg_data
595 uint32_t block; member in struct:mdp_dither_cfg_data
604 uint32_t block; member in struct:mdp_gamut_cfg_data
    [all...]
  /hardware/qcom/msm8x74/original-kernel-headers/linux/
msm_mdp.h 338 uint32_t block; member in struct:mdp_qseed_cfg_data
365 uint32_t block; member in struct:mdp_csc_cfg_data
378 uint32_t block; member in struct:mdp_igc_lut_data
386 uint32_t block; member in struct:mdp_histogram_cfg
393 uint32_t block; member in struct:mdp_hist_lut_data
540 uint32_t block; member in struct:mdp_histogram_start_req
552 uint32_t block; member in struct:mdp_histogram_data
565 uint32_t block; member in struct:mdp_pcc_cfg_data
586 uint32_t block; member in struct:mdp_pgc_lut_data
612 uint32_t block; member in struct:mdp_pa_cfg_data
617 uint32_t block; member in struct:mdp_dither_cfg_data
625 uint32_t block; member in struct:mdp_gamut_cfg_data
    [all...]
  /ndk/sources/host-tools/ndk-stack/elff/
dwarf_cu.cc 67 /* Property is a block of data, contained in .debug_info section. Block
68 * size is encoded with 1 byte value, and block data immediately follows
69 * block size. */
72 attr_value->block.block_size = *prop;
73 attr_value->block.block_ptr = prop + 1;
75 static_cast<Elf_Word>(attr_value->block.block_size + 1);
78 /* Property is a block of data, contained in .debug_info section. Block
79 * size is encoded with 2 bytes value, and block data immediately follow
    [all...]

Completed in 1990 milliseconds

<<31323334353637383940>>