Searched defs:bl (Results 1 - 25 of 46) sorted by relevance

12

/external/llvm/test/MC/ARM/
H A Dsymbol-variants.s20 bl f04(PLT) label
21 bl f05(plt) label
/external/ipsec-tools/src/racoon/
H A Dvmbuf.h42 * <----------------------> bl
48 size_t bl; /* length of the buffer */ member in struct:_vchar_t_
/external/compiler-rt/test/BlocksRuntime/
H A DobjectRRGC.c52 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);
H A Dobjectassign.c55 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);
/external/clang/test/PCH/
H A Dtypes.c29 void test_block_ptr(Block *bl) { argument
30 *bl = ^(int x, float f) { return x; };
/external/freetype/src/gzip/
H A Dinfblock.c156 uInt bl, bd; local
159 inflate_trees_fixed(&bl, &bd, (const inflate_huft**)&tl,
161 s->sub.decode.codes = inflate_codes_new(bl, bd, tl, td, z);
308 uInt bl, bd; local
312 bl = 9; /* must be <= 9 for lookahead assumptions */
316 s->sub.trees.blens, &bl, &bd, &tl, &td,
329 if ((c = inflate_codes_new(bl, bd, tl, td, z)) == Z_NULL)
H A Dinfcodes.c58 local inflate_codes_statef *inflate_codes_new( /* bl, bd, tl, td, z) */ argument
59 uInt bl, uInt bd,
70 c->lbits = (Byte)bl;
H A Dinftrees.c327 local int inflate_trees_dynamic( /* nl, nd, c, bl, bd, tl, td, hp, z) */ argument
331 uIntf *bl, /* literal desired/actual bit depth */
348 r = huft_build(c, nl, 257, cplens, cplext, tl, bl, hp, &hn, v);
349 if (r != Z_OK || *bl == 0)
409 local int inflate_trees_fixed( /* bl, bd, tl, td, z) */ argument
410 uIntf *bl, /* literal desired/actual bit depth */
463 *bl = fixed_bl;
/external/valgrind/coregrind/m_demangle/
H A Dsafe-ctype.c133 #define bl _sch_isblank macro
159 #define T (const unsigned short) (nv|sp|bl|cn) /* tab */
160 #define S (const unsigned short) (nv|sp|bl|pr) /* space */
/external/eigen/Eigen/src/Core/
H A DStableNorm.h18 inline void stable_norm_kernel(const ExpressionType& bl, Scalar& ssq, Scalar& scale, Scalar& invScale) argument
21 Scalar maxCoeff = bl.cwiseAbs().maxCoeff();
41 if(scale>Scalar(0)) // if scale==0, then bl is 0
42 ssq += (bl*invScale).squaredNorm();
64 // bl, b2, slm, s2m, relerr overfl
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
H A DTestFancyCar.java59 private VehicleWheel fr, fl, br, bl; field in class:TestFancyCar
/external/zlib/src/contrib/inflate86/
H A Dinffas86.c161 " cmpb $32, %%bl\n"
165 " movb %%bl, %%cl\n" /* cl = bits, needs it for shifting */
166 " addb $32, %%bl\n" /* bits += 32 */
180 " cmpb $32, %%bl\n"
184 " movb %%bl, %%cl\n" /* cl = bits, needs it for shifting */
185 " addb $32, %%bl\n" /* bits += 32 */
194 " subb %%ah, %%bl\n" /* bits -= this.bits */
210 " subb %%ah, %%bl\n" /* bits -= this.bits */
232 " subb %%cl, %%bl\n"
243 " cmpb $32, %%bl\
820 cmp bl, 15 local
826 add bl, 16 /* bits += 16 */ local
837 sub bl, ah /* bits -= this.bits */ local
858 cmp bl, cl local
865 add bl, 16 /* bits += 16 */ local
871 sub bl, cl local
881 cmp bl, 15 local
887 add bl, 16 /* bits += 16 */ local
901 sub bl, ah /* bits -= this.bits */ local
909 cmp bl, cl local
916 add bl, 16 /* bits += 16 */ local
922 sub bl, cl local
[all...]
/external/zlib/src/contrib/iostream/
H A Dzfstream.cpp192 int bl = blen(); local
193 setp( base(), base() + bl);
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3bitset.c423 ANTLR3_UINT32 bl; local
426 bl = (bitset->blist.length << 1);
429 if (bl > nw)
431 bitset->grow(bitset, bl);
/external/boringssl/src/crypto/asn1/
H A Da_object.c93 BIGNUM *bl = NULL; local
145 if (!bl)
146 bl = BN_new();
147 if (!bl || !BN_set_word(bl, l))
152 if (!BN_mul_word(bl, 10L)
153 || !BN_add_word(bl, c-'0'))
168 if (!BN_add_word(bl, first * 40))
178 blsize = BN_num_bits(bl);
190 tmp[i++] = (unsigned char)BN_div_word(bl,
[all...]
/external/boringssl/src/crypto/bn/
H A Dmul.c584 int top, al, bl; local
591 bl = b->top;
593 if ((al == 0) || (bl == 0)) {
597 top = al + bl;
609 i = al - bl;
621 if ((al >= BN_MULL_SIZE_NORMAL) && (bl >= BN_MULL_SIZE_NORMAL)) {
629 j = BN_num_bits_word((BN_ULONG)bl);
632 assert(j <= al || j <= bl);
638 if (al > j || bl > j) {
645 bn_mul_part_recursive(rr->d, a->d, b->d, j, al - j, bl
[all...]
H A Dgeneric.c147 #define mul64(l, h, bl, bh) \
154 lt = (bl) * (lt); \
155 m1 = (bl) * (ht); \
188 #define mul_add(r, a, bl, bh, c) \
195 mul64(l, h, (bl), (bh)); \
209 #define mul(r, a, bl, bh, c) \
216 mul64(l, h, (bl), (bh)); \
312 BN_ULONG bl, bh; local
319 bl = LBITS(w);
323 mul_add(rp[0], ap[0], bl, b
342 BN_ULONG bl, bh; local
[all...]
/external/clang/test/SemaCXX/
H A Dconversion.cpp68 bool bl = NULL; // expected-warning {{implicit conversion of NULL constant to 'bool'}} local
H A Dcxx0x-initializer-stdinitializerlist.cpp61 std::initializer_list<B> bl = { {1, 2}, {2, 3}, {} }; local
122 auto bl = {1, 2.0}; // expected-error {{cannot deduce}} local
/external/dhcpcd/
H A Dshowlease.c203 int bl = 0; local
220 bl += ol;
250 if (valid_length(o, bl, type) == -1) {
255 *len = bl;
H A Ddhcp.c314 int bl = 0; local
337 bl += ol;
367 if (valid_length(opt, bl, type) == -1) {
372 *len = bl;
/external/boringssl/src/crypto/cipher/
H A Dcipher.c250 int i, j, bl; local
278 bl = ctx->cipher->block_size;
279 assert(bl <= (int)sizeof(ctx->buf));
281 if (i + in_len < bl) {
287 j = bl - i;
289 if (!ctx->cipher->cipher(ctx, out, ctx->buf, bl)) {
294 out += bl;
295 *out_len = bl;
319 unsigned int i, b, bl; local
338 bl
[all...]
/external/boringssl/src/crypto/obj/
H A Dobj.c410 BIGNUM *bl; local
441 bl = NULL;
453 if (!BN_add_word(bl, c & 0x7f)) {
463 if (!bl && !(bl = BN_new())) {
466 if (!BN_set_word(bl, l)) {
472 if (!BN_lshift(bl, bl, 7)) {
485 if (!BN_sub_word(bl, 80)) {
505 bndec = BN_bn2dec(bl);
[all...]
/external/boringssl/src/crypto/pem/
H A Dpem_lib.c633 int end=0,i,k,bl=0,hl=0,nohead=0; local
706 bl=0;
724 if (!BUF_MEM_grow_clean(dataB,i+bl+9))
729 memcpy(&(dataB->data[bl]),buf,i);
730 dataB->data[bl+i]='\0';
731 bl+=i;
750 bl=hl;
763 (unsigned char *)dataB->data,&bl,
764 (unsigned char *)dataB->data,bl);
770 i=EVP_DecodeFinal(&ctx,(unsigned char *)&(dataB->data[bl]),
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fTextureWrapTests.cpp104 Case (const tcu::Vec2& bl, const tcu::Vec2& tr) : bottomLeft(bl), topRight(tr) {} argument

Completed in 1256 milliseconds

12