HomeSort by relevance Sort by last modified time
    Searched refs:bp (Results 151 - 175 of 901) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/boringssl/src/include/openssl/
pem.h 256 OPENSSL_EXPORT type *PEM_read_bio_##name(BIO *bp, type **x, pem_password_cb *cb, void *u)\
258 return PEM_ASN1_read_bio((d2i_of_void *)d2i_##asn1, str,bp,(void **)x,cb,u); \
262 OPENSSL_EXPORT int PEM_write_bio_##name(BIO *bp, type *x) \
264 return PEM_ASN1_write_bio((i2d_of_void *)i2d_##asn1,str,bp,x,NULL,NULL,0,NULL,NULL); \
268 OPENSSL_EXPORT int PEM_write_bio_##name(BIO *bp, const type *x) \
270 return PEM_ASN1_write_bio((i2d_of_void *)i2d_##asn1,str,bp,(void *)x,NULL,NULL,0,NULL,NULL); \
274 OPENSSL_EXPORT int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \
277 return PEM_ASN1_write_bio((i2d_of_void *)i2d_##asn1,str,bp,x,enc,kstr,klen,cb,u); \
281 OPENSSL_EXPORT int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \
284 return PEM_ASN1_write_bio((i2d_of_void *)i2d_##asn1,str,bp,(void *)x,enc,kstr,klen,cb,u);
    [all...]
  /external/pdfium/third_party/libtiff/
tif_fax3.c 809 find0span(unsigned char* bp, int32 bs, int32 be)
814 bp += bs>>3;
819 span = zeroruns[(*bp << n) & 0xff];
827 bp++;
835 while (!isAligned(bp, long)) {
836 if (*bp != 0x00)
837 return (span + zeroruns[*bp]);
839 bp++;
841 lp = (long*) bp;
846 bp = (unsigned char*) lp
    [all...]
  /device/linaro/bootloader/edk2/DuetPkg/BootSector/
bs32.asm 94 mov bp,sp ; bp = 0x7c00
97 mov byte ptr [bp+PhysicalDrive],dl ; BBS defines that BIOS would pass the booting driver number to the loader through DL
107 cmp word ptr [bp+SectorSignature],0aa55h ; Verify Boot Sector Signature
109 mov cx,word ptr [bp+RootEntries] ; cx = RootEntries
116 mov al,byte ptr [bp+NoFats] ; al = NoFats
118 mul word ptr [bp+SectorsPerFat32] ; ax = NoFats * SectorsPerFat
119 add ax,word ptr [bp+ReservedSectors] ; ax = NoFats * SectorsPerFat + ReservedSectors = RootLBA
121 mov word ptr [bp],ax ; Save FirstClusterLBA for later use
123 mov ax,word ptr [bp+RootCluster] ; ax = StartCluster of Root Directory
    [all...]
bootsect.asm 92 mov bp,sp ; bp = 0x7c00
95 mov byte ptr [bp+PhysicalDrive],dl ; BBS defines that BIOS would pass the booting driver number to the loader through DL
105 cmp word ptr [bp+SectorSignature],0aa55h ; Verify Boot Sector Signature
107 mov cx,word ptr [bp+RootEntries] ; cx = RootEntries
114 mov al,byte ptr [bp+NoFats] ; al = NoFats
116 mul word ptr [bp+SectorsPerFat] ; ax = NoFats * SectorsPerFat
117 add ax,word ptr [bp+ReservedSectors] ; ax = NoFats * SectorsPerFat + ReservedSectors = RootLBA
123 mov word ptr [bp],ax ; Save FirstClusterLBA (FirstDataSector) for later use
175 mov bl,byte ptr [bp+SectorsPerCluster] ; bx = SectorsPerCluster
    [all...]
bs16.asm 79 mov bp,sp ; bp = 0x7c00
82 mov byte ptr [bp+PhysicalDrive],dl ; BBS defines that BIOS would pass the booting driver number to the loader through DL
92 cmp word ptr [bp+SectorSignature],0aa55h ; Verify Boot Sector Signature
94 mov cx,word ptr [bp+RootEntries] ; cx = RootEntries
101 mov al,byte ptr [bp+NoFats] ; al = NoFats
103 mul word ptr [bp+SectorsPerFat] ; ax = NoFats * SectorsPerFat
104 add ax,word ptr [bp+ReservedSectors] ; ax = NoFats * SectorsPerFat + ReservedSectors = RootLBA
110 mov word ptr [bp],ax ; Save FirstClusterLBA (FirstDataSector) for later use
162 mov bl,byte ptr [bp+SectorsPerCluster] ; bx = SectorsPerCluster
    [all...]
  /external/pdfium/third_party/lcms2-2.6/src/
cmsgmt.c 429 cmsTACestimator* bp = (cmsTACestimator*) Cargo; local
436 cmsDoTransform(bp->hRoundTrip, In, RoundTrip, 1);
439 for (Sum=0, i=0; i < bp ->nOutputChans; i++)
443 if (Sum > bp ->MaxTAC) {
445 bp ->MaxTAC = Sum;
447 for (i=0; i < bp ->nOutputChans; i++) {
448 bp ->MaxInput[i] = In[i];
461 cmsTACestimator bp; local
475 bp.nOutputChans = T_CHANNELS(dwFormatter);
476 bp.MaxTAC = 0; // Initial TAC is
    [all...]
  /external/syslinux/com32/gdbstub/
gdbstub.c 131 static void gdbmach_commit_hwbp(struct hwbp *bp)
133 int regnum = bp - hwbps;
138 __asm__ __volatile__("movl %0, %%dr0\n": :"r"(bp->addr));
141 __asm__ __volatile__("movl %0, %%dr1\n": :"r"(bp->addr));
144 __asm__ __volatile__("movl %0, %%dr2\n": :"r"(bp->addr));
147 __asm__ __volatile__("movl %0, %%dr3\n": :"r"(bp->addr));
153 dr7 |= bp->type << (16 + 4 * regnum);
157 dr7 |= bp->len << (18 + 4 * regnum);
161 dr7 |= bp->enabled << 2 * regnum;
166 struct hwbp *bp; local
    [all...]
  /external/boringssl/src/crypto/pem/
pem_all.c 153 RSA *PEM_read_bio_RSAPrivateKey(BIO *bp, RSA **rsa, pem_password_cb *cb,
157 pktmp = PEM_read_bio_PrivateKey(bp, NULL, cb, u);
197 DSA *PEM_read_bio_DSAPrivateKey(BIO *bp, DSA **dsa, pem_password_cb *cb,
201 pktmp = PEM_read_bio_PrivateKey(bp, NULL, cb, u);
237 EC_KEY *PEM_read_bio_ECPrivateKey(BIO *bp, EC_KEY **key, pem_password_cb *cb,
241 pktmp = PEM_read_bio_PrivateKey(bp, NULL, cb, u);
  /external/syslinux/core/fs/xfs/
xfs_ag.h 114 #define XFS_BUF_TO_AGF(bp) ((xfs_agf_t *)((bp)->b_addr))
141 #define XFS_BUF_TO_AGI(bp) ((xfs_agi_t *)((bp)->b_addr))
153 #define XFS_BUF_TO_AGFL(bp) ((xfs_agfl_t *)((bp)->b_addr))
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
Socklib_internals.h 40 void _map_v4v6_hostent (struct hostent *hp, char **bp, int *len);
  /external/boringssl/src/crypto/x509/
internal.h 41 * parameters in |sigalg| to |bp|. It returns one on success and zero on
43 int x509_print_rsa_pss_params(BIO *bp, const X509_ALGOR *sigalg, int indent,
  /external/ipsec-tools/src/racoon/
vmbuf.h 38 * bp v
49 caddr_t bp; /* pointer to the buffer */ member in struct:_vchar_t_
  /external/syslinux/gpxe/src/arch/i386/interface/pxe/
pxe_entry.S 204 pushw %bp
205 movw %sp, %bp
206 andb $~0x01, 8(%bp) /* Clear CF on return */
207 popw %bp
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/v850/
branch.s 18 bp bcc
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_poly.cpp 30 double bp,bp2,cp,dp,q,r,srq; local
43 bp=b/a;
44 bp2=bp*bp;
49 r=(2.0*bp2*bp-9.0*bp*cp+27.0*dp)/54.0;
57 bp_through3=bp/3.0;
76 bp_through3=bp/3.0;
83 bp_through3=bp/3.0;
  /bionic/libc/dns/net/
gethnamaddr.c 208 char *bp, **ap, **hap, *ep; local
245 bp = buf;
252 n = dn_expand(answer->buf, eom, cp, bp, (int)(ep - bp));
253 if ((n < 0) || !maybe_ok(res, bp, name_ok))
262 n = (int)strlen(bp) + 1; /* for the \0 */
265 hent->h_name = bp;
266 bp += n;
277 n = dn_expand(answer->buf, eom, cp, bp, (int)(ep - bp));
    [all...]
  /external/tcpdump/
print-dccp.c 223 static uint64_t dccp_seqno(const u_char *bp)
225 const struct dccp_hdr *dh = (const struct dccp_hdr *)bp;
229 const struct dccp_hdr_ext *dhx = (const struct dccp_hdr_ext *)bp;
243 static void dccp_print_ack_no(netdissect_options *ndo, const u_char *bp)
245 const struct dccp_hdr *dh = (const struct dccp_hdr *)bp;
246 const u_char *ackp = bp + dccp_basic_hdr_len(dh);
266 * @bp - beginning of dccp packet
270 void dccp_print(netdissect_options *ndo, const u_char *bp, const u_char *data2,
284 dh = (const struct dccp_hdr *)bp;
349 if (ndo->ndo_vflag && ND_TTEST2(bp[0], len))
    [all...]
print-ap1394.c 52 ap1394_hdr_print(netdissect_options *ndo, register const u_char *bp, u_int length)
57 fp = (const struct firewire_header *)bp;
print-lane.c 69 lane_hdr_print(netdissect_options *ndo, const u_char *bp)
71 ND_PRINT((ndo, "lecid:%x ", EXTRACT_16BITS(bp)));
print-mobile.c 65 mobile_print(netdissect_options *ndo, const u_char *bp, u_int length)
72 mob = (const struct mobile_ip *)bp;
  /external/openssh/
scp.c 575 char *bp, *host, *src, *suser, *thost, *tuser, *arg; local
623 xasprintf(&bp, "%s -f %s%s", cmd,
625 if (do_cmd(host, suser, bp, &remin, &remout) < 0)
627 free(bp);
629 xasprintf(&bp, "%s -t %s%s", cmd,
631 if (do_cmd2(host, tuser, bp, remin, remout) < 0)
633 free(bp);
676 xasprintf(&bp, "%s -t %s%s", cmd,
679 if (do_cmd(host, tuser, bp, &remin,
684 free(bp);
695 char *bp, *host, *src, *suser; local
749 BUF *bp; local
914 BUF *bp; local
    [all...]
  /bionic/libc/dns/nameser/
ns_name.c 222 u_char *label, *bp, *eom; local
227 bp = dst;
229 label = bp++;
239 &label, &bp, eom))
245 label = bp++;
279 c = (int)(bp - label - 1);
292 if (bp >= eom) {
296 *bp++ = '\0';
298 if ((bp - dst) > MAXCDNAME) {
303 *dstlen = (bp - dst)
    [all...]
  /external/clang/test/CodeGen/
ext-vector.c 76 void test6(float4 *ap, float4 *bp, float c) {
78 float4 b = *bp;
130 void test7(int4 *ap, int4 *bp, int c) {
132 int4 b = *bp;
196 void test8(float4 *ap, float4 *bp, int c) {
198 float4 b = *bp;
252 void test14(uint4 *ap, uint4 *bp, unsigned c) {
254 uint4 b = *bp;
  /external/clang/test/SemaTemplate/
instantiate-cast.cpp 122 void test_derived_to_base(Base *&bp, Derived2<int> *dp) {
123 bp = dp;
  /external/selinux/libselinux/
Android.mk 4 # to work-around an issue/bug in the blueprint files. See the Android.bp

Completed in 9445 milliseconds

1 2 3 4 5 67 8 91011>>