Home
last modified time | relevance | path

Searched refs:swap_bytes (Results 1 – 15 of 15) sorted by relevance

/netbsd-src/external/gpl3/binutils/dist/libiberty/
H A Dmd5.c106 md5_uint32 swap_bytes; in md5_finish_ctx() local
120 swap_bytes = SWAP (ctx->total[0] << 3); in md5_finish_ctx()
121 memcpy (&ctx->buffer[bytes + pad], &swap_bytes, sizeof (swap_bytes)); in md5_finish_ctx()
122 swap_bytes = SWAP ((ctx->total[1] << 3) | (ctx->total[0] >> 29)); in md5_finish_ctx()
123 memcpy (&ctx->buffer[bytes + pad + 4], &swap_bytes, sizeof (swap_bytes)); in md5_finish_ctx()
H A DChangeLog2751 * md5.c (md5_finish_ctx): Declare swap_bytes. Assign SWAP() output
2752 to swap_bytes, and then call memcpy to move it to ctx->buffer.
/netbsd-src/external/gpl3/gcc.old/dist/libiberty/
H A Dmd5.c106 md5_uint32 swap_bytes; in md5_finish_ctx() local
120 swap_bytes = SWAP (ctx->total[0] << 3); in md5_finish_ctx()
121 memcpy (&ctx->buffer[bytes + pad], &swap_bytes, sizeof (swap_bytes)); in md5_finish_ctx()
122 swap_bytes = SWAP ((ctx->total[1] << 3) | (ctx->total[0] >> 29)); in md5_finish_ctx()
123 memcpy (&ctx->buffer[bytes + pad + 4], &swap_bytes, sizeof (swap_bytes)); in md5_finish_ctx()
/netbsd-src/external/gpl3/gcc/dist/libiberty/
H A Dmd5.c106 md5_uint32 swap_bytes; in md5_finish_ctx() local
120 swap_bytes = SWAP (ctx->total[0] << 3); in md5_finish_ctx()
121 memcpy (&ctx->buffer[bytes + pad], &swap_bytes, sizeof (swap_bytes)); in md5_finish_ctx()
122 swap_bytes = SWAP ((ctx->total[1] << 3) | (ctx->total[0] >> 29)); in md5_finish_ctx()
123 memcpy (&ctx->buffer[bytes + pad + 4], &swap_bytes, sizeof (swap_bytes)); in md5_finish_ctx()
H A DChangeLog2260 * md5.c (md5_finish_ctx): Declare swap_bytes. Assign SWAP() output
2261 to swap_bytes, and then call memcpy to move it to ctx->buffer.
/netbsd-src/external/gpl3/binutils.old/dist/libiberty/
H A Dmd5.c106 md5_uint32 swap_bytes; in md5_finish_ctx() local
120 swap_bytes = SWAP (ctx->total[0] << 3); in md5_finish_ctx()
121 memcpy (&ctx->buffer[bytes + pad], &swap_bytes, sizeof (swap_bytes)); in md5_finish_ctx()
122 swap_bytes = SWAP ((ctx->total[1] << 3) | (ctx->total[0] >> 29)); in md5_finish_ctx()
123 memcpy (&ctx->buffer[bytes + pad + 4], &swap_bytes, sizeof (swap_bytes)); in md5_finish_ctx()
H A DChangeLog2341 * md5.c (md5_finish_ctx): Declare swap_bytes. Assign SWAP() output
2342 to swap_bytes, and then call memcpy to move it to ctx->buffer.
/netbsd-src/usr.bin/audio/common/
H A Dauconv.h42 static inline void swap_bytes(u_char *, int);
117 swap_bytes(u_char *p, int cc) in swap_bytes() function
H A Dsun.c227 conv_func = swap_bytes; in sun_write_get_conv_func()
H A Dwav.c532 conv_func = swap_bytes; in wav_write_get_conv_func()
/netbsd-src/external/mit/xorg/lib/libxcb/files/
H A Dglx.h1260 uint8_t swap_bytes; member
2103 uint8_t swap_bytes; member
2476 uint8_t swap_bytes; member
2585 uint8_t swap_bytes; member
2695 uint8_t swap_bytes; member
2733 uint8_t swap_bytes; member
2843 uint8_t swap_bytes; member
5319 uint8_t swap_bytes,
5342 uint8_t swap_bytes,
6781 uint8_t swap_bytes);
[all …]
H A Dglx.c4301 uint8_t swap_bytes, in xcb_glx_read_pixels() argument
4322 xcb_out.swap_bytes = swap_bytes; in xcb_glx_read_pixels()
4343 uint8_t swap_bytes, in xcb_glx_read_pixels_unchecked() argument
4364 xcb_out.swap_bytes = swap_bytes; in xcb_glx_read_pixels_unchecked()
7126 uint8_t swap_bytes) in xcb_glx_get_tex_image() argument
7144 xcb_out.swap_bytes = swap_bytes; in xcb_glx_get_tex_image()
7162 uint8_t swap_bytes) in xcb_glx_get_tex_image_unchecked() argument
7180 xcb_out.swap_bytes = swap_bytes; in xcb_glx_get_tex_image_unchecked()
8361 uint8_t swap_bytes) in xcb_glx_get_color_table() argument
8378 xcb_out.swap_bytes = swap_bytes; in xcb_glx_get_color_table()
[all …]
/netbsd-src/sys/dev/ic/
H A Dbt8xx.h392 unsigned swap_bytes :1; /* Bytes swapped within shorts */ member
/netbsd-src/sys/dev/pci/bktr/
H A Dbktr_core.c3768 int swap_bytes, swap_shorts; local
3771 swap_bytes = pf->swap_bytes;
3774 swap_bytes = !pf->swap_bytes;
3778 case 2 : swapf = (swap_bytes ? 0 : BSWAP);
3785 swapf = swap_bytes ? 0 : BSWAP;
3820 (pf1->swap_bytes == pf2->swap_bytes) &&
/netbsd-src/usr.bin/audio/record/
H A Drecord.c307 if (conv_func == swap_bytes) in main()