Home
last modified time | relevance | path

Searched refs:in (Results 1 - 25 of 5142) sorted by relevance

12345678910>>...206

/third_party/backends/backend/
H A Dkodak-cmd.h7 * Please see to opening comments in kodak.c
68 /* in */
106 /* in */
107 #define get_I_periph_qual(in) getbitfield(in, 5, 7)
110 #define get_I_periph_devtype(in) getbitfield(in, 0, 0x1f)
115 #define get_I_rmb(in) getbitfield(in + 1, 7, 1)
116 #define get_I_devtype_qual(in) getbitfiel
[all...]
H A Dfujitsu-scsi.h7 * Please see to opening comments in fujitsu.c
106 /* when RS is 0x05/0x26 bad bytes listed in sksb */
110 /* in ascq */
111 #define get_RS_adf_open(in) getbitfield(in+0x0d, 1, 7)
112 #define get_RS_send_sw(in) getbitfield(in+0x0d, 1, 5)
113 #define get_RS_scan_sw(in) getbitfield(in+0x0d, 1, 4)
114 #define get_RS_duplex_sw(in) getbitfiel
[all...]
H A Dumax-scsidef.h13 This program is distributed in the hope that it will be useful, but
22 additional uses of the libraries contained in this release of SANE.
27 License. Your use of that executable is in no way restricted on
34 If you submit changes to SANE to the maintainers to be included in
96 /* Not all of these are defined in scsi.h, so we'll make sure
144 #define get_inquiry_periph_qual(in) getbitfield(in, 0x07, 5)
147 #define get_inquiry_periph_devtype(in) getbitfield(in, 0x1f, 0)
151 #define get_inquiry_rmb(in) getbitfiel
[all...]
H A Dpie-scsidef.h16 This program is distributed in the hope that it will be useful, but
25 additional uses of the libraries contained in this release of SANE.
30 License. Your use of that executable is in no way restricted on
37 If you submit changes to SANE to the maintainers to be included in
124 /* Not all of these are defined in scsi.h, so we'll make sure
167 #define get_inquiry_periph_qual(in) getbitfield(in, 0x07, 5)
170 #define get_inquiry_periph_devtype(in) getbitfield(in, 0x1f, 0)
174 #define get_inquiry_rmb(in) getbitfiel
[all...]
H A Dcanon_dr-cmd.h6 * Please see opening comments in canon_dr.c
109 /* when RS is 0x05/0x26 bad bytes listed in sksb */
126 #define get_IN_periph_qual(in) getbitfield(in, 0x07, 5)
129 #define get_IN_periph_devtype(in) getbitfield(in, 0x1f, 0)
132 #define get_IN_response_format(in) getbitfield(in + 0x03, 0x07, 0)
134 #define get_IN_vendor(in, buf) snprintf(buf, 0x08 + 1, "%.*s", \
135 0x08, (char*)in
[all...]
/third_party/zlib/examples/
H A Dgzjoin.c16 in a product, an acknowledgment in the product documentation would be
39 decompress all of the input data in order to find the bits in the compressed
48 compressed data in order to connect the streams. The output gzip file
65 /* exit with an error (return a value to allow use in an expression) */
75 #define CHUNK 32768 /* must be a power of two and fit in unsigned */
87 local void bclose(bin *in) in bclose() argument
89 if (in != NULL) { in bclose()
90 if (in in bclose()
102 bin *in; bopen() local
121 bload(bin *in) bload() argument
145 bget4(bin *in) bget4() argument
157 bskip(bin *in, unsigned skip) bskip() argument
204 gzhead(bin *in) gzhead() argument
254 zpull(z_streamp strm, bin *in) zpull() argument
285 bin *in; /* buffered input file */ gzcopy() local
[all...]
/third_party/ffmpeg/libavcodec/
H A Dxvididct.c13 * FFmpeg is distributed in the hope that it will be useful,
57 static int idct_row(short *in, const int *const tab, int rnd) in idct_row() argument
67 const int right = in[5] | in[6] | in[7]; in idct_row()
68 const int left = in[1] | in[2] | in[3]; in idct_row()
69 if (!(right | in[4])) { in idct_row()
70 const int k = c4 * in[ in idct_row()
158 idct_col_8(short *const in) idct_col_8() argument
210 idct_col_4(short *const in) idct_col_4() argument
254 idct_col_3(short *const in) idct_col_3() argument
291 ff_xvid_idct(int16_t *const in) ff_xvid_idct() argument
[all...]
/third_party/ffmpeg/libavfilter/
H A Dvf_normalize.c11 * FFmpeg is distributed in the hope that it will be useful,
29 * Naively maximising the dynamic range of each frame of video in isolation
30 * may cause flickering (rapid changes in brightness of static objects in the
40 * defined in HSV/HSL color spaces) while independent normalization does not.
43 * can also combine independent and linked normalization in any ratio.
57 * smoothing The amount of temporal smoothing, expressed in frames (>=0).
70 * a rather expensive no-op. Values in between can give a gentle
91 uint16_t in; // Original input byte value for this frame. member
106 uint8_t co[4]; // Offsets to R,G,B,A bytes respectively in eac
140 find_min_max(NormalizeContext *s, AVFrame *in, NormalizeLocal min[3], NormalizeLocal max[3]) find_min_max() argument
156 process(NormalizeContext *s, AVFrame *in, AVFrame *out) process() argument
173 find_min_max_planar(NormalizeContext *s, AVFrame *in, NormalizeLocal min[3], NormalizeLocal max[3]) find_min_max_planar() argument
193 process_planar(NormalizeContext *s, AVFrame *in, AVFrame *out) process_planar() argument
214 find_min_max_16(NormalizeContext *s, AVFrame *in, NormalizeLocal min[3], NormalizeLocal max[3]) find_min_max_16() argument
230 process_16(NormalizeContext *s, AVFrame *in, AVFrame *out) process_16() argument
247 find_min_max_planar_16(NormalizeContext *s, AVFrame *in, NormalizeLocal min[3], NormalizeLocal max[3]) find_min_max_planar_16() argument
267 process_planar_16(NormalizeContext *s, AVFrame *in, AVFrame *out) process_planar_16() argument
291 normalize(NormalizeContext *s, AVFrame *in, AVFrame *out) normalize() argument
469 filter_frame(AVFilterLink *inlink, AVFrame *in) filter_frame() argument
[all...]
H A Dframesync.c11 * FFmpeg is distributed in the hope that it will be useful,
90 fs->in = av_calloc(nb_in, sizeof(*fs->in)); in ff_framesync_init()
91 if (!fs->in) in ff_framesync_init()
108 if (fs->in[i].state != STATE_EOF) in framesync_sync_level_update()
109 level = FFMAX(level, fs->in[i].sync); in framesync_sync_level_update()
133 fs->in[i].after = EXT_NULL; in ff_framesync_configure()
134 fs->in[i].sync = 0; in ff_framesync_configure()
139 fs->in[i].after = EXT_STOP; in ff_framesync_configure()
144 if (fs->in[ in ff_framesync_configure()
216 framesync_pts_extrapolate(FFFrameSync *fs, unsigned in, int64_t pts) framesync_pts_extrapolate() argument
223 framesync_inject_frame(FFFrameSync *fs, unsigned in, AVFrame *frame) framesync_inject_frame() argument
236 framesync_inject_status(FFFrameSync *fs, unsigned in, int status, int64_t pts) framesync_inject_status() argument
248 ff_framesync_get_frame(FFFrameSync *fs, unsigned in, AVFrame **rframe, unsigned get) ff_framesync_get_frame() argument
[all...]
/third_party/nghttp2/src/
H A Dbase64_test.cc8 * "Software"), to deal in the Software without restriction, including
15 * included in all copies or substantial portions of the Software.
40 std::string in = "\xff"; in test_base64_encode() local
41 auto out = base64::encode(std::begin(in), std::end(in)); in test_base64_encode()
45 std::string in = "\xff\xfe"; in test_base64_encode() local
46 auto out = base64::encode(std::begin(in), std::end(in)); in test_base64_encode()
50 std::string in = "\xff\xfe\xfd"; in test_base64_encode() local
51 auto out = base64::encode(std::begin(in), st in test_base64_encode()
55 std::string in = "\\xff\\xfe\\xfd\\xfc"; test_base64_encode() local
64 std::string in = "/w=="; test_base64_decode() local
70 std::string in = "//4="; test_base64_decode() local
77 std::string in = "//79"; test_base64_decode() local
84 std::string in = "//79/A=="; test_base64_decode() local
92 std::string in = "//79="; test_base64_decode() local
100 std::string in = "bmdodHRw\\n"; test_base64_decode() local
107 std::string in = "//79/A=A"; test_base64_decode() local
114 std::string in = "//79/A======"; test_base64_decode() local
[all...]
/third_party/skia/third_party/externals/dawn/src/dawn_node/binding/
H A DConverter.h4 // you may not use this file except in compliance with the License.
9 // Unless required by applicable law or agreed to in writing, software
74 [[nodiscard]] inline bool operator()(OUT&& out, IN&& in) { in operator ()() argument
75 return Convert(std::forward<OUT>(out), std::forward<IN>(in)); in operator ()()
80 // out_count is assigned the number of elements in 'in'.
86 const std::vector<IN>& in) { in operator ()()
87 return Convert(out_els, out_count, in); in operator ()()
103 [[nodiscard]] bool Convert(wgpu::Extent3D& out, const interop::GPUExtent3D& in);
105 [[nodiscard]] bool Convert(wgpu::Origin3D& out, const interop::GPUOrigin3DDict& in);
84 operator ()(OUT*& out_els, uint32_t& out_count, const std::vector<IN>& in) operator ()() argument
258 Convert(const char*& out, const std::string& in) Convert() argument
265 Convert(T& out, const T& in) Convert() argument
274 Convert(OUT& out, const IN& in) Convert() argument
287 Convert(OUT& out, const std::variant<IN_TYPES...>& in) Convert() argument
288 return std::visit([&](auto&& i) { return Convert(out, i); }, in); Convert() member in wgpu::binding::Converter
294 Convert(OUT& out, const std::optional<IN>& in) Convert() argument
307 Convert(OUT*& out, const std::optional<IN>& in) Convert() argument
322 Convert(OUT& out, const interop::Interface<IN>& in) Convert() argument
334 Convert(OUT*& out_els, uint32_t& out_count, const std::vector<IN>& in) Convert() argument
352 Convert(OUT*& out_els, uint32_t& out_count, const std::unordered_map<IN_KEY, IN_VALUE>& in) Convert() argument
373 Convert(OUT*& out_els, uint32_t& out_count, const std::optional<IN>& in) Convert() argument
[all...]
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/simd/
H A Dmatrix.h156 GLM_FUNC_QUALIFIER void glm_mat4_transpose(glm_vec4 const in[4], glm_vec4 out[4]) in glm_mat4_transpose() argument
158 __m128 tmp0 = _mm_shuffle_ps(in[0], in[1], 0x44); in glm_mat4_transpose()
159 __m128 tmp2 = _mm_shuffle_ps(in[0], in[1], 0xEE); in glm_mat4_transpose()
160 __m128 tmp1 = _mm_shuffle_ps(in[2], in[3], 0x44); in glm_mat4_transpose()
161 __m128 tmp3 = _mm_shuffle_ps(in[2], in[3], 0xEE); in glm_mat4_transpose()
169 GLM_FUNC_QUALIFIER glm_vec4 glm_mat4_determinant_highp(glm_vec4 const in[ argument
509 glm_mat4_inverse(glm_vec4 const in[4], glm_vec4 out[4]) glm_mat4_inverse() argument
730 glm_mat4_inverse_lowp(glm_vec4 const in[4], glm_vec4 out[4]) glm_mat4_inverse_lowp() argument
[all...]
/third_party/gn/src/base/
H A Dmd5.cc3 // found in the LICENSE file.
5 // The original file was copied from sqlite, and was in the public domain.
10 * written by Colin Plumb in 1993, no copyright is claimed.
11 * This code is in the public domain; do with it what you wish.
34 uint8_t in[64]; member
59 /* This is the central step in the MD5 algorithm. */
68 void MD5Transform(uint32_t buf[4], const uint32_t in[16]) { in MD5Transform() argument
76 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7); in MD5Transform()
77 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12); in MD5Transform()
78 MD5STEP(F1, c, d, a, b, in[ in MD5Transform()
[all...]
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkMd5Sum.cpp9 * you may not use this file except in compliance with the License.
14 * Unless required by applicable law or agreed to in writing, software
29 * written by Colin Plumb in 1993, no copyright is claimed.
30 * This code is in the public domain; do with it what you wish.
52 deUint8 in[64]; member
76 /* This is the central step in the MD5 algorithm. */
83 void MD5Transform(deUint32 buf[4], const deUint32 in[16]) in MD5Transform() argument
90 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7); in MD5Transform()
91 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12); in MD5Transform()
92 MD5STEP(F1, c, d, a, b, in[ in MD5Transform()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
H A Dmd5-internal.c17 static void MD5Transform(u32 buf[4], u32 const in[16]);
25 * @num_elem: Number of elements in the data vector
51 * written by Colin Plumb in 1993, no copyright is claimed.
52 * This code is in the public domain; do with it what you wish.
113 t = (t >> 3) & 0x3f; /* Bytes already in shsInfo->data */ in MD5Update()
118 unsigned char *p = (unsigned char *) ctx->in + t; in MD5Update()
126 byteReverse(ctx->in, 16); in MD5Update()
127 MD5Transform(ctx->buf, (u32 *) ctx->in); in MD5Update()
131 /* Process data in 64-byte chunks */ in MD5Update()
134 os_memcpy(ctx->in, bu in MD5Update()
208 MD5Transform(u32 buf[4], u32 const in[16]) MD5Transform() argument
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
H A Dmd5-internal.c17 static void MD5Transform(u32 buf[4], u32 const in[16]);
25 * @num_elem: Number of elements in the data vector
51 * written by Colin Plumb in 1993, no copyright is claimed.
52 * This code is in the public domain; do with it what you wish.
113 t = (t >> 3) & 0x3f; /* Bytes already in shsInfo->data */ in MD5Update()
118 unsigned char *p = (unsigned char *) ctx->in + t; in MD5Update()
126 byteReverse(ctx->in, 16); in MD5Update()
127 MD5Transform(ctx->buf, (u32 *) ctx->in); in MD5Update()
131 /* Process data in 64-byte chunks */ in MD5Update()
134 os_memcpy(ctx->in, bu in MD5Update()
208 MD5Transform(u32 buf[4], u32 const in[16]) MD5Transform() argument
[all...]
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/
H A Dmd5.c4 * written by Colin Plumb in 1993, no copyright is claimed.
5 * This code is in the public domain; do with it what you wish.
54 /* This is the central step in the MD5 algorithm. */
65 uint32_t in[16]) in MD5Transform()
74 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7); in MD5Transform()
75 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12); in MD5Transform()
76 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17); in MD5Transform()
77 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22); in MD5Transform()
78 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7); in MD5Transform()
79 MD5STEP(F1, d, a, b, c, in[ in MD5Transform()
64 MD5Transform(uint32_t buf[4], uint32_t in[16]) MD5Transform() argument
[all...]
/third_party/skia/third_party/externals/libjpeg-turbo/md5/
H A Dmd5.c4 * written by Colin Plumb in 1993, no copyright is claimed.
5 * This code is in the public domain; do with it what you wish.
20 * Redistribution and use in source and binary forms, with or without
25 * - Redistributions in binary form must reproduce the above copyright notice,
26 * this list of conditions and the following disclaimer in the documentation
97 t = (t >> 3) & 0x3f; /* Bytes already in shsInfo->data */ in MD5Update()
102 unsigned char *p = (unsigned char *)ctx->in + t; in MD5Update()
110 byteReverse(ctx->in, 16); in MD5Update()
111 MD5Transform(ctx->buf, (uint32 *)ctx->in); in MD5Update()
115 /* Process data in 6 in MD5Update()
194 MD5Transform(uint32 buf[4], uint32 in[16]) MD5Transform() argument
[all...]
/third_party/skia/third_party/externals/libpng/contrib/libtests/
H A Dpngstest.c4 * Last changed in libpng 1.6.31 [July 27, 2017]
9 * and license in png.h
38 * a skipped test, in earlier versions we need to succeed on a skipped test, so:
82 * "Algorithms") but it comes from the 'feedback taps' table in Horowitz and
91 /* There are thirty three bits, the next bit in the sequence is bit-33 XOR in make_random_bytes()
92 * bit-20. The top 1 bit is in u1, the bottom 32 are in u0. in make_random_bytes()
97 /* First generate 8 new bits then shift them in at the end. */ in make_random_bytes()
150 * fesetround() call in main(). sRGB_to_d optimizes the 8 to 16-bit conversion.
234 /* The error that results from using a 2.2 power law in plac
1203 gpc_noop(Pixel *out, const Pixel *in, const Background *back) gpc_noop() argument
1214 gpc_nop8(Pixel *out, const Pixel *in, const Background *back) gpc_nop8() argument
1233 gpc_nop6(Pixel *out, const Pixel *in, const Background *back) gpc_nop6() argument
1253 gpc_bckg(Pixel *out, const Pixel *in, const Background *back) gpc_bckg() argument
1273 gpc_bckc(Pixel *out, const Pixel *in, const Background *back) gpc_bckc() argument
1303 gpc_g8(Pixel *out, const Pixel *in, const Background *back) gpc_g8() argument
1319 gpc_g8b(Pixel *out, const Pixel *in, const Background *back) gpc_g8b() argument
1348 gpc_lin(Pixel *out, const Pixel *in, const Background *back) gpc_lin() argument
1384 gpc_pre(Pixel *out, const Pixel *in, const Background *back) gpc_pre() argument
1420 gpc_preq(Pixel *out, const Pixel *in, const Background *back) gpc_preq() argument
1456 gpc_glin(Pixel *out, const Pixel *in, const Background *back) gpc_glin() argument
1472 gpc_gpre(Pixel *out, const Pixel *in, const Background *back) gpc_gpre() argument
1488 gpc_gprq(Pixel *out, const Pixel *in, const Background *back) gpc_gprq() argument
1505 gpc_Lin(Pixel *out, const Pixel *in, const Background *back) gpc_Lin() argument
1543 gpc_Pre(Pixel *out, const Pixel *in, const Background *back) gpc_Pre() argument
1581 gpc_Preq(Pixel *out, const Pixel *in, const Background *back) gpc_Preq() argument
1620 gpc_Glin(Pixel *out, const Pixel *in, const Background *back) gpc_Glin() argument
1640 gpc_Gpre(Pixel *out, const Pixel *in, const Background *back) gpc_Gpre() argument
1658 gpc_Gprq(Pixel *out, const Pixel *in, const Background *back) gpc_Gprq() argument
1676 gpc_sRGB(Pixel *out, const Pixel *in, const Background *back) gpc_sRGB() argument
1712 gpc_unpg(Pixel *out, const Pixel *in, const Background *back) gpc_unpg() argument
1731 gpc_unpc(Pixel *out, const Pixel *in, const Background *back) gpc_unpc() argument
1752 gpc_b16g(Pixel *out, const Pixel *in, const Background *back) gpc_b16g() argument
1771 gpc_b16c(Pixel *out, const Pixel *in, const Background *back) gpc_b16c() argument
1796 gpc_sG(Pixel *out, const Pixel *in, const Background *back) gpc_sG() argument
1806 gpc_sGp(Pixel *out, const Pixel *in, const Background *back) gpc_sGp() argument
1825 gpc_sCp(Pixel *out, const Pixel *in, const Background *back) gpc_sCp() argument
1847 gpc_gb16(Pixel *out, const Pixel *in, const Background *back) gpc_gb16() argument
1869 gpc_cb16(Pixel *out, const Pixel *in, const Background *back) gpc_cb16() argument
1902 gpc_A(Pixel *out, const Pixel *in, const Background *back) gpc_A() argument
1913 gpc_g16(Pixel *out, const Pixel *in, const Background *back) gpc_g16() argument
1922 gpc_g16q(Pixel *out, const Pixel *in, const Background *back) gpc_g16q() argument
2346 logpixel(const Transform *transform, png_uint_32 x, png_uint_32 y, const Pixel *in, const Pixel *calc, const Pixel *out, const char *reason) logpixel() argument
2419 cmppixel(Transform *transform, png_const_voidp in, png_const_voidp out, png_uint_32 x, png_uint_32 y ) cmppixel() argument
3680 unsigned int in; main() local
[all...]
/third_party/ltp/testcases/commands/ar/
H A Dar01.sh25 ROD $AR -cr"$MOD" lib.a $TST_DATAROOT/file1.in $TST_DATAROOT/file3.in
26 ROD $AR -ra"$MOD" file1.in lib.a $TST_DATAROOT/file2.in
29 printf "file1.in\nfile2.in\nfile3.in\n" > ar.exp
43 ROD $AR -cr"$MOD" lib.a $TST_DATAROOT/file1.in $TST_DATAROOT/file2.in \
44 $TST_DATAROOT/file3.in
[all...]
/third_party/mesa3d/src/amd/common/
H A Dac_surface_meta_address_test.c7 * "Software"), to deal in the Software without restriction, including
23 * next paragraph) shall be included in all copies or substantial portions
207 ADDR2_COMPUTE_DCC_ADDRFROMCOORD_INPUT in = {sizeof(in)}; in one_dcc_address_test() local
214 in.dccKeyFlags.pipeAligned = din.dccKeyFlags.pipeAligned = pipe_aligned; in one_dcc_address_test()
215 in.dccKeyFlags.rbAligned = din.dccKeyFlags.rbAligned = rb_aligned; in one_dcc_address_test()
216 xin.resourceType = in.resourceType = din.resourceType = ADDR_RSRC_TEX_2D; in one_dcc_address_test()
217 xin.swizzleMode = in.swizzleMode = din.swizzleMode = swizzle_mode; in one_dcc_address_test()
218 in.bpp = din.bpp = bpp; in one_dcc_address_test()
219 xin.numFrags = xin.numSamples = in in one_dcc_address_test()
430 ADDR2_COMPUTE_HTILE_ADDRFROMCOORD_INPUT in = {0}; one_htile_address_test() local
587 ADDR2_COMPUTE_CMASK_ADDRFROMCOORD_INPUT in = {sizeof(in)}; one_cmask_address_test() local
[all...]
/third_party/openssl/test/
H A Dparams_api_test.c6 * this file except in compliance with the License. You can obtain a copy
7 * in the file LICENSE in the source distribution or at
21 static void swap_copy(unsigned char *out, const void *in, size_t len) in swap_copy() argument
26 out[j] = ((unsigned char *)in)[len - j - 1]; in swap_copy()
37 static void le_copy(unsigned char *out, const void *in, size_t len) in le_copy() argument
42 memcpy(out, in, len); in le_copy()
44 swap_copy(out, in, len); in le_copy()
150 int in, out; in test_param_int() local
157 le_copy(buf, raw_values[n].value, sizeof(in)); in test_param_int()
177 long int in, out; test_param_long() local
204 unsigned int in, out; test_param_uint() local
230 unsigned long int in, out; test_param_ulong() local
257 int32_t in, out; test_param_int32() local
284 uint32_t in, out; test_param_uint32() local
311 int64_t in, out; test_param_int64() local
338 uint64_t in, out; test_param_uint64() local
365 size_t in, out; test_param_size_t() local
392 time_t in, out; test_param_time_t() local
[all...]
/third_party/mesa3d/src/microsoft/vulkan/
H A Ddzn_util.c6 * to deal in the Software without restriction, including without limitation
12 * paragraph) shall be included in all copies or substantial portions of the
153 dzn_pipe_to_dxgi_format(enum pipe_format in) in dzn_pipe_to_dxgi_format() argument
155 return formats[in]; in dzn_pipe_to_dxgi_format()
159 dzn_get_typeless_dxgi_format(DXGI_FORMAT in) in dzn_get_typeless_dxgi_format() argument
161 if (in >= DXGI_FORMAT_R32G32B32A32_TYPELESS && in <= DXGI_FORMAT_R32G32B32A32_SINT) in dzn_get_typeless_dxgi_format()
163 if (in >= DXGI_FORMAT_R32G32B32_TYPELESS && in <= DXGI_FORMAT_R32G32B32_SINT) in dzn_get_typeless_dxgi_format()
165 if (in > in dzn_get_typeless_dxgi_format()
262 dzn_translate_compare_op(VkCompareOp in) dzn_translate_compare_op() argument
278 dzn_translate_viewport(D3D12_VIEWPORT *out, const VkViewport *in) dzn_translate_viewport() argument
290 dzn_translate_rect(D3D12_RECT *out, const VkRect2D *in) dzn_translate_rect() argument
[all...]
/third_party/cups-filters/cupsfilters/
H A Dimage-colorspace.c12 * law. Distribution and use rights are outlined in the file "COPYING"
132 const cups_ib_t *in, /* I - Input pixels */ in cupsImageCMYKToBlack()
142 k = (31 * in[0] + 61 * in[1] + 8 * in[2]) / 100 + in[3]; in cupsImageCMYKToBlack()
149 in += 4; in cupsImageCMYKToBlack()
155 k = (31 * in[0] + 61 * in[1] + 8 * in[ in cupsImageCMYKToBlack()
131 cupsImageCMYKToBlack( const cups_ib_t *in, cups_ib_t *out, int count) cupsImageCMYKToBlack() argument
173 cupsImageCMYKToCMY( const cups_ib_t *in, cups_ib_t *out, int count) cupsImageCMYKToCMY() argument
260 cupsImageCMYKToCMYK( const cups_ib_t *in, cups_ib_t *out, int count) cupsImageCMYKToCMYK() argument
332 cupsImageCMYKToRGB( const cups_ib_t *in, cups_ib_t *out, int count) cupsImageCMYKToRGB() argument
429 cupsImageCMYKToWhite( const cups_ib_t *in, cups_ib_t *out, int count) cupsImageCMYKToWhite() argument
589 cupsImageRGBToBlack( const cups_ib_t *in, cups_ib_t *out, int count) cupsImageRGBToBlack() argument
616 cupsImageRGBToCMY( const cups_ib_t *in, cups_ib_t *out, int count) cupsImageRGBToCMY() argument
691 cupsImageRGBToCMYK( const cups_ib_t *in, cups_ib_t *out, int count) cupsImageRGBToCMYK() argument
781 cupsImageRGBToRGB( const cups_ib_t *in, cups_ib_t *out, int count) cupsImageRGBToRGB() argument
871 cupsImageRGBToWhite( const cups_ib_t *in, cups_ib_t *out, int count) cupsImageRGBToWhite() argument
973 cupsImageWhiteToBlack( const cups_ib_t *in, cups_ib_t *out, int count) cupsImageWhiteToBlack() argument
998 cupsImageWhiteToCMY( const cups_ib_t *in, cups_ib_t *out, int count) cupsImageWhiteToCMY() argument
1028 cupsImageWhiteToCMYK( const cups_ib_t *in, cups_ib_t *out, int count) cupsImageWhiteToCMYK() argument
1059 cupsImageWhiteToRGB( const cups_ib_t *in, cups_ib_t *out, int count) cupsImageWhiteToRGB() argument
1101 cupsImageWhiteToWhite( const cups_ib_t *in, cups_ib_t *out, int count) cupsImageWhiteToWhite() argument
[all...]
/third_party/vk-gl-cts/external/amber/src/src/amberscript/
H A Dparser_run_test.cc4 // you may not use this file except in compliance with the License.
9 // Unless required by applicable law or agreed to in writing, software
24 std::string in = R"( in TEST_F() local
39 Result r = parser.Parse(in); in TEST_F()
54 std::string in = R"(RUN 2 4 5)"; in TEST_F() local
57 Result r = parser.Parse(in); in TEST_F()
63 std::string in = R"(RUN unknown_pipeline 2 4 5)"; in TEST_F() local
66 Result r = parser.Parse(in); in TEST_F()
72 std::string in = R"( in TEST_F() local
86 Result r = parser.Parse(in); in TEST_F()
92 std::string in = R"( TEST_F() local
112 std::string in = R"( TEST_F() local
132 std::string in = R"( TEST_F() local
152 std::string in = R"( TEST_F() local
172 std::string in = R"( TEST_F() local
192 std::string in = R"( TEST_F() local
224 std::string in = R"( TEST_F() local
244 std::string in = R"(RUN my_pipeline DRAW_RECT POS 2 4 SIZE 10 20)"; TEST_F() local
253 std::string in = R"( TEST_F() local
273 std::string in = R"( TEST_F() local
293 std::string in = R"( TEST_F() local
313 std::string in = R"( TEST_F() local
333 std::string in = R"( TEST_F() local
353 std::string in = R"( TEST_F() local
373 std::string in = R"( TEST_F() local
393 std::string in = R"( TEST_F() local
413 std::string in = R"( TEST_F() local
433 std::string in = R"( TEST_F() local
453 std::string in = R"( TEST_F() local
473 std::string in = R"( TEST_F() local
493 std::string in = R"( TEST_F() local
525 std::string in = R"( TEST_F() local
545 std::string in = R"(RUN my_pipeline DRAW_GRID POS 2 4 SIZE 10 20 CELLS 4 4)"; TEST_F() local
554 std::string in = R"( TEST_F() local
574 std::string in = R"( TEST_F() local
594 std::string in = R"( TEST_F() local
614 std::string in = R"( TEST_F() local
634 std::string in = R"( TEST_F() local
654 std::string in = R"( TEST_F() local
674 std::string in = R"( TEST_F() local
694 std::string in = R"( TEST_F() local
714 std::string in = R"( TEST_F() local
734 std::string in = R"( TEST_F() local
754 std::string in = R"( TEST_F() local
774 std::string in = R"( TEST_F() local
794 std::string in = R"( TEST_F() local
814 std::string in = R"( TEST_F() local
834 std::string in = R"( TEST_F() local
854 std::string in = R"( TEST_F() local
893 std::string in = R"( TEST_F() local
932 std::string in = R"( TEST_F() local
972 std::string in = R"( TEST_F() local
1012 std::string in = R"( TEST_F() local
1058 std::string in = R"( TEST_F() local
1086 std::string in = R"( TEST_F() local
1106 std::string in = R"( TEST_F() local
1132 std::string in = R"( TEST_F() local
1158 std::string in = R"( TEST_F() local
1184 std::string in = R"( TEST_F() local
1211 std::string in = R"( TEST_F() local
1237 std::string in = R"( TEST_F() local
1263 std::string in = R"( TEST_F() local
1289 std::string in = R"( TEST_F() local
1315 std::string in = R"( TEST_F() local
1341 std::string in = R"( TEST_F() local
1368 std::string in = R"( TEST_F() local
1395 std::string in = R"( TEST_F() local
1421 std::string in = R"( TEST_F() local
1447 std::string in = R"( TEST_F() local
1473 std::string in = R"( TEST_F() local
1499 std::string in = R"( TEST_F() local
1526 std::string in = R"( TEST_F() local
1553 std::string in = R"( TEST_F() local
1582 std::string in = R"( TEST_F() local
1611 std::string in = R"( TEST_F() local
1637 std::string in = R"( TEST_F() local
1663 std::string in = R"( TEST_F() local
1689 std::string in = R"( TEST_F() local
1715 std::string in = R"( TEST_F() local
1741 std::string in = R"( TEST_F() local
1768 std::string in = R"( TEST_F() local
1794 std::string in = R"( TEST_F() local
1820 std::string in = R"( TEST_F() local
[all...]

Completed in 21 milliseconds

12345678910>>...206