Lines Matching defs:src

554 // wuffs_base__transform__output is the result of transforming from a src slice
3161 // 12 src bytes encode 3 dst bytes.
3167 // When src is the empty string, multiple conversion algorithms are applicable
5142 wuffs_base__slice_u8 src) const;
5172 wuffs_base__slice_u8 src);
5190 wuffs_base__slice_u8 src) const {
5192 this, dst, dst_palette, src);
5546 // U+006A. There are 2 src bytes for every dst byte.
5548 // It assumes that the src bytes are two hexadecimal digits (0-9, A-F, a-f),
5557 wuffs_base__slice_u8 src,
5562 // "jk", where e.g. 'j' is U+006A. There are 4 src bytes for every dst byte.
5564 // It assumes that the src bytes are two ignored bytes and then two hexadecimal
5573 wuffs_base__slice_u8 src,
5578 // U+006A. There are 2 dst bytes for every src byte.
5585 wuffs_base__slice_u8 src,
5590 // is U+006A. There are 4 dst bytes for every src byte.
5597 wuffs_base__slice_u8 src,
5625 // wuffs_base__base_64__decode transforms base-64 encoded bytes from src to
5628 // It will not permit line breaks or other whitespace in src. Filtering those
5636 wuffs_base__slice_u8 src,
5640 // wuffs_base__base_64__encode transforms arbitrary bytes from src to base-64
5648 wuffs_base__slice_u8 src,
11172 // wuffs_base__slice_u8__copy_from_slice calls memmove(dst.ptr, src.ptr, len)
11173 // where len is the minimum of dst.len and src.len.
11179 wuffs_base__slice_u8 src) {
11180 size_t len = dst.len < src.len ? dst.len : src.len;
11182 memmove(dst.ptr, src.ptr, len);
11382 wuffs_base__slice_u8 src) {
11384 size_t n = src.len;
11389 memmove(iop_w, src.ptr, n);
11578 wuffs_base__slice_u8 src) {
11580 size_t n = src.len;
11588 memmove(iop_w, src.ptr, n);
15460 wuffs_base__slice_u8 src,
15464 size_t src_len2 = src.len / 2;
15473 } else if (src.len & 1) {
15481 uint8_t* s = src.ptr;
15498 wuffs_base__slice_u8 src,
15502 size_t src_len4 = src.len / 4;
15511 } else if (src.len & 1) {
15519 uint8_t* s = src.ptr;
15536 wuffs_base__slice_u8 src,
15542 if (dst_len2 < src.len) {
15546 len = src.len;
15555 uint8_t* s = src.ptr;
15573 wuffs_base__slice_u8 src,
15579 if (dst_len4 < src.len) {
15583 len = src.len;
15592 uint8_t* s = src.ptr;
15730 wuffs_base__slice_u8 src,
15739 const uint8_t* s_ptr = src.ptr;
15740 size_t s_len = src.len;
15842 o.num_src = (size_t)(s_ptr - src.ptr);
15848 wuffs_base__slice_u8 src,
15857 const uint8_t* s_ptr = src.ptr;
15858 size_t s_len = src.len;
15925 o.num_src = (size_t)(s_ptr - src.ptr);
16693 // Calculate the inverse of the src-alpha: how much of the dst to keep.
16696 // Composite src (nonpremul) over dst (premul).
16746 // Calculate the inverse of the src-alpha: how much of the dst to keep.
16749 // Composite src (nonpremul) over dst (premul).
16784 // Calculate the inverse of the src-alpha: how much of the dst to keep.
16787 // Composite src (premul) over dst (premul).
16828 // Calculate the inverse of the src-alpha: how much of the dst to keep.
16831 // Composite src (premul) over dst (premul).
16861 // Calculate the inverse of the src-alpha: how much of the dst to keep.
16864 // Composite src (nonpremul) over dst (premul).
16893 // Calculate the inverse of the src-alpha: how much of the dst to keep.
16896 // Composite src (nonpremul) over dst (premul).
16919 // Calculate the inverse of the src-alpha: how much of the dst to keep.
16922 // Composite src (premul) over dst (premul).
17312 // Calculate the inverse of the src-alpha: how much of the dst to keep.
17315 // Composite src (nonpremul) over dst (premul).
17368 // Calculate the inverse of the src-alpha: how much of the dst to keep.
17371 // Composite src (nonpremul) over dst (premul).
17453 // Calculate the inverse of the src-alpha: how much of the dst to keep.
17456 // Composite src (premul) over dst (premul).
17573 // Calculate the inverse of the src-alpha: how much of the dst to keep.
17576 // Composite src (nonpremul) over dst (premul).
17660 // Calculate the inverse of the src-alpha: how much of the dst to keep.
17663 // Composite src (premul) over dst (premul).
17985 // Calculate the inverse of the src-alpha: how much of the dst to keep.
17988 // Composite src (nonpremul) over dst (premul).
18033 // Calculate the inverse of the src-alpha: how much of the dst to keep.
18036 // Composite src (nonpremul) over dst (premul).
18108 // Calculate the inverse of the src-alpha: how much of the dst to keep.
18111 // Composite src (premul) over dst (premul).
18186 // Calculate the inverse of the src-alpha: how much of the dst to keep.
18189 // Composite src (nonpremul) over dst (premul).
18261 // Calculate the inverse of the src-alpha: how much of the dst to keep.
18264 // Composite src (premul) over dst (premul).
21441 wuffs_base__slice_u8 src) {
21444 dst_palette.len, src.ptr, src.len);