HomeSort by relevance Sort by last modified time
    Searched refs:block (Results 276 - 300 of 4734) sorted by null

<<11121314151617181920>>

  /external/v8/src/compiler/arm/
unwinding-info-writer-arm.cc 13 const InstructionBlock* block) {
18 DCHECK_LT(block->rpo_number().ToInt(),
21 block_initial_states_[block->rpo_number().ToInt()];
33 // The entry block always lacks an explicit initial state.
34 // The exit block may lack an explicit state, if it is only reached by
35 // the block ending in a bx lr.
37 DCHECK(block->predecessors().empty() || block->successors().empty());
41 void UnwindingInfoWriter::EndInstructionBlock(const InstructionBlock* block) {
44 for (const RpoNumber& successor : block->successors())
    [all...]
  /external/v8/src/compiler/arm64/
unwinding-info-writer-arm64.cc 13 const InstructionBlock* block) {
18 DCHECK_LT(block->rpo_number().ToInt(),
21 block_initial_states_[block->rpo_number().ToInt()];
33 // The entry block always lacks an explicit initial state.
34 // The exit block may lack an explicit state, if it is only reached by
35 // the block ending in a ret.
37 DCHECK(block->predecessors().empty() || block->successors().empty());
41 void UnwindingInfoWriter::EndInstructionBlock(const InstructionBlock* block) {
44 for (const RpoNumber& successor : block->successors())
    [all...]
  /external/v8/src/compiler/x64/
unwinding-info-writer-x64.cc 13 const InstructionBlock* block) {
18 DCHECK_LT(block->rpo_number().ToInt(),
21 block_initial_states_[block->rpo_number().ToInt()];
38 // The entry block always lacks an explicit initial state.
39 // The exit block may lack an explicit state, if it is only reached by
40 // the block ending in a ret.
42 DCHECK(block->predecessors().empty() || block->successors().empty());
46 void UnwindingInfoWriter::EndInstructionBlock(const InstructionBlock* block) {
49 for (const RpoNumber& successor : block->successors())
    [all...]
  /external/valgrind/none/tests/mips64/
cvm_atomic_thread.c 40 unsigned long block[2] = { (unsigned long)p, (unsigned long)n }; local
47 : /*in*/ "r"(&block[0])
56 unsigned long block[2] = { (unsigned long)p, (unsigned long)n }; local
63 : /*in*/ "r"(&block[0])
72 unsigned long block[2] = { (unsigned long)p, (unsigned long)n }; local
79 : /*in*/ "r"(&block[0])
88 unsigned long block[2] = { (unsigned long)p, (unsigned long)n }; local
95 : /*in*/ "r"(&block[0])
104 unsigned long block[2] = { (unsigned long)p, (unsigned long)n }; local
111 : /*in*/ "r"(&block[0]
120 unsigned long block[2] = { (unsigned long)p, (unsigned long)n }; local
136 unsigned long block[2] = { (unsigned long)p }; local
152 unsigned long block[2] = { (unsigned long)p }; local
168 unsigned long block[2] = { (unsigned long)p }; local
184 unsigned long block[2] = { (unsigned long)p }; local
200 unsigned long block[2] = { (unsigned long)p }; local
216 unsigned long block[2] = { (unsigned long)p }; local
232 unsigned long block[2] = { (unsigned long)p }; local
248 unsigned long block[2] = { (unsigned long)p }; local
    [all...]
  /system/core/libsparse/
backed_block.c 27 unsigned int block; member in struct:backed_block
72 return bb->block;
181 if (!bb->next || bb->next->block > start->block) {
196 /* Block doesn't exist (possible if one block is the last block) */
201 assert(a->block < b->block);
210 if (a->block + block_len != b->block)
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
SsaConverter.java 55 * The exit block, added here, is not considered for edge splitting
126 * requiring each block with a final instruction that returns a
149 * New blocks are added to the end of the block list during
153 SsaBasicBlock block = blocks.get(i); local
154 if (nodeNeedsUniquePredecessor(block)) {
155 block.insertNewPredecessor();
161 * @param block {@code non-null;} block in question
165 private static boolean nodeNeedsUniquePredecessor(SsaBasicBlock block) {
167 * Any block with that has both multiple successors and multipl
194 SsaBasicBlock block = blocks.get(i); local
239 SsaBasicBlock block = blocks.get(i); local
    [all...]
SsaInsn.java 30 /** {@code non-null;} the block that contains this instance */
31 private final SsaBasicBlock block; field in class:SsaInsn
40 * @param block {@code non-null;} block containing this insn. Can
43 protected SsaInsn(RegisterSpec result, SsaBasicBlock block) {
44 if (block == null) {
45 throw new NullPointerException("block == null");
48 this.block = block;
56 * @param block {@code non-null;} owning bloc
    [all...]
  /external/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 )
87 return block;
96 void* block,
102 block = ft_mem_qrealloc( memory, item_size,
103 cur_count, new_count, block, &error )
    [all...]
  /external/syslinux/gpxe/src/crypto/
md5.c 155 le32_to_cpu_array(ctx->block, sizeof(ctx->block) / sizeof(u32));
156 md5_transform(ctx->hash, ctx->block);
173 const u32 avail = sizeof(mctx->block) - (mctx->byte_count & 0x3f);
178 memcpy((char *)mctx->block + (sizeof(mctx->block) - avail),
183 memcpy((char *)mctx->block + (sizeof(mctx->block) - avail),
190 while (len >= sizeof(mctx->block)) {
191 memcpy(mctx->block, data, sizeof(mctx->block))
    [all...]
  /external/mesa3d/src/compiler/spirv/
vtn_cfg.c 125 assert(b->block == NULL);
126 b->block = rzalloc(b, struct vtn_block);
127 b->block->node.type = vtn_cf_node_type_block;
128 b->block->label = w;
129 vtn_push_value(b, w[1], vtn_value_type_block)->block = b->block;
132 /* This is the first block encountered for this function. In this
133 * case, we set the start block and add it to the list of
136 b->func->start_block = b->block;
144 assert(b->block && b->block->merge == NULL)
260 struct vtn_block *block = start; local
582 struct vtn_block *block = (struct vtn_block *)node; local
    [all...]
  /device/google/contexthub/firmware/os/platform/stm32/
gpio.c 98 struct StmGpio *block = (struct StmGpio*)mGpioBases[gpioNum >> GPIO_PORT_SHIFT]; local
108 block->OSPEEDR = (block->OSPEEDR & ~mask_2b) | (((uint32_t)gpioSpeedFromRequestedSpeed(gpioSpeed)) << shift_2b);
111 block->PUPDR = (block->PUPDR & ~mask_2b) | (((uint32_t)pull) << shift_2b);
114 block->OTYPER &= ~mask_1b;
116 block->OTYPER |= mask_1b;
121 struct StmGpio *block = (struct StmGpio*)mGpioBases[gpioNum >> GPIO_PORT_SHIFT]; local
128 block->MODER = (block->MODER & ~mask_2b) | (((uint32_t)GPIO_MODE_IN) << shift_2b)
139 struct StmGpio *block = (struct StmGpio*)mGpioBases[gpioNum >> GPIO_PORT_SHIFT]; local
160 struct StmGpio *block = (struct StmGpio*)mGpioBases[gpioNum >> GPIO_PORT_SHIFT]; local
186 struct StmGpio *block = (struct StmGpio*)mGpioBases[gpioNum >> GPIO_PORT_SHIFT]; local
205 struct StmGpio *block = (struct StmGpio*)mGpioBases[gpioNum >> GPIO_PORT_SHIFT]; local
221 struct StmGpio *block = (struct StmGpio*)mGpioBases[gpioNum >> GPIO_PORT_SHIFT]; local
240 struct StmGpio *block = (struct StmGpio*)mGpioBases[DEBUG_UART_PIN >> GPIO_PORT_SHIFT]; local
    [all...]
  /external/boringssl/src/crypto/fipsmodule/aes/
aes_test.cc 43 uint8_t block[AES_BLOCK_SIZE]; local
44 AES_encrypt(plaintext.data(), block, &aes_key);
45 EXPECT_EQ(Bytes(ciphertext), Bytes(block));
48 OPENSSL_memcpy(block, plaintext.data(), AES_BLOCK_SIZE);
49 AES_encrypt(block, block, &aes_key);
50 EXPECT_EQ(Bytes(ciphertext), Bytes(block));
55 AES_decrypt(ciphertext.data(), block, &aes_key);
56 EXPECT_EQ(Bytes(plaintext), Bytes(block));
59 OPENSSL_memcpy(block, ciphertext.data(), AES_BLOCK_SIZE)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
RFC3394WrapEngine.java 35 * @param engine the block cipher to be used for wrapping.
45 * @param engine the block cipher to be used for wrapping.
102 byte[] block = new byte[inLen + iv.length];
105 System.arraycopy(iv, 0, block, 0, iv.length);
106 System.arraycopy(in, inOff, block, iv.length, inLen);
114 System.arraycopy(block, 0, buf, 0, iv.length);
115 System.arraycopy(block, 8 * i, buf, iv.length, 8);
128 System.arraycopy(buf, 0, block, 0, 8);
129 System.arraycopy(buf, 8, block, 8 * i, 8);
133 return block;
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
CTSBlockCipher.java 10 * A Cipher Text Stealing (CTS) mode cipher. CTS allows block ciphers to
19 * Create a buffered block cipher that uses Cipher Text Stealing
21 * @param cipher the underlying block cipher this buffering object wraps.
76 * process a single byte, producing an output block if necessary.
176 * Process the last block in the buffer.
178 * @param out the array the block currently being held is copied into.
200 byte[] block = new byte[blockSize];
206 throw new DataLengthException("need at least one block of input for CTS");
209 cipher.processBlock(buf, 0, block, 0);
215 buf[i] = block[i - blockSize]
    [all...]
  /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/elfutils/tests/
run-dwfllines.sh 25 time: 0, len: 0, idx: 0, b: 1, e: 0, pe: 0, eb: 0, block: 0, isa: 0, disc: 0
27 time: 0, len: 0, idx: 0, b: 1, e: 0, pe: 0, eb: 0, block: 0, isa: 0, disc: 0
29 time: 0, len: 0, idx: 0, b: 1, e: 0, pe: 0, eb: 0, block: 0, isa: 0, disc: 0
31 time: 0, len: 0, idx: 0, b: 1, e: 0, pe: 0, eb: 0, block: 0, isa: 0, disc: 0
33 time: 0, len: 0, idx: 0, b: 1, e: 1, pe: 0, eb: 0, block: 0, isa: 0, disc: 0
36 time: 0, len: 0, idx: 0, b: 1, e: 0, pe: 0, eb: 0, block: 0, isa: 0, disc: 0
38 time: 0, len: 0, idx: 0, b: 1, e: 0, pe: 0, eb: 0, block: 0, isa: 0, disc: 0
40 time: 0, len: 0, idx: 0, b: 1, e: 0, pe: 0, eb: 0, block: 0, isa: 0, disc: 0
42 time: 0, len: 0, idx: 0, b: 1, e: 1, pe: 0, eb: 0, block: 0, isa: 0, disc: 0
45 time: 0, len: 0, idx: 0, b: 1, e: 0, pe: 0, eb: 0, block: 0, isa: 0, disc:
    [all...]
  /external/fec/
exercise.c 45 data_t block[NN],tblock[NN]; local
59 /* Load block with random data and encode */
61 block[i] = random() & NN;
64 ENCODE_RS(&block[0],&block[NN-NROOTS],0);
66 ENCODE_RS(rs,&block[0],&block[NN-NROOTS]);
70 memcpy(tblock,block,sizeof(tblock));
92 /* Decode the errored block */
111 if(memcmp(tblock,block,sizeof(tblock)) != 0)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_linear.c 42 size_t bytes = t->cols * t->block.size;
66 size_t bytes = t->cols * t->block.size;
85 const struct u_linear_format_block *block,
89 t->block = *block;
93 t->cols = t->tile.width / t->block.width;
94 t->rows = t->tile.height / t->block.height;
95 t->tile.size = t->cols * t->rows * t->block.size;
99 t->stride = t->cols * t->tiles_x * t->block.size;
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_rast_debug.c 67 const struct cmd_block *block,
73 if (block->cmd[k] == LP_RAST_OP_SHADE_TILE ||
74 block->cmd[k] == LP_RAST_OP_SHADE_TILE_OPAQUE ||
75 block->cmd[k] == LP_RAST_OP_TRIANGLE_1 ||
76 block->cmd[k] == LP_RAST_OP_TRIANGLE_2 ||
77 block->cmd[k] == LP_RAST_OP_TRIANGLE_3 ||
78 block->cmd[k] == LP_RAST_OP_TRIANGLE_4 ||
79 block->cmd[k] == LP_RAST_OP_TRIANGLE_5 ||
80 block->cmd[k] == LP_RAST_OP_TRIANGLE_6 ||
81 block->cmd[k] == LP_RAST_OP_TRIANGLE_7
249 const struct cmd_block *block; local
    [all...]
  /system/tools/hidl/utils/include/hidl-util/
Formatter.h 54 // A block inside braces.
58 // out.block([&] {
66 Formatter& block(const std::function<void(void)>& func);
79 Formatter& sIf(const std::string& cond, const std::function<void(void)>& block);
80 Formatter& sElseIf(const std::string& cond, const std::function<void(void)>& block);
81 Formatter& sElse(const std::function<void(void)>& block);
86 Formatter& sFor(const std::string& stmts, const std::function<void(void)>& block);
96 Formatter& sTry(const std::function<void(void)>& block);
97 Formatter& sCatch(const std::string& exception, const std::function<void(void)>& block);
98 Formatter& sFinally(const std::function<void(void)>& block);
    [all...]
  /external/flac/include/share/grabbag/
replaygain.h 57 const char *grabbag__replaygain_store_to_vorbiscomment(FLAC__StreamMetadata *block, float album_gain, float album_peak, float title_gain, float title_peak);
58 const char *grabbag__replaygain_store_to_vorbiscomment_reference(FLAC__StreamMetadata *block);
59 const char *grabbag__replaygain_store_to_vorbiscomment_album(FLAC__StreamMetadata *block, float album_gain, float album_peak);
60 const char *grabbag__replaygain_store_to_vorbiscomment_title(FLAC__StreamMetadata *block, float title_gain, float title_peak);
66 FLAC__bool grabbag__replaygain_load_from_vorbiscomment(const FLAC__StreamMetadata *block, FLAC__bool album_mode, FLAC__bool strict, double *reference, double *gain, double *peak);
  /external/libvpx/libvpx/vp9/encoder/
vp9_encodemb.h 28 int vp9_optimize_b(MACROBLOCK *mb, int plane, int block, TX_SIZE tx_size,
32 void vp9_xform_quant_fp(MACROBLOCK *x, int plane, int block, int row, int col,
34 void vp9_xform_quant_dc(MACROBLOCK *x, int plane, int block, int row, int col,
36 void vp9_xform_quant(MACROBLOCK *x, int plane, int block, int row, int col,
41 void vp9_encode_block_intra(int plane, int block, int row, int col,
  /external/v8/src/crankshaft/
hydrogen-escape-analysis.h 38 HPhi* NewPhiAndInsert(HBasicBlock* block, HValue* incoming_value, int index);
44 HCapturedObject* StateAt(HBasicBlock* block) {
45 return block_states_.at(block->block_id());
48 void SetStateAt(HBasicBlock* block, HCapturedObject* state) {
49 block_states_.Set(block->block_id(), state);
62 // Map of block IDs to the data-flow state at block entry during the
  /prebuilts/go/darwin-x86/src/crypto/cipher/
cfb.go 10 b Block
43 // using the given Block. The iv must be the same length as the Block's block
45 func NewCFBEncrypter(block Block, iv []byte) Stream {
46 return newCFB(block, iv, false)
50 // using the given Block. The iv must be the same length as the Block's block
    [all...]
  /prebuilts/go/linux-x86/src/crypto/cipher/
cfb.go 10 b Block
43 // using the given Block. The iv must be the same length as the Block's block
45 func NewCFBEncrypter(block Block, iv []byte) Stream {
46 return newCFB(block, iv, false)
50 // using the given Block. The iv must be the same length as the Block's block
    [all...]

Completed in 1086 milliseconds

<<11121314151617181920>>