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

1 2 3 45 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/pe/
seh-x64-err-1.l 3 .*:6: Error: .seh_stackalloc used outside of .seh_proc block
4 .*:7: Error: .seh_setframe used outside of .seh_proc block
5 .*:8: Error: .seh_endprologue used outside of .seh_proc block
6 .*:9: Error: .seh_pushreg used outside of .seh_proc block
7 .*:10: Error: .seh_savereg used outside of .seh_proc block
8 .*:11: Error: .seh_savexmm used outside of .seh_proc block
9 .*:12: Error: .seh_handler used outside of .seh_proc block
10 .*:13: Error: .seh_handler used outside of .seh_proc block
11 .*:14: Error: .seh_handler used outside of .seh_proc block
12 .*:15: Error: .seh_handler used outside of .seh_proc block
    [all...]
  /external/markdown/markdown/
blockprocessors.py 10 different type of block. Extensions may add/replace/remove BlockProcessors
19 """ Base class for block processors.
24 whether the current block should be processed by this processor. If the
60 def test(self, parent, block):
61 """ Test for block type. Must be overridden by subclasses.
64 on each to determine if the given block of text is of that type. This
66 testing is left to the needs of that particular block type. It could
67 be as simple as ``block.startswith(some_string)`` or a complex regular
68 expression. As the block type may be different depending on the parent
69 of the block (i.e. inside a list), the parent etree element is also
    [all...]
preprocessors.py 81 def _get_left_tag(self, block):
82 return block[1:].replace(">", " ", 1).split()[0].lower()
84 def _get_right_tag(self, left_tag, block):
87 i = block.rfind(tag)
90 return block.rstrip()[-len(left_tag)-2:-1].lower(), len(block)
118 block = text[0]
119 if block.startswith("\n"):
120 block = block[1:
    [all...]
  /external/llvm/test/MC/ARM/
v8_IT_manual.s 11 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
14 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
18 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
30 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
34 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
42 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
46 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
50 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
59 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
71 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
    [all...]
  /external/ipsec-tools/src/racoon/missing/crypto/rijndael/
rijndael-api-fst.c 96 word8 block[16], iv[4][4]; local
120 bcopy(cipher->IV, block, 16);
122 ((word32*)block)[0] ^= ((word32*)iv)[0];
123 ((word32*)block)[1] ^= ((word32*)iv)[1];
124 ((word32*)block)[2] ^= ((word32*)iv)[2];
125 ((word32*)block)[3] ^= ((word32*)iv)[3];
127 ((word32*)block)[0] = ((word32*)cipher->IV)[0] ^ ((word32*)input)[0];
128 ((word32*)block)[1] = ((word32*)cipher->IV)[1] ^ ((word32*)input)[1];
129 ((word32*)block)[2] = ((word32*)cipher->IV)[2] ^ ((word32*)input)[2];
130 ((word32*)block)[3] = ((word32*)cipher->IV)[3] ^ ((word32*)input)[3]
210 word8 block[16], *iv, *cp; local
273 word8 block[16], iv[4][4]; local
371 word8 block[16]; local
463 word8 block[4][4]; local
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
parameter.rb 8 if block then "&#{ name }"
17 attr_accessor :splat, :block
28 @block and names << @block.to_s
41 param.block = options.fetch( :block, false )
51 @block and signature << ", &" << @block.to_s
  /external/clang/test/CodeGen/
2009-01-05-BlockInlining.c 4 // These will be inlined by the optimizers provided the block descriptors
5 // and block literals are internal constants.
14 static int block(int x) { function
25 print(block(x));
  /external/clang/test/SemaCXX/
switch-implicit-fallthrough-blocks.cpp 4 void (^block)() = ^{
18 block();
  /external/compiler-rt/test/BlocksRuntime/
copynull.c 16 #import <Block.h>
23 void (^block)(void) = (void (^)(void))0;
24 void (^blockcopy)(void) = Block_copy(block);
dispatch_call_Block_with_release.c 8 #include <Block.h>
16 dispatch_call_Block_with_release2(void *block)
18 void (^b)(void) = (void (^)(void))block;
25 void (^b2)(void) = ^{ callsomething("hellow world\n", 0); }; // global block now
  /external/eigen/doc/examples/
Tutorial_BlockOperations_print_block.cpp 13 cout << "Block in the middle" << endl;
14 cout << m.block<2,2>(1,1) << endl << endl;
17 cout << "Block of size " << i << "x" << i << endl;
18 cout << m.block(0,0,i,i) << endl << endl;
  /external/eigen/doc/snippets/
MatrixBase_set.cpp 7 m2.block(0,0, 2,2) << 10, 11, 12, 13;
12 v1, m1.block(1,1,2,2);
MatrixBase_template_int_int_block_int_int_int_int.cpp 3 cout << "Here is the block:" << endl << m.block<2, Dynamic>(1, 1, 2, 3) << endl;
4 m.block<2, Dynamic>(1, 1, 2, 3).setZero();
  /external/mesa3d/src/intel/vulkan/
anv_nir_lower_push_constants.c 33 nir_foreach_block(block, function->impl) {
34 nir_foreach_instr(instr, block) {
  /external/skia/resources/lua/
slides_utils.lua 62 function flush(slides, block)
63 if #block > 0 then
64 slides[#slides + 1] = block
67 return block
72 local block = {}
76 if #s == 0 then -- done with a block
77 block = flush(slides, block)
82 block["transition"] = transition_type
84 block["blockstyle"] = blockstyl
    [all...]
  /external/skqp/platform_tools/android/apps/skqp/src/main/assets/resources/lua/
slides_utils.lua 62 function flush(slides, block)
63 if #block > 0 then
64 slides[#slides + 1] = block
67 return block
72 local block = {}
76 if #s == 0 then -- done with a block
77 block = flush(slides, block)
82 block["transition"] = transition_type
84 block["blockstyle"] = blockstyl
    [all...]
  /external/skqp/resources/lua/
slides_utils.lua 62 function flush(slides, block)
63 if #block > 0 then
64 slides[#slides + 1] = block
67 return block
72 local block = {}
76 if #s == 0 then -- done with a block
77 block = flush(slides, block)
82 block["transition"] = transition_type
84 block["blockstyle"] = blockstyl
    [all...]
  /external/strace/tests/
check_sigblock.c 40 const int block = !!atoi(av[1]); local
48 return block ^ sigismember(&mask, signum);
  /external/strace/tests-m32/
check_sigblock.c 40 const int block = !!atoi(av[1]); local
48 return block ^ sigismember(&mask, signum);
  /external/strace/tests-mx32/
check_sigblock.c 40 const int block = !!atoi(av[1]); local
48 return block ^ sigismember(&mask, signum);
  /external/syslinux/gpxe/src/include/gpxe/
blockdev.h 7 * Block devices
17 /** Block device operations */
20 * Read block
22 * @v blockdev Block device
23 * @v block Block number
24 * @v count Block count
28 int ( * read ) ( struct block_device *blockdev, uint64_t block,
31 * Write block
33 * @v blockdev Block devic
    [all...]
  /external/valgrind/none/tests/ppc32/
test_fx.c 7 double block[2]; local
8 block[0] = x;
14 : /*in*/ "b" (&block[0])
17 return block[1];
22 double block[2]; local
23 block[0] = x;
29 : /*in*/ "b" (&block[0])
32 return block[1];
  /external/valgrind/none/tests/x86/
lzcnt32.c 10 UInt block[3] = { arg, 0, 0 }; local
18 : : "r"(&block[0]) : "esi","cc","memory"
20 *res = block[1];
21 *flags = block[2] & 0x8d5;
27 UInt block[3] = { arg, 0, 0 }; local
35 : : "r"(&block[0]) : "esi","cc","memory"
37 *res = block[1];
38 *flags = block[2] & 0x8d5;
  /external/webrtc/webrtc/base/objc/
RTCDispatcher.h 28 /** Dispatch the block asynchronously on the queue for dispatchType.
30 * @param block The block to dispatch asynchronously.
33 block:(dispatch_block_t)block;
  /frameworks/ml/nn/runtime/test/specs/V1_0/
depth_to_space_float_1.mod.py 3 block = Int32Scalar("block_size", 2) variable
6 model = model.Operation("DEPTH_TO_SPACE", i1, block).To(output)

Completed in 1799 milliseconds

1 2 3 45 6 7 8 91011>>