Home
last modified time | relevance | path

Searched refs:in (Results 1 – 25 of 12488) sorted by relevance

12345678910>>...500

/third_party/skia/third_party/externals/spirv-cross/reference/shaders-msl-no-opt/frag/
Dmin-max-clamp.invalid.asm.frag18 fragment void main0(main0_in in [[stage_in]])
20 float res = fast::min(in.v1, in.v1);
21 res = fast::max(in.v1, in.v1);
22 res = fast::clamp(in.v1, in.v1, in.v1);
23 res = precise::min(in.v1, in.v1);
24 res = precise::max(in.v1, in.v1);
25 res = precise::clamp(in.v1, in.v1, in.v1);
26 float2 res2 = fast::min(in.v2, in.v2);
27 res2 = fast::max(in.v2, in.v2);
28 res2 = fast::clamp(in.v2, in.v2, in.v2);
[all …]
/third_party/ffmpeg/libavcodec/
Dxvididct.c57 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[0] + rnd; in idct_row()
72 const int a0 = k + c2 * in[2]; in idct_row()
73 const int a1 = k + c6 * in[2]; in idct_row()
74 const int a2 = k - c6 * in[2]; in idct_row()
75 const int a3 = k - c2 * in[2]; in idct_row()
77 const int b0 = c1 * in[1] + c3 * in[3]; in idct_row()
[all …]
/third_party/boost/libs/beast/test/extern/zlib-1.2.11/examples/
Dgzjoin.c87 local void bclose(bin *in) in bclose() argument
89 if (in != NULL) { in bclose()
90 if (in->fd != -1) in bclose()
91 close(in->fd); in bclose()
92 if (in->buf != NULL) in bclose()
93 free(in->buf); in bclose()
94 free(in); in bclose()
102 bin *in; in bopen() local
104 in = malloc(sizeof(bin)); in bopen()
105 if (in == NULL) in bopen()
[all …]
/third_party/zlib/examples/
Dgzjoin.c87 local void bclose(bin *in) in bclose() argument
89 if (in != NULL) { in bclose()
90 if (in->fd != -1) in bclose()
91 close(in->fd); in bclose()
92 if (in->buf != NULL) in bclose()
93 free(in->buf); in bclose()
94 free(in); in bclose()
102 bin *in; in bopen() local
104 in = malloc(sizeof(bin)); in bopen()
105 if (in == NULL) in bopen()
[all …]
/third_party/boost/tools/boost_install/test/iostreams/zlib-1.2.11/examples/
Dgzjoin.c87 local void bclose(bin *in) in bclose() argument
89 if (in != NULL) { in bclose()
90 if (in->fd != -1) in bclose()
91 close(in->fd); in bclose()
92 if (in->buf != NULL) in bclose()
93 free(in->buf); in bclose()
94 free(in); in bclose()
102 bin *in; in bopen() local
104 in = malloc(sizeof(bin)); in bopen()
105 if (in == NULL) in bopen()
[all …]
/third_party/skia/third_party/externals/spirv-cross/reference/shaders-msl/asm/frag/
Dunord-relational-op.asm.frag26 fragment main0_out main0(main0_in in [[stage_in]])
37 bool2 c7 = (isunordered(in.c, in.d) || in.c == in.d);
38 bool2 c8 = (isunordered(in.c, in.d) || in.c != in.d);
39 bool2 c9 = (isunordered(in.c, in.d) || in.c < in.d);
40 bool2 c10 = (isunordered(in.c, in.d) || in.c > in.d);
41 bool2 c11 = (isunordered(in.c, in.d) || in.c <= in.d);
42 bool2 c12 = (isunordered(in.c, in.d) || in.c >= in.d);
43 bool3 c13 = (isunordered(in.e, in.f) || in.e == in.f);
44 bool3 c14 = (isunordered(in.e, in.f) || in.e != in.f);
45 bool3 c15 = (isunordered(in.e, in.f) || in.e < in.f);
[all …]
/third_party/glib/gio/tests/
Dbuffered-input-stream.c32 GInputStream *in; in test_peek() local
37 in = g_buffered_input_stream_new_sized (base, 64); in test_peek()
39 g_buffered_input_stream_fill (G_BUFFERED_INPUT_STREAM (in), 5, NULL, NULL); in test_peek()
40 g_assert_cmpint (g_buffered_input_stream_get_available (G_BUFFERED_INPUT_STREAM (in)), ==, 5); in test_peek()
41 g_buffered_input_stream_fill (G_BUFFERED_INPUT_STREAM (in), -1, NULL, NULL); in test_peek()
42 …g_assert_cmpint (g_buffered_input_stream_get_available (G_BUFFERED_INPUT_STREAM (in)), ==, strlen … in test_peek()
45 npeek = g_buffered_input_stream_peek (G_BUFFERED_INPUT_STREAM (in), buffer, 2, 3); in test_peek()
51 npeek = g_buffered_input_stream_peek (G_BUFFERED_INPUT_STREAM (in), buffer, 9, 5); in test_peek()
57 npeek = g_buffered_input_stream_peek (G_BUFFERED_INPUT_STREAM (in), buffer, 75, 3); in test_peek()
61 g_object_unref (in); in test_peek()
[all …]
/third_party/cmsis/CMSIS/DSP/Source/BasicMathFunctions/
Darm_abs_q15.c103 q15_t in; /* Temporary input variable */ in arm_abs_q15() local
115 in = *pSrc++; in arm_abs_q15()
117 *pDst++ = (in > 0) ? in : (q15_t)__QSUB16(0, in); in arm_abs_q15()
119 *pDst++ = (in > 0) ? in : ((in == (q15_t) 0x8000) ? 0x7fff : -in); in arm_abs_q15()
122 in = *pSrc++; in arm_abs_q15()
124 *pDst++ = (in > 0) ? in : (q15_t)__QSUB16(0, in); in arm_abs_q15()
126 *pDst++ = (in > 0) ? in : ((in == (q15_t) 0x8000) ? 0x7fff : -in); in arm_abs_q15()
129 in = *pSrc++; in arm_abs_q15()
131 *pDst++ = (in > 0) ? in : (q15_t)__QSUB16(0, in); in arm_abs_q15()
133 *pDst++ = (in > 0) ? in : ((in == (q15_t) 0x8000) ? 0x7fff : -in); in arm_abs_q15()
[all …]
Darm_scale_q31.c114 q31_t in, out; /* Temporary variables */ in arm_scale_q31() local
130 in = *pSrc++; /* read input from source */ in arm_scale_q31()
131 in = ((q63_t) in * scaleFract) >> 32; /* multiply input with scaler value */ in arm_scale_q31()
132 out = in << kShift; /* apply shifting */ in arm_scale_q31()
133 if (in != (out >> kShift)) /* saturate the result */ in arm_scale_q31()
134 out = 0x7FFFFFFF ^ (in >> 31); in arm_scale_q31()
137 in = *pSrc++; in arm_scale_q31()
138 in = ((q63_t) in * scaleFract) >> 32; in arm_scale_q31()
139 out = in << kShift; in arm_scale_q31()
140 if (in != (out >> kShift)) in arm_scale_q31()
[all …]
Darm_abs_q7.c105 q7_t in; /* Temporary input variable */ in arm_abs_q7() local
117 in = *pSrc++; in arm_abs_q7()
119 *pDst++ = (in > 0) ? in : (q7_t)__QSUB8(0, in); in arm_abs_q7()
121 *pDst++ = (in > 0) ? in : ((in == (q7_t) 0x80) ? (q7_t) 0x7f : -in); in arm_abs_q7()
124 in = *pSrc++; in arm_abs_q7()
126 *pDst++ = (in > 0) ? in : (q7_t)__QSUB8(0, in); in arm_abs_q7()
128 *pDst++ = (in > 0) ? in : ((in == (q7_t) 0x80) ? (q7_t) 0x7f : -in); in arm_abs_q7()
131 in = *pSrc++; in arm_abs_q7()
133 *pDst++ = (in > 0) ? in : (q7_t)__QSUB8(0, in); in arm_abs_q7()
135 *pDst++ = (in > 0) ? in : ((in == (q7_t) 0x80) ? (q7_t) 0x7f : -in); in arm_abs_q7()
[all …]
Darm_abs_q31.c105 q31_t in; /* Temporary variable */ in arm_abs_q31() local
145 in = *pSrc++; in arm_abs_q31()
147 *pDst++ = (in > 0) ? in : (q31_t)__QSUB(0, in); in arm_abs_q31()
149 *pDst++ = (in > 0) ? in : ((in == INT32_MIN) ? INT32_MAX : -in); in arm_abs_q31()
152 in = *pSrc++; in arm_abs_q31()
154 *pDst++ = (in > 0) ? in : (q31_t)__QSUB(0, in); in arm_abs_q31()
156 *pDst++ = (in > 0) ? in : ((in == INT32_MIN) ? INT32_MAX : -in); in arm_abs_q31()
159 in = *pSrc++; in arm_abs_q31()
161 *pDst++ = (in > 0) ? in : (q31_t)__QSUB(0, in); in arm_abs_q31()
163 *pDst++ = (in > 0) ? in : ((in == INT32_MIN) ? INT32_MAX : -in); in arm_abs_q31()
[all …]
/third_party/nghttp2/src/
Dbase64_test.cc40 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), std::end(in)); in test_base64_encode()
55 std::string in = "\xff\xfe\xfd\xfc"; in test_base64_encode() local
56 auto out = base64::encode(std::begin(in), std::end(in)); in test_base64_encode()
64 std::string in = "/w=="; in test_base64_decode() local
65 auto out = base64::decode(std::begin(in), std::end(in)); in test_base64_decode()
[all …]
/third_party/e2fsprogs/tests/f_h_reindex/
Dexpect.15 Problem in HTREE directory inode 16001: block #1 has bad max hash
6 Problem in HTREE directory inode 16001: block #2 has bad min hash
7 Problem in HTREE directory inode 16001: block #2 has bad max hash
8 Problem in HTREE directory inode 16001: block #3 has bad min hash
9 Problem in HTREE directory inode 16001: block #3 has bad max hash
10 Problem in HTREE directory inode 16001: block #4 has bad min hash
11 Problem in HTREE directory inode 16001: block #4 has bad max hash
12 Problem in HTREE directory inode 16001: block #5 has bad min hash
13 Problem in HTREE directory inode 16001: block #5 has bad max hash
14 Problem in HTREE directory inode 16001: block #6 has bad min hash
[all …]
/third_party/ffmpeg/libavfilter/
Dvf_normalize.c91 uint16_t in; // Original input byte value for this frame. member
121 …void (*find_min_max)(struct NormalizeContext *s, AVFrame *in, NormalizeLocal min[3], NormalizeLoca…
122 void (*process)(struct NormalizeContext *s, AVFrame *in, AVFrame *out);
140 static void find_min_max(NormalizeContext *s, AVFrame *in, NormalizeLocal min[3], NormalizeLocal ma… in find_min_max() argument
143 min[c].in = max[c].in = in->data[0][s->co[c]]; in find_min_max()
144 for (int y = 0; y < in->height; y++) { in find_min_max()
145 uint8_t *inp = in->data[0] + y * in->linesize[0]; in find_min_max()
146 for (int x = 0; x < in->width; x++) { in find_min_max()
148 min[c].in = FFMIN(min[c].in, inp[s->co[c]]); in find_min_max()
149 max[c].in = FFMAX(max[c].in, inp[s->co[c]]); in find_min_max()
[all …]
Dframesync.c95 fs->in = av_calloc(nb_in, sizeof(*fs->in)); in ff_framesync_init()
96 if (!fs->in) in ff_framesync_init()
113 if (fs->in[i].state != STATE_EOF) in framesync_sync_level_update()
114 level = FFMAX(level, fs->in[i].sync); in framesync_sync_level_update()
138 fs->in[i].after = EXT_NULL; in ff_framesync_configure()
139 fs->in[i].sync = 0; in ff_framesync_configure()
144 fs->in[i].after = EXT_STOP; in ff_framesync_configure()
149 if (fs->in[i].sync) { in ff_framesync_configure()
151 fs->time_base = av_gcd_q(fs->time_base, fs->in[i].time_base, in ff_framesync_configure()
154 fs->time_base = fs->in[i].time_base; in ff_framesync_configure()
[all …]
/third_party/gstreamer/gstplugins_bad/ext/aes/
Dgstaeshelper.c94 gst_aes_nibble_to_hex (gchar in) in gst_aes_nibble_to_hex() argument
96 return in < 10 ? in + 48 : in + 55; in gst_aes_nibble_to_hex()
111 gst_aes_bytearray2hexstring (const guchar * in, gchar * const out, in gst_aes_bytearray2hexstring() argument
119 high = (in[i] & 0xF0) >> 4; in gst_aes_bytearray2hexstring()
120 low = in[i] & 0x0F; in gst_aes_bytearray2hexstring()
141 gst_aes_hexstring2bytearray (GstElement * filter, const gchar * in, in gst_aes_hexstring2bytearray() argument
149 g_return_val_if_fail (in && out, 0); in gst_aes_hexstring2bytearray()
151 while (*in != 0) { in gst_aes_hexstring2bytearray()
153 if (*in >= 'A' && *in <= 'F') { in gst_aes_hexstring2bytearray()
154 byte_val = (*in - 55) << 4; in gst_aes_hexstring2bytearray()
[all …]
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/
Dmd5.c65 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[5] + 0x4787c62a, 12); in MD5Transform()
80 MD5STEP(F1, c, d, a, b, in[6] + 0xa8304613, 17); in MD5Transform()
81 MD5STEP(F1, b, c, d, a, in[7] + 0xfd469501, 22); in MD5Transform()
82 MD5STEP(F1, a, b, c, d, in[8] + 0x698098d8, 7); in MD5Transform()
[all …]
/third_party/mesa3d/src/mesa/tnl/
Dt_vertex_generic.c50 const GLfloat *in ) in insert_4f_viewport_4() argument
55 out[0] = vp[0] * in[0] + vp[12]; in insert_4f_viewport_4()
56 out[1] = vp[5] * in[1] + vp[13]; in insert_4f_viewport_4()
57 out[2] = vp[10] * in[2] + vp[14]; in insert_4f_viewport_4()
58 out[3] = in[3]; in insert_4f_viewport_4()
62 const GLfloat *in ) in insert_4f_viewport_3() argument
67 out[0] = vp[0] * in[0] + vp[12]; in insert_4f_viewport_3()
68 out[1] = vp[5] * in[1] + vp[13]; in insert_4f_viewport_3()
69 out[2] = vp[10] * in[2] + vp[14]; in insert_4f_viewport_3()
74 const GLfloat *in ) in insert_4f_viewport_2() argument
[all …]
/third_party/libjpeg-turbo/md5/
Dmd5.c102 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()
118 memcpy(ctx->in, buf, 64); in MD5Update()
119 byteReverse(ctx->in, 16); in MD5Update()
120 MD5Transform(ctx->buf, (uint32 *)ctx->in); in MD5Update()
127 memcpy(ctx->in, buf, len); in MD5Update()
138 uint32 *in32 = (uint32 *)ctx->in; in MD5Final()
145 p = ctx->in + count; in MD5Final()
155 byteReverse(ctx->in, 16); in MD5Final()
[all …]
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/md5/
Dmd5.c102 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()
118 memcpy(ctx->in, buf, 64); in MD5Update()
119 byteReverse(ctx->in, 16); in MD5Update()
120 MD5Transform(ctx->buf, (uint32 *)ctx->in); in MD5Update()
127 memcpy(ctx->in, buf, len); in MD5Update()
138 uint32 *in32 = (uint32 *)ctx->in; in MD5Final()
145 p = ctx->in + count; in MD5Final()
155 byteReverse(ctx->in, 16); in MD5Final()
[all …]
/third_party/skia/third_party/externals/libjpeg-turbo/md5/
Dmd5.c102 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()
118 memcpy(ctx->in, buf, 64); in MD5Update()
119 byteReverse(ctx->in, 16); in MD5Update()
120 MD5Transform(ctx->buf, (uint32 *)ctx->in); in MD5Update()
127 memcpy(ctx->in, buf, len); in MD5Update()
138 uint32 *in32 = (uint32 *)ctx->in; in MD5Final()
145 p = ctx->in + count; in MD5Final()
155 byteReverse(ctx->in, 16); in MD5Final()
[all …]
/third_party/skia/third_party/externals/dawn/src/dawn_node/binding/
DConverter.h74 [[nodiscard]] inline bool operator()(OUT&& out, IN&& in) { in operator()
75 return Convert(std::forward<OUT>(out), std::forward<IN>(in)); in operator()
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);
107 [[nodiscard]] bool Convert(wgpu::Color& out, const interop::GPUColor& in);
110 const std::vector<interop::GPUIntegerCoordinate>& in);
112 [[nodiscard]] bool Convert(wgpu::TextureAspect& out, const interop::GPUTextureAspect& in);
115 const interop::GPUImageCopyTexture& in);
[all …]
/third_party/flutter/skia/third_party/externals/sdl/Xcode/SDL/SDL.xcodeproj/
Dproject.pbxproj10 …007317A40858DECD00B2BC32 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073…
11 …007317A60858DECD00B2BC32 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073…
12 …007317AB0858DECD00B2BC32 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073…
13 …007317AD0858DECD00B2BC32 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073…
14 …007317C30858E15000B2BC32 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 007…
15 …00CFA89D106B4BA100758660 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRe…
16 …00D0D08410675DD9004B05EF /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileR…
17 …00D0D0D810675E46004B05EF /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 007…
18 …04043BBB12FEB1BE0076DB1F /* SDL_glfuncs.h in Headers */ = {isa = PBXBuildFile; fileRef = 04043BBA1…
19 …04043BBC12FEB1BE0076DB1F /* SDL_glfuncs.h in Headers */ = {isa = PBXBuildFile; fileRef = 04043BBA1…
[all …]
/third_party/boost/boost/process/detail/traits/
Dwchar_t.hpp43 static T& conv(T & in) in conv()
45 return in; in conv()
47 static T&& conv(T&& in) in conv()
49 return std::move(in); in conv()
51 static const T& conv(const T & in) in conv()
53 return in; in conv()
65 static std::string conv(const wchar_t* in) in conv()
68 while (in[size] != L'\0') size++; in conv()
69 return ::boost::process::detail::convert(in, in + size); in conv()
76 static std::string conv(wchar_t* in) in conv()
[all …]
/third_party/flutter/skia/third_party/externals/sdl/src/test/
DSDL_test_md5.c59 static void SDLTest_Md5Transform(MD5UINT4 * buf, MD5UINT4 * in);
134 MD5UINT4 in[16]; in SDLTest_Md5Update() local
158 mdContext->in[mdi++] = *inBuf++; in SDLTest_Md5Update()
165 in[i] = (((MD5UINT4) mdContext->in[ii + 3]) << 24) | in SDLTest_Md5Update()
166 (((MD5UINT4) mdContext->in[ii + 2]) << 16) | in SDLTest_Md5Update()
167 (((MD5UINT4) mdContext->in[ii + 1]) << 8) | in SDLTest_Md5Update()
168 ((MD5UINT4) mdContext->in[ii]); in SDLTest_Md5Update()
169 SDLTest_Md5Transform(mdContext->buf, in); in SDLTest_Md5Update()
182 MD5UINT4 in[16]; in SDLTest_Md5Final() local
192 in[14] = mdContext->i[0]; in SDLTest_Md5Final()
[all …]

12345678910>>...500