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

12

/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/BlocksRuntime/tests/
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/valgrind/main/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/jmonkeyengine/engine/src/test/jme3test/bullet/
H A DTestFancyCar.java59 private VehicleWheel fr, fl, br, bl; field in class:TestFancyCar
/external/openssl/crypto/cmac/
H A Dcmac.c82 static void make_kn(unsigned char *k1, unsigned char *l, int bl) argument
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/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/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
121 auto bl = {1, 2.0}; // expected-error {{cannot deduce}} local
/external/dhcpcd/
H A Dshowlease.c201 int bl = 0; local
218 bl += ol;
248 if (valid_length(o, bl, type) == -1) {
253 *len = bl;
/external/mesa3d/src/pixelflinger2/
H A Draster.cpp152 const VertexOutput * tr, const VertexOutput * bl,
157 assert(tl->position.x <= tr->position.x && bl->position.x <= br->position.x);
158 assert(tl->position.y <= bl->position.y && tr->position.y <= br->position.y);
159 assert(fabs(tl->position.y - tr->position.y) < 1 && fabs(bl->position.y - br->position.y) < 1);
166 VertexOutput tlv(*tl), trv(*tr), blv(*bl), brv(*br);
151 RasterTrapezoid(const GGLInterface * iface, const VertexOutput * tl, const VertexOutput * tr, const VertexOutput * bl, const VertexOutput * br) argument
/external/openssl/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/openssl/crypto/bn/
H A Dbn_asm.c149 BN_ULONG bl,bh; local
154 bl=LBITS(w);
160 mul_add(rp[0],ap[0],bl,bh,c);
161 mul_add(rp[1],ap[1],bl,bh,c);
162 mul_add(rp[2],ap[2],bl,bh,c);
163 mul_add(rp[3],ap[3],bl,bh,c);
169 mul_add(rp[0],ap[0],bl,bh,c);
178 BN_ULONG bl,bh; local
183 bl=LBITS(w);
189 mul(rp[0],ap[0],bl,b
[all...]
H A Dbn_mul.c770 /* Calculate (al-ah)*(bh-bl) */
823 /* s0 == low(al*bl)
824 * s1 == low(ah*bh)+low((al-ah)*(bh-bl))+low(al*bl)+high(al*bl)
825 * We know s0 and s1 so the only unknown is high(al*bl)
826 * high(al*bl) == s1 - low(ah*bh+s0+(al-ah)*(bh-bl))
827 * high(al*bl) == s1 - (r[0]+l[0]+t[0])
860 /* s[0] = low(al*bl)
946 int top,al,bl; local
[all...]
/external/openssl/crypto/evp/
H A Devp_enc.c310 int i,j,bl; local
342 bl=ctx->cipher->block_size;
343 OPENSSL_assert(bl <= (int)sizeof(ctx->buf));
346 if (i+inl < bl)
355 j=bl-i;
357 if(!M_do_cipher(ctx,out,ctx->buf,bl)) return 0;
360 out+=bl;
361 *outl=bl;
366 i=inl&(bl-1);
390 unsigned int i, b, bl; local
[all...]
H A De_aes.c276 size_t bl = ctx->cipher->block_size; local
278 if (len<bl) return 1;
592 size_t bl = ctx->cipher->block_size; local
596 if (len<bl) return 1;
598 for (i=0,len-=bl;i<=len;i+=bl)
/external/qemu-pc-bios/vgabios/
H A Dvbe.c126 cmp bl, #0x80 variable
128 cmp bl, #0x00 variable
478 mov ah, bl
1070 mov bl, al variable
1216 cmp bl, #0x00 variable
1264 cmp bl, #0x01 variable
1266 cmp bl, #0x02 variable
1275 mov bl, ah variable
1276 or bl, bl variable
1279 mov bl, #1 variable
1289 mov bl, ah variable
1292 or bl, bl variable
1295 mov bl, #1 variable
1344 cmp bl, #0x80 variable
1346 cmp bl, #0x01 variable
1382 cmp bl, #0x01 variable
1440 test bl, bl variable
[all...]
/external/quake/quake/src/WinQuake/
H A Ddosisms.h66 unsigned char bl, bh, ebx_b2, ebx_b3; member in struct:__anon11613::__anon11616
/external/skia/src/core/
H A DSk64.cpp184 uint32_t bl = b & 0xFFFF; local
187 uint32_t B = ah * bl + al * bh;
188 uint32_t C = al * bl;
/external/mesa3d/include/pixelflinger2/
H A Dpixelflinger2_format.h122 uint8_t bl; // blue low bit position member in struct:__anon9467::__anon9469::__anon9470
/external/openssl/crypto/pem/
H A Dpem_lib.c671 int end=0,i,k,bl=0,hl=0,nohead=0; local
744 bl=0;
762 if (!BUF_MEM_grow_clean(dataB,i+bl+9))
767 memcpy(&(dataB->data[bl]),buf,i);
768 dataB->data[bl+i]='\0';
769 bl+=i;
788 bl=hl;
801 (unsigned char *)dataB->data,&bl,
802 (unsigned char *)dataB->data,bl);
808 i=EVP_DecodeFinal(&ctx,(unsigned char *)&(dataB->data[bl]),
[all...]
/external/qemu-pc-bios/vgabios/tests/lfbprof/
H A Dlfbprof.h103 unsigned char al, ah, bl, bh, cl, ch, dl, dh; member in struct:_RMBYTEREGS
124 "mov al,bl" \

Completed in 1560 milliseconds

12