HomeSort by relevance Sort by last modified time
    Searched defs:block (Results 1 - 25 of 1421) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/compiler-rt/lib/builtins/arm/
udivmodsi4.S 57 * This depends on the fixed instruction size of block.
60 * block(shift) implements the test-and-update-quotient core.
109 /* Last block, no need to update r3 or r4. */
121 #define block(shift) \ define
127 block(31)
128 block(30)
129 block(29)
130 block(28)
131 block(27)
132 block(26
    [all...]
udivsi3.S 57 * This depends on the fixed instruction size of block.
60 * block(shift) implements the test-and-update-quotient core.
107 /* Last block, no need to update r2 or r3. */
118 #define block(shift) \ define
124 block(31)
125 block(30)
126 block(29)
127 block(28)
128 block(27)
129 block(26
    [all...]
umodsi3.S 55 * This depends on the fixed instruction size of block.
58 * block(shift) implements the test-and-update-quotient core.
103 /* Last block, no need to update r2 or r3. */
112 #define block(shift) \ define
117 block(31)
118 block(30)
119 block(29)
120 block(28)
121 block(27)
122 block(26
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/md5/
md5block_decl.go 11 func block(dig *digest, p []byte) func
md5block_generic.go 9 var block = blockGeneric var
  /prebuilts/go/darwin-x86/src/crypto/sha1/
sha1block_decl.go 11 func block(dig *digest, p []byte) func
sha1block_generic.go 9 var block = blockGeneric var
  /prebuilts/go/darwin-x86/src/crypto/sha256/
sha256block_decl.go 11 func block(dig *digest, p []byte) func
sha256block.go 7 // SHA256 block step.
80 func block(dig *digest, p []byte) { func
  /prebuilts/go/darwin-x86/src/crypto/sha512/
sha512block_decl.go 11 func block(dig *digest, p []byte) func
sha512block.go 7 // SHA512 block step.
96 func block(dig *digest, p []byte) { func
  /prebuilts/go/linux-x86/src/crypto/md5/
md5block_decl.go 11 func block(dig *digest, p []byte) func
md5block_generic.go 9 var block = blockGeneric var
  /prebuilts/go/linux-x86/src/crypto/sha1/
sha1block_decl.go 11 func block(dig *digest, p []byte) func
sha1block_generic.go 9 var block = blockGeneric var
  /prebuilts/go/linux-x86/src/crypto/sha256/
sha256block_decl.go 11 func block(dig *digest, p []byte) func
sha256block.go 7 // SHA256 block step.
80 func block(dig *digest, p []byte) { func
  /prebuilts/go/linux-x86/src/crypto/sha512/
sha512block_decl.go 11 func block(dig *digest, p []byte) func
  /external/boringssl/src/crypto/aes/
aes_test.cc 32 uint8_t block[AES_BLOCK_SIZE]; local
33 AES_encrypt(plaintext, block, &aes_key);
34 if (memcmp(block, ciphertext, AES_BLOCK_SIZE) != 0) {
40 memcpy(block, plaintext, AES_BLOCK_SIZE);
41 AES_encrypt(block, block, &aes_key);
42 if (memcmp(block, ciphertext, AES_BLOCK_SIZE) != 0) {
53 AES_decrypt(ciphertext, block, &aes_key);
54 if (memcmp(block, plaintext, AES_BLOCK_SIZE) != 0) {
60 memcpy(block, ciphertext, AES_BLOCK_SIZE)
    [all...]
  /external/compiler-rt/test/BlocksRuntime/
rdar6414583.c 11 #include <Block.h>
22 dispatch_block_t block = Block_copy(^{ c = i; }); local
24 block();
27 Block_release(block);
  /external/valgrind/memcheck/tests/
err_disable1.c 9 char* block = NULL; variable
21 usechar( block[5] );
26 block = malloc(10);
27 free(block);
err_disable2.c 10 char* block = NULL; variable
22 usechar( block[5] );
27 block = malloc(10);
28 free(block);
  /external/valgrind/none/tests/x86/
bug135421-x86.c 8 int block[2]; local
9 block[0] = x;
10 block[1] = 0;
18 : : /*in*/ "m"(block[0]), "m"(block[1]) : "esi","edi","memory"
20 return block[1];
  /frameworks/base/libs/androidfw/tests/
AppAsLib_test.cpp 36 ssize_t block = table.getResource(appaslib::R::app::integer::number1, &val); local
37 ASSERT_GE(block, 0);
49 ssize_t block = table.getResource(appaslib::R::lib::integer::number1, &val); local
50 ASSERT_GE(block, 0);
62 ssize_t block = table.getResource(appaslib::R::lib::integer::number1, &val); local
63 ASSERT_GE(block, 0);

Completed in 3220 milliseconds

1 2 3 4 5 6 7 8 91011>>