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

1 2 34 5 6 7 8 91011>>

  /external/strace/tests/
sigblock.test 13 for block in 0 1; do
14 set_cmd="../set_sigblock $block $sig"
15 check_cmd="../check_sigblock $block $sig"
  /external/strace/tests-m32/
sigblock.test 13 for block in 0 1; do
14 set_cmd="../set_sigblock $block $sig"
15 check_cmd="../check_sigblock $block $sig"
  /external/strace/tests-mx32/
sigblock.test 13 for block in 0 1; do
14 set_cmd="../set_sigblock $block $sig"
15 check_cmd="../check_sigblock $block $sig"
  /external/valgrind/none/tests/ppc32/
data-cache-instructions.stdout.exp 1 Passed dcbzl test at aligned address within the test block.
2 Passed dcbzl test at un-aligned (1 modulo block_size) address within the test block.
3 Passed dcbzl test at un-aligned ((block_size - 1) modulo block_size) address within the test block.
  /external/valgrind/none/tests/ppc64/
data-cache-instructions.stdout.exp 1 Passed dcbzl test at aligned address within the test block.
2 Passed dcbzl test at un-aligned (1 modulo block_size) address within the test block.
3 Passed dcbzl test at un-aligned ((block_size - 1) modulo block_size) address within the test block.
  /frameworks/support/core/ktx/src/main/java/androidx/core/graphics/
Canvas.kt 23 * Wrap the specified [block] in calls to [Canvas.save]
26 inline fun Canvas.withSave(block: Canvas.() -> Unit) {
29 block()
36 * Wrap the specified [block] in calls to [Canvas.save]/[Canvas.translate]
42 block: Canvas.() -> Unit
47 block()
54 * Wrap the specified [block] in calls to [Canvas.save]/[Canvas.rotate]
61 block: Canvas.() -> Unit
66 block()
73 * Wrap the specified [block] in calls to [Canvas.save]/[Canvas.scale
    [all...]
Shader.kt 23 * Wrap the specified [block] in calls to [Shader.getLocalMatrix] and [Shader.setLocalMatrix].
25 inline fun Shader.transform(block: Matrix.() -> Unit) {
28 block(matrix)
  /external/syslinux/gpxe/src/core/
malloc.c 36 /** A free block of memory */
40 /** Size of this block */
47 /** A block of allocated memory complete with size information */
49 /** Size of this block */
89 * Allocate a memory block
93 * @ret ptr Memory block, or NULL
95 * Allocates a memory block @b physically aligned as requested. No
101 struct memory_block *block; local
117 list_for_each_entry ( block, &free_blocks, list ) {
118 pre_size = ( - virt_to_phys ( block ) ) & align_mask
176 struct memory_block *block; local
    [all...]
  /external/clang/test/SemaCXX/
printf-block.cpp 5 int (^block) (int, const char *,...) __attribute__((__format__(__printf__,2,3))) = ^ __attribute__((__format__(__printf__,2,3))) (int arg, const char *format,...) {return 5;};
18 block(n, "%s %d", str, n); // no-warning
19 block(n, "%s %s", hncs, n);
21 // expected-warning@-2{{cannot pass non-POD object of type 'HasNoCStr' to variadic block; expected type from format string was 'char *'}}
  /external/eigen/doc/examples/
Tutorial_BlockOperations_block_assignment.cpp 14 a.block<2,2>(1,1) = m;
15 cout << "Here is now a with m copied into its central 2x2 block:" << endl << a << endl << endl;
16 a.block(0,0,2,3) = a.block(2,1,2,3);
17 cout << "Here is now a with bottom-right 2x3 block copied into top-left 2x2 block:" << endl << a << endl << endl;
  /external/mesa3d/src/compiler/nir/
nir_opt_move_comparisons.c 31 * It only moves instructions within a single basic block; cross-block
78 move_comparison_source(nir_src *src, nir_block *block, nir_instr *before)
85 if (src_instr->block == block &&
94 exec_list_push_tail(&block->instr_list, &src_instr->node);
108 if (move_comparison_source(src, instr->block, instr))
115 move_comparisons(nir_block *block)
121 * If the instruction's source is a comparison from the same block,
123 * the block as well. However, as we walk backwards, we'll find th
    [all...]
  /external/valgrind/none/tests/amd64/
lzcnt64.c 10 ULong block[3] = { arg, 0ULL, 0ULL }; local
18 : : "r"(&block[0]) : "r11","cc","memory"
20 *res = block[1];
21 *flags = block[2] & 0x8d5;
27 ULong block[3] = { arg, 0ULL, 0ULL }; local
35 : : "r"(&block[0]) : "r11","cc","memory"
37 *res = block[1];
38 *flags = block[2] & 0x8d5;
44 ULong block[3] = { arg, 0ULL, 0ULL }; local
52 : : "r"(&block[0]) : "r11","cc","memory
    [all...]
bug127521-64.c 17 ULong block[6]; local
20 block[0] = rdxIn;
21 block[1] = raxIn;
22 block[2] = rcxIn;
23 block[3] = rbxIn;
24 block[4] = (ULong)&mem[0];
25 block[5] = ~(0ULL);
40 : /*in*/ "r"(&block[0])
43 *rdxOut = block[0];
44 *raxOut = block[1]
70 ULong block[6]; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/isl/
blk.h 30 int isl_blk_is_error(struct isl_blk block);
31 struct isl_blk isl_blk_extend(struct isl_ctx *ctx, struct isl_blk block,
33 void isl_blk_free(struct isl_ctx *ctx, struct isl_blk block);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/encodings/
OAEPEncoding.java 152 byte[] block = new byte[getInputBlockSize() + 1 + 2 * defHash.length];
157 System.arraycopy(in, inOff, block, block.length - inLen, inLen);
162 block[block.length - inLen - 1] = 0x01;
165 // as the block is already zeroed - there's no need to add PS (the >= 0 pad of 0)
171 System.arraycopy(defHash, 0, block, defHash.length, defHash.length);
181 // mask the message block.
183 byte[] mask = maskGeneratorFunction1(seed, 0, seed.length, block.length - defHash.length);
185 for (int i = defHash.length; i != block.length; i++
    [all...]
  /external/e2fsprogs/lib/ext2fs/
dirblock.c 2 * dirblock.c --- directory block routines.
23 errcode_t ext2fs_read_dir_block4(ext2_filsys fs, blk64_t block,
30 retval = io_channel_read_blk64(fs->io, block, 1, buf);
47 errcode_t ext2fs_read_dir_block3(ext2_filsys fs, blk64_t block,
50 return ext2fs_read_dir_block4(fs, block, buf, flags, 0);
53 errcode_t ext2fs_read_dir_block2(ext2_filsys fs, blk_t block,
56 return ext2fs_read_dir_block3(fs, block, buf, flags);
59 errcode_t ext2fs_read_dir_block(ext2_filsys fs, blk_t block,
62 return ext2fs_read_dir_block3(fs, block, buf, 0);
66 errcode_t ext2fs_write_dir_block4(ext2_filsys fs, blk64_t block,
    [all...]
  /external/eigen/doc/snippets/
Tutorial_commainit_01b.cpp 3 m.block(1,0,2,2) << 4, 5, 7, 8;
  /external/eigen/failtest/
const_qualified_block_method_retval_0.cpp 12 Block<Matrix3d,3,3> b(m.block<3,3>(0,0));
const_qualified_block_method_retval_1.cpp 12 Block<Matrix3d> b(m.block(0,0,3,3));
  /external/valgrind/memcheck/tests/
err_disable1.c 9 char* block = NULL; variable
21 usechar( block[5] );
26 block = malloc(10);
27 free(block);
  /frameworks/support/core/ktx/src/main/java/androidx/core/os/
Trace.kt 22 * Wrap the specified [block] in calls to [Trace.beginSection] (with the supplied [sectionName])
25 inline fun <T> trace(sectionName: String, block: () -> T): T {
28 return block()
  /frameworks/support/navigation/runtime/ktx/src/main/java/androidx/navigation/
NavController.kt 27 block: NavGraphBuilder.() -> Unit
28 ): NavGraph = navigatorProvider.navigation(id, startDestination, block)
NavHost.kt 27 block: NavGraphBuilder.() -> Unit
28 ): NavGraph = navController.createGraph(id, startDestination, block)
  /system/nfc/src/nfa/include/
nfa_nv_ci.h 78 uint8_t block);
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_qir_live_variables.c 59 qir_setup_use(struct vc4_compile *c, struct qblock *block, int ip,
69 /* The use[] bitset marks when the block makes
71 * defined that variable within the block.
73 if (!BITSET_TEST(block->def, var))
74 BITSET_SET(block->use, var);
96 qir_setup_def(struct vc4_compile *c, struct qblock *block, int ip,
100 * block completely screens off previous updates of
111 * the block, there's nothing to do.
113 if (BITSET_TEST(block->use, var) || BITSET_TEST(block->def, var)
    [all...]

Completed in 868 milliseconds

1 2 34 5 6 7 8 91011>>