HomeSort by relevance Sort by last modified time
    Searched refs:bl (Results 1 - 25 of 442) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/MC/AArch64/
elf-reloc-uncondbrimm.s 5 bl somewhere
  /bionic/libc/arch-x86/generic/string/
strncmp.S 28 movb (%eax),%bl
29 testb %bl,%bl
31 cmpb %bl,(%ecx)
38 movb (%eax),%bl
39 testb %bl,%bl
41 cmpb %bl,(%ecx)
48 movb (%eax),%bl
49 testb %bl,%b
    [all...]
  /ndk/tests/build/build-assembly-file/jni/
assembly1.s 3 bl bar
  /libcore/luni/src/test/java/com/android/org/bouncycastle/jce/provider/
CertBlacklistTest.java 154 CertBlacklist bl = new CertBlacklist(path, CertBlacklist.DEFAULT_SERIAL_BLACKLIST_PATH); local
156 Set<byte[]> arr = bl.pubkeyBlacklist;
167 CertBlacklist bl = new CertBlacklist(CertBlacklist.DEFAULT_PUBKEY_BLACKLIST_PATH, path); local
169 Set<BigInteger> arr = bl.serialBlacklist;
236 HashSet<String> bl = new HashSet<String>(); local
237 bl.add("6ccabd7db47e94a5759901b6a7dfd45d1c091ccc");
239 writeBlacklist(bl);
240 // add the default pubkeys into the bl
241 bl.addAll(DEFAULT_PUBKEYS);
243 assertEquals(bl, getCurrentPubkeyBlacklist())
252 CertBlacklist bl = new CertBlacklist(tmpFile.getCanonicalPath(), local
268 CertBlacklist bl = new CertBlacklist(tmpFile.getCanonicalPath(), local
276 HashSet<String> bl = new HashSet<String>(); local
288 HashSet<String> bl = new HashSet<String>(); local
301 HashSet<String> bl = new HashSet<String>(); local
314 HashSet<String> bl = new HashSet<String>(); local
330 HashSet<String> bl = new HashSet<String>(); local
354 HashSet<String> bl = new HashSet<String>(); local
364 HashSet<String> bl = new HashSet<String>(); local
374 HashSet<String> bl = new HashSet<String>(); local
384 HashSet<String> bl = new HashSet<String>(); local
396 HashSet<String> bl = new HashSet<String>(); local
407 CertBlacklist bl = new CertBlacklist(); local
417 CertBlacklist bl = new CertBlacklist(); local
423 CertBlacklist bl = new CertBlacklist(); local
431 CertBlacklist bl = new CertBlacklist(); local
437 CertBlacklist bl = new CertBlacklist(); local
445 CertBlacklist bl = new CertBlacklist(); local
    [all...]
  /external/llvm/test/MC/ARM/
2013-03-18-Br-to-label-named-like-reg.s 4 @ CHECK: bl r1
6 bl r1
elf-reloc-condcall.s 5 bl some_label
  /external/compiler-rt/test/BlocksRuntime/
objectRRGC.c 52 struct Block_layout *bl = (struct Block_layout *)(void *)myBlock; local
53 if ((bl->flags & BLOCK_HAS_DESCRIPTOR) != BLOCK_HAS_DESCRIPTOR) {
57 if ((bl->flags & BLOCK_HAS_COPY_DISPOSE) != BLOCK_HAS_COPY_DISPOSE) {
63 //printf("destbuffer is at %p, block at %p\n", destBuffer, (void *)bl);
65 bl->descriptor->copy(destBuffer, bl);
66 bl->descriptor->dispose(bl);
objectassign.c 55 struct Block_layout *bl = (struct Block_layout *)(void *)myBlock; local
56 if ((bl->flags & BLOCK_HAS_COPY_DISPOSE) != BLOCK_HAS_COPY_DISPOSE) {
62 //printf("destbuffer is at %p, block at %p\n", destBuffer, (void *)bl);
64 bl->descriptor->copy(destBuffer, bl);
65 bl->descriptor->dispose(bl);
  /bionic/linker/arch/arm/
begin.S 33 bl __linker_init
  /bionic/linker/arch/arm64/
begin.S 33 bl __linker_init
  /device/samsung/manta/bubblelevel/
BubbleLevelImpl.cpp 256 sp<BubbleLevelImpl> bl = sp<BubbleLevelImpl>((BubbleLevelImpl *)data); local
258 bl->lockState();
259 if (((bl->state() != BubbleLevelImpl::BL_STATE_POLLING) &&
260 (bl->state() != BubbleLevelImpl::BL_STATE_POLLING_ONCE)) ||
261 (bl->pollCount() >= BL_SENSOR_POLL_COUNT)) {
262 bl->unlockState();
265 bl->unlockState();
267 sp<SensorEventQueue> sensorEventQueue = bl->sensorEventQueue();
268 size_t numSensors = bl->numSensors();
292 bl->lockState()
309 bubble_level_C_impl *bl = (bubble_level_C_impl *)bubble_level; local
315 bubble_level_C_impl *bl = (bubble_level_C_impl *)bubble_level; local
321 bubble_level_C_impl *bl = (bubble_level_C_impl *)bubble_level; local
327 bubble_level_C_impl *bl = (bubble_level_C_impl *)bubble_level; local
333 bubble_level_C_impl *bl = (bubble_level_C_impl *)bubble_level; local
340 bubble_level_C_impl *bl = new bubble_level_C_impl(); local
357 bubble_level_C_impl *bl = (bubble_level_C_impl *)bubble_level; local
    [all...]
BubbleLevelImpl.h 130 BubbleLevelBase *bl = new BubbleLevelBase(); local
132 if (bl->initStatus() != 0) {
133 delete bl;
134 bl = NULL;
136 return static_cast<BubbleLevel *>(bl);
  /external/chromium_org/third_party/openssl/openssl/crypto/cmac/
cmac.c 82 static void make_kn(unsigned char *k1, unsigned char *l, int bl)
86 for (i = 0; i < bl; i++)
89 if (i < bl - 1 && l[i + 1] & 0x80)
94 k1[bl - 1] ^= bl == 16 ? 0x87 : 0x1b;
138 int bl; local
143 bl = EVP_CIPHER_CTX_block_size(&in->cctx);
144 memcpy(out->k1, in->k1, bl);
145 memcpy(out->k2, in->k2, bl);
146 memcpy(out->tbl, in->tbl, bl);
192 int bl; local
218 size_t bl; local
263 int i, bl, lb; local
    [all...]
  /external/openssl/crypto/cmac/
cmac.c 82 static void make_kn(unsigned char *k1, unsigned char *l, int bl)
86 for (i = 0; i < bl; i++)
89 if (i < bl - 1 && l[i + 1] & 0x80)
94 k1[bl - 1] ^= bl == 16 ? 0x87 : 0x1b;
138 int bl; local
143 bl = EVP_CIPHER_CTX_block_size(&in->cctx);
144 memcpy(out->k1, in->k1, bl);
145 memcpy(out->k2, in->k2, bl);
146 memcpy(out->tbl, in->tbl, bl);
192 int bl; local
218 size_t bl; local
263 int i, bl, lb; local
    [all...]
  /bionic/libc/arch-arm/bionic/
abort_arm.S 43 bl PIC_SYM(__libc_android_abort, PLT)
  /external/clang/test/PCH/
blocks.h 3 int call_block(int (^bl)(int x, int y), int a, int b) {
4 return bl(a, b);
types.c 29 void test_block_ptr(Block *bl) {
30 *bl = ^(int x, float f) { return x; };
  /external/compiler-rt/lib/builtins/arm/
aeabi_idivmod.S 24 bl SYMBOL_NAME(__divmodsi4)
aeabi_uidivmod.S 25 bl SYMBOL_NAME(__udivmodsi4)
sync_synchronize.S 28 bl _OSMemoryBarrier
  /external/emma/core/java12/com/vladium/emma/data/
MethodDescriptor.java 135 for (int bl = 0, blCount = blockMap.length; bl < blCount; ++ bl)
137 final int [] lines = blockMap [bl];
153 blockIDs.add (bl);
198 for (int bl = 0; bl < m_blockMap.length; ++ bl)
201 s.append (indent + INDENT_INCREMENT + "block " + bl + " (" + m_blockSizes [bl] + " instrs) : ")
    [all...]
  /external/ipsec-tools/src/racoon/
misc.c 96 bit2str(n, bl)
97 int n, bl;
103 if (bl > MAXBITLEN)
105 memset(b, '0', bl);
106 b[bl] = '\0';
108 for (i = 0; i < bl; i++) {
110 b[bl - 1 - i] = '1';
  /external/chromium_org/third_party/openssl/openssl/crypto/rc4/asm/
rc4-md5-x86_64.S 65 addb %bl,%cl
77 addb %dl,%bl
81 movzbl %bl,%ebx
102 addb %bl,%cl
113 addb %dl,%bl
117 movzbl %bl,%ebx
138 addb %bl,%cl
149 addb %dl,%bl
153 movzbl %bl,%ebx
174 addb %bl,%c
    [all...]
  /external/openssl/crypto/rc4/asm/
rc4-md5-x86_64.S 65 addb %bl,%cl
77 addb %dl,%bl
81 movzbl %bl,%ebx
102 addb %bl,%cl
113 addb %dl,%bl
117 movzbl %bl,%ebx
138 addb %bl,%cl
149 addb %dl,%bl
153 movzbl %bl,%ebx
174 addb %bl,%c
    [all...]
  /external/chromium_org/third_party/webrtc/system_wrappers/interface/
asm_defines.h 28 bl _\name
41 bl \name

Completed in 772 milliseconds

1 2 3 4 5 6 7 8 91011>>