代码搜索:Encode
找到约 8,258 项符合「Encode」的源代码
代码结果 8,258
www.eeworm.com/read/366702/2879884
c 20000329-1.c
int giop_tx_big_endian;
inline
void
giop_encode_ulong (unsigned long i, char *buf)
{
if (giop_tx_big_endian)
{
*(unsigned long *) buf = i;
}
else
{
*buf++ = i & 0xff;
www.eeworm.com/read/358128/3000548
pm name.pm
package Encode::MIME::Name;
use strict;
use warnings;
our $VERSION = do { my @r = ( q$Revision: 1.1 $ =~ /\d+/g ); sprintf "%d." . "%02d" x $#r, @r };
our %MIME_NAME_OF = (
'AdobeStandardEncoding
www.eeworm.com/read/358128/3000549
pm unicode.pm
package Encode::Unicode;
use strict;
use warnings;
no warnings 'redefine';
our $VERSION = do { my @r = ( q$Revision: 2.5 $ =~ /\d+/g ); sprintf "%d." . "%02d" x $#r, @r };
use XSLoader;
XSLoader::l
www.eeworm.com/read/358128/3000559
pm encoding.pm
package Encode::Encoding;
# Base class for classes which implement encodings
use strict;
use warnings;
our $VERSION = do { my @r = ( q$Revision: 2.5 $ =~ /\d+/g ); sprintf "%d." . "%02d" x $#r, @r };
www.eeworm.com/read/473407/6852099
tcl base64_lib.tcl
package provide base640 1.0
proc Base64Encode {data} {
# ASCIIEncode
set asc_list {}
set data_list [split $data ""]
foreach byte $data_list {
binary scan $byte c var
www.eeworm.com/read/270032/11051425
c test.c
/* TEST FILE vectorize NOT FOR BOOK */
#include
#include
#include "chainCode.h"
#include "pt2.h"
#define MAXPATHLEN 1024
extern chainCode* encode(pt2 *size, char *bitmap);