/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/config/ |
_warnings_off.h | 46 # pragma option -w-inl // -w-8027 Functions containing reserved words are not expanded inline
|
/external/grub/netboot/ |
davicom.c | 100 #define eeprom_delay() inl(ee_addr) 334 phy_data=(inl(ee_addr)>>19) & 0x1; 432 retval = (retval << 1) | ((inl(ee_addr) & EE_DATA_READ) ? 1 : 0); 503 outl(inl(ioaddr + CSR6) & ~0x00002002, ioaddr + CSR6); 530 outl(inl(ioaddr + CSR6) | 0x00002000, ioaddr + CSR6); 551 outl(inl(ioaddr + CSR6) | 0x00000002, ioaddr + CSR6); 569 /* outl(inl(ioaddr + CSR6) & ~0x00002000, ioaddr + CSR6); */ 648 outl(inl(ioaddr + CSR6) & ~0x00002002, ioaddr + CSR6); 651 (volatile unsigned long)inl(ioaddr + CSR8); 677 outl(inl(ioaddr + CSR6) & ~0x00002002, ioaddr + CSR6) [all...] |
tulip.c | 350 #define eeprom_delay() inl(ee_addr) 555 #define mdio_delay() inl(mdio_addr) 586 inl(ioaddr + 0xA0); 587 inl(ioaddr + 0xA0); 589 if ( ! ((retval = inl(ioaddr + 0xA0)) & 0x80000000)) 597 return inl(ioaddr + 0xB4 + (location<<2)); 599 return inl(ioaddr + 0xD0); 601 return inl(ioaddr + 0xD4 + ((location-29)<<2)); 626 retval = (retval << 1) | ((inl(mdio_addr) & MDIO_DATA_READ) ? 1 : 0); 647 if ( ! (inl(ioaddr + 0xA0) & 0x80000000) [all...] |
sis900.c | 327 #define eeprom_delay() inl(ee_addr) 372 retval = (retval << 1) | ((inl(ee_addr) & EEDO) ? 1 : 0); 384 #define sis900_mdio_delay() inl(mdio_addr) 437 retval = (retval << 1) | ((inl(mdio_addr) & MDIO) ? 1 : 0); 539 status ^= (inl(isr + ioaddr) & status); 561 rfcrSave = inl(rfcr + ioaddr); 576 i, inl(ioaddr + rfdr)); 606 inl(ioaddr + txdp)); 642 inl(ioaddr + rxdp)); 929 inl(ioaddr + txdp)) [all...] |
/external/openssl/crypto/pkcs7/ |
bio_ber.c | 273 static int ber_write(BIO *b, char *in, int inl) 279 ret=inl; 296 if ((in == NULL) || (inl <= 0)) return(0); 299 while (inl > 0) 301 n=(inl > ENC_BLOCK_SIZE)?ENC_BLOCK_SIZE:inl; 305 inl-=n;
|
/external/openssl/crypto/evp/ |
bio_ok.c | 284 static int ok_write(BIO *b, const char *in, int inl) 289 if (inl <= 0) return inl; 292 ret=inl; 323 if ((in == NULL) || (inl <= 0)) return(0); 325 n= (inl+ ctx->buf_len > OK_BLOCK_SIZE+ OK_BLOCK_BLOCK) ? 326 (int)(OK_BLOCK_SIZE+OK_BLOCK_BLOCK-ctx->buf_len) : inl; 330 inl-=n; 337 }while(inl > 0);
|
bio_md.c | 142 static int md_write(BIO *b, const char *in, int inl) 147 if ((in == NULL) || (inl <= 0)) return(0); 151 ret=BIO_write(b->next_bio,in,inl);
|
bio_b64.c | 373 static int b64_write(BIO *b, const char *in, int inl) 414 if ((in == NULL) || (inl <= 0)) return(0); 416 while (inl > 0) 418 n=(inl > B64_BLOCK_SIZE)?B64_BLOCK_SIZE:inl; 427 if (n > inl) 428 n=inl; 466 inl-=n;
|
e_idea.c | 76 const unsigned char *in, size_t inl)
|
evp_lib.c | 187 int EVP_Cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, unsigned int inl) 189 return ctx->cipher->do_cipher(ctx,out,in,inl);
|
/external/openssl/crypto/bio/ |
bss_log.c | 168 static int MS_CALLBACK slg_write(BIO *b, const char *in, int inl) 170 int ret= inl; 204 if((buf= (char *)OPENSSL_malloc(inl+ 1)) == NULL){ 207 strncpy(buf, in, inl); 208 buf[inl]= '\0';
|
bss_mem.c | 169 static int mem_write(BIO *b, const char *in, int inl) 189 if (BUF_MEM_grow_clean(bm,blen+inl) != (blen+inl)) 191 memcpy(&(bm->data[blen]),in,inl); 192 ret=inl;
|
bio_lib.c | 222 int BIO_write(BIO *b, const void *in, int inl) 238 ((i=(int)cb(b,BIO_CB_WRITE,in,inl,0L,1L)) <= 0)) 247 i=b->method->bwrite(b,in,inl); 252 i=(int)cb(b,BIO_CB_WRITE|BIO_CB_RETURN,in,inl, 290 int BIO_gets(BIO *b, char *in, int inl) 304 ((i=(int)cb(b,BIO_CB_GETS,in,inl,0L,1L)) <= 0)) 313 i=b->method->bgets(b,in,inl); 316 i=(int)cb(b,BIO_CB_GETS|BIO_CB_RETURN,in,inl,
|
bss_fd.c | 162 static int fd_write(BIO *b, const char *in, int inl) 166 ret=UP_write(b->num,in,inl);
|
bss_sock.c | 153 static int sock_write(BIO *b, const char *in, int inl) 158 ret=writesocket(b->num,in,inl);
|
bss_file.c | 253 static int MS_CALLBACK file_write(BIO *b, const char *in, int inl) 260 ret=UP_fwrite(in,(int)inl,1,b->ptr); 262 ret=fwrite(in,(int)inl,1,(FILE *)b->ptr); 264 ret=inl; 265 /* ret=fwrite(in,1,(int)inl,(FILE *)b->ptr); */ 267 * out version above can cause 'inl' write calls under
|
bss_dgram.c | 330 static int dgram_write(BIO *b, const char *in, int inl) 337 ret=writesocket(b->num,in,inl); 349 ret=sendto(b->num, (char *)in, inl, 0, &data->peer.sa, peerlen); 351 ret=sendto(b->num, in, inl, 0, &data->peer.sa, peerlen);
|
/prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/xorg/ |
compiler.h | 100 # define inl RealInl macro 109 # define inl inpd macro 144 extern unsigned int inl(unsigned short); 153 extern unsigned int inl(unsigned long); 219 inl(unsigned long port) function 239 extern unsigned int inl(unsigned int port); 509 # undef inl macro 515 extern unsigned int inl(unsigned long port); 574 inl(unsigned short port) function 577 __asm__ __volatile__("inl %1,%0" 640 inl(unsigned long port) function 957 inl(unsigned PORT_SIZE port) function 1293 inl(unsigned short port) function 1427 inl(unsigned short port) function 1477 inl(unsigned short port) function 1518 inl(unsigned short port) function 1565 # undef inl macro 1584 # define inl macro 1669 # undef inl macro 1675 # define inl macro [all...] |
/external/openssl/crypto/comp/ |
c_zlib.c | 447 static int bio_zlib_write(BIO *b, const char *in, int inl); 597 static int bio_zlib_write(BIO *b, const char *in, int inl) 602 if(!in || !inl) return 0; 624 zout->avail_in = inl; 633 int tot = inl - zout->avail_in; 644 return inl;
|
/external/webkit/Source/WebKit/efl/ewk/ |
ewk_tiled_matrix.c | 281 Eina_Inlist *inl; local 300 inl = eina_inlist_promote(EINA_INLIST_GET(t), EINA_INLIST_GET(item_found)); 301 eina_matrixsparse_data_idx_replace(tm->matrix, row, col, inl, NULL); 364 Eina_Inlist *inl; local 401 inl = eina_inlist_promote(EINA_INLIST_GET(t), EINA_INLIST_GET(item_found)); 402 eina_matrixsparse_data_idx_replace(tm->matrix, row, col, inl, NULL);
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_bootstrap_unittest.cc | 51 #include <google/protobuf/stubs/stl_util-inl.h>
|
/external/protobuf/src/google/protobuf/stubs/ |
substitute.cc | 35 #include <google/protobuf/stubs/stl_util-inl.h>
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/ |
io.h | 80 inl (unsigned short int port) function 84 __asm__ __volatile__ ("inl %w1,%0":"=a" (_v):"Nd" (port)); 92 __asm__ __volatile__ ("inl %w1,%0\noutb %%al,$0x80":"=a" (_v):"Nd" (port));
|
/external/openssl/crypto/engine/ |
eng_openssl.c | 241 const unsigned char *in, size_t inl) 246 RC4(&test(ctx)->ks,inl,in,out);
|
/external/openssl/apps/ |
enc.c | 109 int ret=1,inl; local 654 inl=BIO_read(rbio,(char *)buff,bsize); 655 if (inl <= 0) break; 656 if (BIO_write(wbio,(char *)buff,inl) != inl)
|