Searched refs:dst (Results 1 - 25 of 411) sorted by relevance

1234567891011>>

/haiku-fatelf/src/kits/network/libbind/nameser/
H A Dns_netint.c34 u_int dst; local
36 NS_GET16(dst, src);
37 return (dst);
42 u_long dst; local
44 NS_GET32(dst, src);
45 return (dst);
49 ns_put16(u_int src, u_char *dst) { argument
50 NS_PUT16(src, dst);
54 ns_put32(u_long src, u_char *dst) { argument
55 NS_PUT32(src, dst);
[all...]
/haiku-fatelf/src/libs/ncurses/ncurses/tinfo/
H A Dstrings.c70 _nc_str_init(string_desc * dst, char *src, size_t len) argument
72 if (dst != 0) {
73 dst->s_head = src;
74 dst->s_tail = src;
75 dst->s_size = len - 1;
76 dst->s_init = dst->s_size;
80 return dst;
87 _nc_str_null(string_desc * dst, size_t len) argument
89 return _nc_str_init(dst,
96 _nc_str_copy(string_desc * dst, string_desc * src) argument
[all...]
H A Ddoalloc.c64 char *dst; local
66 dst = typeMalloc(char, strlen(src) + 1);
67 if (dst != 0) {
68 (void) strcpy(dst, src);
71 dst = 0;
73 return dst;
H A Dgetenv_num.c44 char *dst = 0; local
49 || (value = strtol(src, &dst, 0)) < 0
50 || (dst == src)
51 || (*dst != '\0')
/haiku-fatelf/src/apps/serialconnect/libvterm/src/
H A Drect.h8 /* Expand dst to contain src as well */
9 static void rect_expand(VTermRect *dst, VTermRect *src) argument
11 if(dst->start_row > src->start_row) dst->start_row = src->start_row;
12 if(dst->start_col > src->start_col) dst->start_col = src->start_col;
13 if(dst->end_row < src->end_row) dst->end_row = src->end_row;
14 if(dst->end_col < src->end_col) dst
18 rect_clip(VTermRect *dst, VTermRect *bounds) argument
[all...]
/haiku-fatelf/src/add-ons/media/plugins/raw_decoder/
H A DAudioConversion.h30 void uint8_to_uint8(void *dst, const void *src, int32 count);
31 void uint8_to_int8(void *dst, const void *src, int32 count);
32 void uint8_to_int16(void *dst, const void *src, int32 count);
33 void uint8_to_int32(void *dst, const void *src, int32 count);
34 void uint8_to_float32(void *dst, const void *src, int32 count);
36 void int8_to_uint8(void *dst, const void *src, int32 count);
37 void int8_to_int8(void *dst, const void *src, int32 count);
38 void int8_to_int16(void *dst, const void *src, int32 count);
39 void int8_to_int32(void *dst, const void *src, int32 count);
40 void int8_to_float32(void *dst, cons
[all...]
/haiku-fatelf/src/apps/tv/
H A DConvertBitmap.h28 status_t ConvertBitmap(BBitmap *dst, const BBitmap *src);
H A DConvertBitmap.cpp32 status_t ConvertBitmap_YCbCr422_to_RGB32(BBitmap *dst, const BBitmap *src);
35 ConvertBitmap(BBitmap *dst, const BBitmap *src) argument
37 if (dst->Bounds() != src->Bounds())
40 if (dst->ColorSpace() == src->ColorSpace()
41 && dst->BytesPerRow() == src->BytesPerRow() ) {
42 memcpy(dst->Bits(), src->Bits(), src->BitsLength());
46 if (src->ColorSpace() == B_YCbCr422 && dst->ColorSpace() == B_RGB32)
47 return ConvertBitmap_YCbCr422_to_RGB32(dst, src);
54 ConvertBitmap_YCbCr422_to_RGB32(BBitmap *dst, const BBitmap *src) argument
/haiku-fatelf/headers/libs/agg/util/
H A Dagg_color_conv.h35 void color_conv(rendering_buffer* dst, argument
42 if(dst->width() < width) width = dst->width();
43 if(dst->height() < height) height = dst->height();
50 copy_row_functor(dst->row(y), src->row(y), width);
58 void color_conv_row(unsigned char* dst, argument
63 copy_row_functor(dst, src, width);
71 void operator () (unsigned char* dst, argument
75 memmove(dst, sr
[all...]
H A Dagg_color_conv_rgb8.h20 // agg::color_conv(dst, src, agg::color_conv_XXXX_to_YYYY());
45 void operator () (unsigned char* dst, argument
51 *dst++ = src[2];
52 *dst++ = src[1];
53 *dst++ = src[0];
72 void operator () (unsigned char* dst, argument
78 *dst++ = src[I1];
79 *dst++ = src[I2];
80 *dst++ = src[I3];
81 *dst
114 operator ()(unsigned char* dst, const unsigned char* src, unsigned width) const argument
147 operator ()(unsigned char* dst, const unsigned char* src, unsigned width) const argument
179 operator ()(unsigned char* dst, const unsigned char* src, unsigned width) const argument
206 operator ()(unsigned char* dst, const unsigned char* src, unsigned width) const argument
232 operator ()(unsigned char* dst, const unsigned char* src, unsigned width) const argument
259 operator ()(unsigned char* dst, const unsigned char* src, unsigned width) const argument
286 operator ()(unsigned char* dst, const unsigned char* src, unsigned width) const argument
316 operator ()(unsigned char* dst, const unsigned char* src, unsigned width) const argument
346 operator ()(unsigned char* dst, const unsigned char* src, unsigned width) const argument
376 operator ()(unsigned char* dst, const unsigned char* src, unsigned width) const argument
404 operator ()(unsigned char* dst, const unsigned char* src, unsigned width) const argument
424 operator ()(unsigned char* dst, const unsigned char* src, unsigned width) const argument
[all...]
/haiku-fatelf/src/tests/kits/net/sock/
H A Dcrlf.c16 crlf_add(char *dst, int dstsize, const char *src, int lenin) argument
28 *dst++ = '\r';
30 *dst++ = c;
37 crlf_strip(char *dst, int dstsize, const char *src, int lenin) argument
46 *dst++ = c;
/haiku-fatelf/src/bin/gdb/bfd/
H A Dnlmswap.h42 nlm_swap_fixed_header_in (abfd, realsrc, dst)
45 Nlm_Internal_Fixed_Header *dst; variable
48 memcpy (dst->signature, src->signature, NLM_SIGNATURE_SIZE);
49 memcpy (dst->moduleName, src->moduleName, NLM_MODULE_NAME_SIZE);
50 dst->version =
52 dst->codeImageOffset =
54 dst->codeImageSize =
56 dst->dataImageOffset =
58 dst->dataImageSize =
60 dst
107 Nlm_External_Fixed_Header *dst = (Nlm_External_Fixed_Header *) realdst; variable
[all...]
/haiku-fatelf/src/bin/network/tcpdump/missing/
H A Dinet_pton.c51 inet_pton(int af, const char *src, void *dst) argument
57 return inet_aton (src, dst);
/haiku-fatelf/src/bin/gdb/libiberty/
H A Dmempcpy.c42 mempcpy (dst, src, len)
43 PTR dst;
47 return (char *) memcpy (dst, src, len) + len;
H A Dstpcpy.c23 @deftypefn Supplemental char* stpcpy (char *@var{dst}, const char *@var{src})
25 Copies the string @var{src} into @var{dst}. Returns a pointer to
26 @var{dst} + strlen(@var{src}).
43 stpcpy (dst, src)
44 char *dst;
48 return (char *) memcpy (dst, src, len + 1) + len;
H A Dstpncpy.c23 @deftypefn Supplemental char* stpncpy (char *@var{dst}, const char *@var{src}, size_t @var{len})
25 Copies the string @var{src} into @var{dst}, copying exactly @var{len}
27 then return @var{dst} + @var{len}, otherwise returns @var{dst} +
45 stpncpy (dst, src, len)
46 char *dst;
53 return strncpy (dst, src, len) + n;
/haiku-fatelf/src/system/libroot/posix/string/
H A Dstrlcpy.c11 strlcpy(char *dst, char const *src, size_t s) argument
19 dst[i] = src[i];
22 dst[i] = 0;
/haiku-fatelf/src/kits/network/libbind/inet/
H A Dinet_neta.c43 * inet_neta(src, dst, size)
46 * pointer to dst, or NULL if an error occurred (check errno).
53 inet_neta(src, dst, size)
55 char *dst;
58 char *odst = dst;
68 tp = dst;
69 dst += SPRINTF((dst, "%u", b));
71 *dst++ = '.';
72 *dst
[all...]
H A Dinet_net_ntop.c43 char *dst, size_t size));
45 char *dst, size_t size));
49 * inet_net_ntop(af, src, bits, dst, size)
53 * pointer to dst, or NULL if an error occurred (check errno).
58 inet_net_ntop(af, src, bits, dst, size)
62 char *dst;
67 return (inet_net_ntop_ipv4(src, bits, dst, size));
69 return (inet_net_ntop_ipv6(src, bits, dst, size));
78 * inet_net_ntop_ipv4(src, bits, dst, size)
82 * pointer to dst, o
169 inet_net_ntop_ipv6(const u_char *src, int bits, char *dst, size_t size) argument
[all...]
/haiku-fatelf/src/tests/system/libroot/posix/bonnie++-1.03d/
H A Dinstall.sh62 dst=$dstpath
67 dst="$dst/$dstfile"
70 # Add a possible extension to src and dst
73 dst="$dst$opt_e"
77 if [ ".$src" = ".$dst" ]; then
87 dsttmp=`echo $dst |\
93 echo "$src -> $dst" 1>&2
144 if [ -r $dst ]; the
[all...]
/haiku-fatelf/src/libs/pdflib/libs/pdcore/
H A Dpc_sbuf.c53 pdc_sb_copy(pdc_sbuf *dst, const pdc_sbuf *src) argument
58 int d_cap = dst->limit - dst->buf;
67 pdc_free(dst->pdc, dst->buf);
68 dst->buf = (char *)pdc_malloc(dst->pdc, (size_t) d_cap, fn);
69 dst->limit = dst->buf + d_cap;
72 memcpy(dst
93 pdc_sb_write(pdc_sbuf *dst, const char *src, int len) argument
[all...]
/haiku-fatelf/src/bin/less/
H A Dinstall.sh38 dst=""
69 dst=$1
82 if [ x"$dst" = x ]
92 if [ -d $dst ]
94 dst="$dst"/`basename $src`
99 dstdir=`dirname $dst`
115 $doit $rmcmd $dst
116 $doit $mvcmd $dsttmp $dst
/haiku-fatelf/src/bin/coreutils/lib/
H A Darpa_inet.in.h71 char *restrict dst, socklen_t cnt)
76 # define inet_ntop(af,src,dst,cnt) \
79 inet_ntop (af, src, dst, cnt))
84 extern int inet_pton (int af, const char *restrict src, void *restrict dst)
89 # define inet_pton(af,src,dst) \
92 inet_pton (af, src, dst))
/haiku-fatelf/src/add-ons/translators/webp/libwebp/dec/
H A Ddsp.c61 dst[x + y * BPS] = clip_8b(dst[x + y * BPS] + ((v) >> 3))
67 static void Transform(const int16_t* in, uint8_t* dst) { argument
86 // an input in [-2048, 2047] interval. We then need to add a dst value
102 dst += BPS;
107 static void TransformUV(const int16_t* in, uint8_t* dst) { argument
108 Transform(in + 0 * 16, dst);
109 Transform(in + 1 * 16, dst + 4);
110 Transform(in + 2 * 16, dst + 4 * BPS);
111 Transform(in + 3 * 16, dst
114 TransformDC(const int16_t *in, uint8_t* dst) argument
124 TransformDCUV(const int16_t* in, uint8_t* dst) argument
176 TrueMotion(uint8_t *dst, int size) argument
189 TM4(uint8_t *dst) argument
190 TM8uv(uint8_t *dst) argument
191 TM16(uint8_t *dst) argument
196 VE16(uint8_t *dst) argument
203 HE16(uint8_t *dst) argument
211 Put16(int v, uint8_t* dst) argument
218 DC16(uint8_t *dst) argument
227 DC16NoTop(uint8_t *dst) argument
236 DC16NoLeft(uint8_t *dst) argument
245 DC16NoTopLeft(uint8_t *dst) argument
255 VE4(uint8_t *dst) argument
269 HE4(uint8_t *dst) argument
281 DC4(uint8_t *dst) argument
289 RD4(uint8_t *dst) argument
308 LD4(uint8_t *dst) argument
326 VR4(uint8_t *dst) argument
348 VL4(uint8_t *dst) argument
370 HU4(uint8_t *dst) argument
385 HD4(uint8_t *dst) argument
414 VE8uv(uint8_t *dst) argument
421 HE8uv(uint8_t *dst) argument
430 Put8x8uv(uint64_t v, uint8_t* dst) argument
437 DC8uv(uint8_t *dst) argument
446 DC8uvNoLeft(uint8_t *dst) argument
455 DC8uvNoTop(uint8_t *dst) argument
464 DC8uvNoTopLeft(uint8_t *dst) argument
[all...]
/haiku-fatelf/src/bin/bash/support/
H A Dinstall.sh51 dst=""
97 dst=$1
113 dst=$src
116 if [ -d $dst ]; then
135 if [ x"$dst" = x ]
146 if [ -d $dst ]
148 dst="$dst"/`basename $src`
155 dstdir=`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
191 $doit $instcmd $dst
[all...]

Completed in 221 milliseconds

1234567891011>>