コード例 #1
0
ファイル: show_bytes.c プロジェクト: b3h3moth/L-C
// Show 'long' data type
void show_long_long(long long data) {
    // printf("[%ld:   long] - ", data);
    show_bytes((byte_pointer) &data, sizeof(long long));
}
コード例 #2
0
static QString show_bytes1(const QByteArray& arr, int base, int bytes_per_line, QString delimer)
{
    return show_bytes(arr, base, bytes_per_line, delimer, QString("\r\n"));
}
コード例 #3
0
ファイル: show_bytes.c プロジェクト: b3h3moth/L-C
// Show 'double' data type
void show_double(double data) {
    // printf("[%g: double] - ", data);
    show_bytes((byte_pointer) &data, sizeof(double));
}
コード例 #4
0
ファイル: prob2-57.c プロジェクト: jeffkibuule/selfstudy
void show_pointer(void *x) {
	show_bytes((byte_pointer) &x, sizeof(void *));
}
コード例 #5
0
ファイル: prob2-57.c プロジェクト: jeffkibuule/selfstudy
void show_long(long x) {
	show_bytes((byte_pointer) &x, sizeof(long));
}
コード例 #6
0
ファイル: float_bytes.c プロジェクト: ingliu/c_code
void show_float(float start)
{
        printf("show_float...\n");
	show_bytes((byte_pointer) &start, sizeof(float));
}
コード例 #7
0
ファイル: prob2-57.c プロジェクト: jeffkibuule/selfstudy
void show_int(int x) {
	show_bytes((byte_pointer) &x, sizeof(int));
}
コード例 #8
0
ファイル: show-bytes.c プロジェクト: 09zwcbupt/csapp
void show_pointer(void *x) {
    show_bytes((byte_pointer) &x, sizeof(void *)); //line:data:show_bytes_amp3
}
コード例 #9
0
ファイル: show-bytes.c プロジェクト: 09zwcbupt/csapp
void string_ueg() {
/* $begin show-ustring */
const char *s = "ABCDEF";
show_bytes((byte_pointer) s, strlen(s)); 
/* $end show-ustring */
}
コード例 #10
0
ファイル: show-bytes.c プロジェクト: 09zwcbupt/csapp
void show_int(int x) {
    show_bytes((byte_pointer) &x, sizeof(int)); //line:data:show_bytes_amp1
}
コード例 #11
0
ファイル: show-bytes.c プロジェクト: 09zwcbupt/csapp
void show_float(float x) {
    show_bytes((byte_pointer) &x, sizeof(float)); //line:data:show_bytes_amp2
}
コード例 #12
0
ファイル: 2.6.c プロジェクト: shanhuhai/the-code-snippet
int show_float(float x){
    show_bytes((byte_pointer) &x, sizeof(float));
    return 0;
}
コード例 #13
0
ファイル: 2.6.c プロジェクト: shanhuhai/the-code-snippet
int show_int(int x){
    show_bytes((byte_pointer) &x, sizeof(int));
    return 0;
}
コード例 #14
0
ファイル: show_bytes.c プロジェクト: zhaodj/code
int main(){
    test_show_bytes(0x12345);
    const char *s="abcdef";
    show_bytes((byte_pointer)s,strlen(s));
}
コード例 #15
0
ファイル: float_bytes.c プロジェクト: ingliu/c_code
void show_pointer(void *start)
{
        printf("show_pointer...\n");
	show_bytes((byte_pointer) &start, sizeof(void *));
}
コード例 #16
0
ファイル: show-bytes.c プロジェクト: 09zwcbupt/csapp
void string_leg() {
/* $begin show-lstring */
const char *s = "abcdef";
show_bytes((byte_pointer) s, strlen(s)); 
/* $end show-lstring */
}
コード例 #17
0
ファイル: float_bytes.c プロジェクト: ingliu/c_code
void show_int(int start)
{
        printf("show_int... %d\n", start);
	show_bytes((byte_pointer) &start, sizeof(int));
}
コード例 #18
0
ファイル: show_bytes.c プロジェクト: b3h3moth/L-C
// Show 'int' data type
void show_int(int data) {
    // printf("[%d:    int] - ", data);
    show_bytes((byte_pointer) &data, sizeof(int));
}
コード例 #19
0
ファイル: byte_code.c プロジェクト: sahaia1/kandr
void
show_pointer(void *pointer) {
    show_bytes((byte_pointer) &pointer, sizeof(void *));
}
コード例 #20
0
ファイル: show_bytes.c プロジェクト: b3h3moth/L-C
// Show 'float' data type
void show_float(float data) {
    // printf("[%.f:  float] - ", data);
    show_bytes((byte_pointer) &data, sizeof(float));
}
コード例 #21
0
ファイル: prob2-57.c プロジェクト: jeffkibuule/selfstudy
void show_float(float x) {
	show_bytes((byte_pointer) &x, sizeof(float));
}
コード例 #22
0
ファイル: show_bytes.c プロジェクト: b3h3moth/L-C
// Show 'void' data type
void show_pointer(void *data) {
    // printf("[%d: void *] - ", (int)data);
    show_bytes((byte_pointer) &data, sizeof(void *));
}
コード例 #23
0
ファイル: prob2-57.c プロジェクト: jeffkibuule/selfstudy
/* new functions */
void show_short(short x) {
	show_bytes((byte_pointer) &x, sizeof(short));
}
コード例 #24
0
ファイル: show_bytes.c プロジェクト: b3h3moth/L-C
// Show 'short' data type
void show_short(short data) {
    // printf("[%d:  short] - ", data);
    show_bytes((byte_pointer) &data, sizeof(short));
}
コード例 #25
0
ファイル: prob2-57.c プロジェクト: jeffkibuule/selfstudy
void show_double(double x) {
	show_bytes((byte_pointer) &x, sizeof(double));
}
コード例 #26
0
ファイル: test.c プロジェクト: kpgoing/CSAPP
void show_us(unsigned x){
	show_bytes((byte_pointer) &x, sizeof(unsigned));
}