/external/tremolo/Tremolo/ |
H A D | ivorbisfile.h | 101 extern int ov_open(FILE *f,OggVorbis_File *vf,char *initial,long ibytes); 103 char *initial, long ibytes, ov_callbacks callbacks); 105 extern int ov_test(FILE *f,OggVorbis_File *vf,char *initial,long ibytes); 107 char *initial, long ibytes, ov_callbacks callbacks);
|
H A D | vorbisfile.c | 721 long ibytes, ov_callbacks callbacks){ 742 unsigned char *buffer=ogg_sync_bufferin(vf->oy,ibytes); 743 memcpy(buffer,initial,ibytes); 744 ogg_sync_wrote(vf->oy,ibytes); 810 int ov_open_callbacks(void *f,OggVorbis_File *vf,char *initial,long ibytes, argument 812 int ret=_ov_open1(f,vf,initial,ibytes,callbacks); 817 int ov_open(FILE *f,OggVorbis_File *vf,char *initial,long ibytes){ argument 825 return ov_open_callbacks((void *)f, vf, initial, ibytes, callbacks); 833 int ov_test_callbacks(void *f,OggVorbis_File *vf,char *initial,long ibytes, argument 836 return _ov_open1(f,vf,initial,ibytes,callback 720 _ov_open1(void *f,OggVorbis_File *vf,char *initial, long ibytes, ov_callbacks callbacks) argument 839 ov_test(FILE *f,OggVorbis_File *vf,char *initial,long ibytes) argument [all...] |
/external/libvorbis/include/vorbis/ |
H A D | vorbisfile.h | 151 extern int ov_open(FILE *f,OggVorbis_File *vf,char *initial,long ibytes); 153 char *initial, long ibytes, ov_callbacks callbacks); 155 extern int ov_test(FILE *f,OggVorbis_File *vf,char *initial,long ibytes); 157 char *initial, long ibytes, ov_callbacks callbacks);
|
/external/kernel-headers/original/uapi/linux/ |
H A D | mroute.h | 111 unsigned long ibytes; /* In bytes */ member in struct:sioc_vif_req
|
H A D | mroute6.h | 111 unsigned long ibytes; /* In bytes */ member in struct:sioc_mif_req6
|
/external/libvorbis/lib/ |
H A D | vorbisfile.c | 873 long ibytes, ov_callbacks callbacks){ 891 char *buffer=ogg_sync_buffer(&vf->oy,ibytes); 892 memcpy(buffer,initial,ibytes); 893 ogg_sync_wrote(&vf->oy,ibytes); 988 int ov_open_callbacks(void *f,OggVorbis_File *vf,char *initial,long ibytes, argument 990 int ret=_ov_open1(f,vf,initial,ibytes,callbacks); 995 int ov_open(FILE *f,OggVorbis_File *vf,char *initial,long ibytes){ argument 1003 return ov_open_callbacks((void *)f, vf, initial, ibytes, callbacks); 1050 int ov_test_callbacks(void *f,OggVorbis_File *vf,char *initial,long ibytes, argument 1053 return _ov_open1(f,vf,initial,ibytes,callback 872 _ov_open1(void *f,OggVorbis_File *vf,char *initial, long ibytes, ov_callbacks callbacks) argument 1056 ov_test(FILE *f,OggVorbis_File *vf,char *initial,long ibytes) argument [all...] |
/external/openssh/ |
H A D | clientloop.c | 1473 u_int64_t ibytes, obytes; local 1733 packet_get_bytes(&ibytes, &obytes); 1735 (unsigned long long)obytes, (unsigned long long)ibytes, total_time); 1738 obytes / total_time, ibytes / total_time);
|
H A D | sshd.c | 1459 u_int64_t ibytes, obytes; local 2258 packet_get_bytes(&ibytes, &obytes); 2260 (unsigned long long)obytes, (unsigned long long)ibytes);
|
H A D | packet.c | 395 ssh_packet_get_bytes(struct ssh *ssh, u_int64_t *ibytes, u_int64_t *obytes) argument 397 if (ibytes) 398 *ibytes = ssh->state->p_read.bytes;
|