Home
last modified time | relevance | path

Searched refs:input (Results 1 - 25 of 3995) sorted by relevance

12345678910>>...160

/third_party/skia/third_party/externals/angle2/src/tests/preprocessor_tests/
H A Ddefine_test.cpp22 const char *input = in TEST_F() local
32 preprocess(input, expected); in TEST_F()
37 const char *input = in TEST_F() local
65 preprocess(input, expected); in TEST_F()
70 const char *input = in TEST_F() local
80 preprocess(input, expected); in TEST_F()
85 const char *input = in TEST_F() local
95 preprocess(input, expected); in TEST_F()
100 const char *input = in TEST_F() local
110 preprocess(input, expecte in TEST_F()
115 const char *input = TEST_F() local
132 const char *input = TEST_F() local
149 const char *input = TEST_F() local
166 const char *input = TEST_F() local
183 const char *input = TEST_F() local
195 const char *input = TEST_F() local
207 const char *input = TEST_F() local
221 const char *input = TEST_F() local
235 const char *input = TEST_F() local
255 const char *input = TEST_F() local
269 const char *input = TEST_F() local
283 const char *input = TEST_F() local
303 const char *input = TEST_F() local
317 const char *input = TEST_F() local
333 const char *input = TEST_F() local
345 const char *input = TEST_F() local
357 const char *input = TEST_F() local
369 const char *input = TEST_F() local
381 const char *input = TEST_F() local
393 const char *input = TEST_F() local
405 const char *input = TEST_F() local
425 const char *input = TEST_F() local
439 const char *input = TEST_F() local
451 const char *input = TEST_F() local
463 const char *input = TEST_F() local
477 const char *input = TEST_F() local
489 const char *input = TEST_F() local
501 const char *input = TEST_F() local
519 const char *input = TEST_F() local
533 const char *input = TEST_F() local
547 const char *input = TEST_F() local
561 const char *input = TEST_F() local
577 const char *input = TEST_F() local
591 const char *input = TEST_F() local
607 const char *input = TEST_F() local
625 const char *input = TEST_F() local
639 const char *input = TEST_F() local
655 const char *input = TEST_F() local
667 const char *input = TEST_F() local
679 const char *input = TEST_F() local
691 const char *input = TEST_F() local
703 const char *input = TEST_F() local
717 const char *input = TEST_F() local
729 const char *input = TEST_F() local
743 const char *input = TEST_F() local
757 const char *input = TEST_F() local
769 const char *input = TEST_F() local
784 const char *input = TEST_F() local
807 const char *input = TEST_F() local
823 const char *input = TEST_F() local
856 const char *input = TEST_F() local
877 const char *input = TEST_F() local
919 const char *input = "GL_ES\\n"; TEST_F() local
927 const char *input = "__VERSION__\\n"; TEST_F() local
978 const char *input = TEST_F() local
996 const char *input = TEST_F() local
1008 const char *input = TEST_F() local
1027 const char *input = TEST_F() local
1043 const char *input = TEST_F() local
1060 const char *input = TEST_F() local
1077 const char *input = TEST_F() local
[all...]
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/
H A Drdb_types_util.cpp19 bool Marshalling(const SyncerParam &input, MessageParcel &data) in Marshalling() argument
21 return ITypesUtil::Marshal(data, input.bundleName_, input.hapName_, input.storeName_, input.area_, in Marshalling()
22 input.level_, input.type_, input.isEncrypt_, input.password_, input in Marshalling()
34 Marshalling(const NotifyConfig &input, MessageParcel &data) Marshalling() argument
45 Marshalling(const Option &input, MessageParcel &data) Marshalling() argument
58 Marshalling(const RdbPredicates &input, MessageParcel &data) Marshalling() argument
69 Marshalling(const RdbOperation &input, MessageParcel &data) Marshalling() argument
84 Marshalling(const SubOption &input, MessageParcel &data) Marshalling() argument
98 Marshalling(const ValueObject &input, MessageParcel &data) Marshalling() argument
109 Marshalling(const ValuesBucket &input, MessageParcel &data) Marshalling() argument
120 Marshalling(const Asset &input, MessageParcel &data) Marshalling() argument
130 Marshalling(const ProgressDetail &input, MessageParcel &data) Marshalling() argument
140 Marshalling(const TableDetail &input, MessageParcel &data) Marshalling() argument
150 Marshalling(const Statistic &input, MessageParcel &data) Marshalling() argument
161 Marshalling(const PrimaryKeys &input, MessageParcel &data) Marshalling() argument
174 Marshalling(const Origin &input, MessageParcel &data) Marshalling() argument
185 Marshalling(const RdbChangedData &input, MessageParcel &data) Marshalling() argument
196 Marshalling(const RdbProperties &input, MessageParcel &data) Marshalling() argument
207 Marshalling(const Reference &input, MessageParcel &data) Marshalling() argument
218 Marshalling(const BigInt& input, MessageParcel& data) Marshalling() argument
235 Marshalling(const DebugInfo &input, MessageParcel &data) Marshalling() argument
[all...]
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DCodedInputStreamReader.java53 private final CodedInputStream input; field in CodedInputStreamReader
58 public static CodedInputStreamReader forCodedInput(CodedInputStream input) { in forCodedInput() argument
59 if (input.wrapper != null) { in forCodedInput()
60 return input.wrapper; in forCodedInput()
62 return new CodedInputStreamReader(input); in forCodedInput()
65 private CodedInputStreamReader(CodedInputStream input) { in CodedInputStreamReader() argument
66 this.input = Internal.checkNotNull(input, "input"); in CodedInputStreamReader()
67 this.input in CodedInputStreamReader()
[all...]
/third_party/alsa-lib/src/
H A Dinput.c2 * \file input.c
3 * \brief Generic stdio-like input interface
7 * Generic stdio-like input interface
39 int (*close)(snd_input_t *input);
40 int (*scan)(snd_input_t *input, const char *format, va_list args);
41 char *(*(gets))(snd_input_t *input, char *str, size_t size);
42 int (*getch)(snd_input_t *input);
43 int (*ungetch)(snd_input_t *input, int c);
54 * \brief Closes an input handle.
55 * \param input Th
58 snd_input_close(snd_input_t *input) snd_input_close() argument
74 snd_input_scanf(snd_input_t *input, const char *format, ...) snd_input_scanf() argument
94 snd_input_gets(snd_input_t *input, char *str, size_t size) snd_input_gets() argument
104 snd_input_getc(snd_input_t *input) snd_input_getc() argument
115 snd_input_ungetc(snd_input_t *input, int c) snd_input_ungetc() argument
135 snd_input_stdio_scan(snd_input_t *input, const char *format, va_list args) snd_input_stdio_scan() argument
142 snd_input_stdio_gets(snd_input_t *input, char *str, size_t size) snd_input_stdio_gets() argument
148 snd_input_stdio_getc(snd_input_t *input) snd_input_stdio_getc() argument
154 snd_input_stdio_ungetc(snd_input_t *input, int c) snd_input_stdio_ungetc() argument
181 snd_input_t *input; snd_input_stdio_attach() local
231 snd_input_buffer_close(snd_input_t *input) snd_input_buffer_close() argument
239 snd_input_buffer_scan(snd_input_t *input, const char *format, va_list args) snd_input_buffer_scan() argument
248 snd_input_buffer_gets(snd_input_t *input, char *str, size_t size) snd_input_buffer_gets() argument
266 snd_input_buffer_getc(snd_input_t *input) snd_input_buffer_getc() argument
275 snd_input_buffer_ungetc(snd_input_t *input, int c) snd_input_buffer_ungetc() argument
308 snd_input_t *input; snd_input_buffer_open() local
[all...]
/base/inputmethod/imf/common/src/
H A Ditypes_util.cpp33 bool ITypesUtil::Marshalling(bool input, MessageParcel &data) in Marshalling() argument
35 return data.WriteBool(input); in Marshalling()
43 bool ITypesUtil::Marshalling(uint32_t input, MessageParcel &data) in Marshalling() argument
45 return data.WriteUint32(input); in Marshalling()
53 bool ITypesUtil::Marshalling(int32_t input, MessageParcel &data) in Marshalling() argument
55 return data.WriteInt32(input); in Marshalling()
63 bool ITypesUtil::Marshalling(uint64_t input, MessageParcel &data) in Marshalling() argument
65 return data.WriteUint64(input); in Marshalling()
73 bool ITypesUtil::Marshalling(double input, MessageParcel &data) in Marshalling() argument
75 return data.WriteDouble(input); in Marshalling()
83 Marshalling(const std::string &input, MessageParcel &data) Marshalling() argument
93 Marshalling(const std::u16string &input, MessageParcel &data) Marshalling() argument
103 Marshalling(const std::vector<uint8_t> &input, MessageParcel &data) Marshalling() argument
113 Marshalling(const sptr<IRemoteObject> &input, MessageParcel &data) Marshalling() argument
124 Marshalling(const Property &input, MessageParcel &data) Marshalling() argument
142 Marshalling(const SubProperty &input, MessageParcel &data) Marshalling() argument
162 Marshalling(const InputAttribute &input, MessageParcel &data) Marshalling() argument
180 Marshalling(const TextTotalConfig &input, MessageParcel &data) Marshalling() argument
249 Marshalling(const InputClientInfo &input, MessageParcel &data) Marshalling() argument
269 Marshalling(const ImeWindowInfo &input, MessageParcel &data) Marshalling() argument
295 Marshalling(const PanelStatusInfo &input, MessageParcel &data) Marshalling() argument
315 Marshalling(const SysPanelStatus &input, MessageParcel &data) Marshalling() argument
334 Marshalling(const OHOS::AppExecFwk::ElementName &input, MessageParcel &data) Marshalling() argument
355 Marshalling(InputType input, MessageParcel &data) Marshalling() argument
370 Marshalling(const PanelInfo &input, MessageParcel &data) Marshalling() argument
388 Marshalling(ClientState input, MessageParcel &data) Marshalling() argument
404 Marshalling(SwitchTrigger input, MessageParcel &data) Marshalling() argument
420 Marshalling(const PrivateDataValue &input, MessageParcel &data) Marshalling() argument
470 Marshalling(const Range &input, MessageParcel &data) Marshalling() argument
[all...]
/third_party/libinput/src/
H A Dudev-seat.c38 udev_seat_create(struct udev_input *input,
42 udev_seat_get_named(struct udev_input *input, const char *seat_name);
77 struct udev_input *input, in device_added()
89 if (!streq(device_seat, input->seat_id)) in device_added()
104 seat = udev_seat_get_named(input, seat_name); in device_added()
116 seat = udev_seat_create(input, device_seat, seat_name); in device_added()
125 log_info(&input->base, in device_added()
126 "%-7s - not using input device '%s'\n", in device_added()
133 log_info(&input->base, in device_added()
134 "%-7s - failed to create input devic in device_added()
76 device_added(struct udev_device *udev_device, struct udev_input *input, const char *seat_name) device_added() argument
149 device_removed(struct udev_device *udev_device, struct udev_input *input) device_removed() argument
169 udev_input_add_devices(struct udev_input *input, struct udev *udev) udev_input_add_devices() argument
218 struct udev_input *input = data; evdev_udev_handler() local
243 udev_input_remove_devices(struct udev_input *input) udev_input_remove_devices() argument
261 struct udev_input *input = (struct udev_input*)libinput; udev_input_disable() local
277 struct udev_input *input = (struct udev_input*)libinput; udev_input_enable() local
324 udev_input_destroy(struct libinput *input) udev_input_destroy() argument
343 udev_seat_create(struct udev_input *input, const char *device_seat, const char *seat_name) udev_seat_create() argument
359 udev_seat_get_named(struct udev_input *input, const char *seat_name) udev_seat_get_named() argument
376 struct udev_input *input = (struct udev_input *)libinput; udev_device_change_seat() local
401 struct udev_input *input; libinput_udev_create_context() local
424 struct udev_input *input = (struct udev_input*)libinput; libinput_udev_assign_seat() local
[all...]
/foundation/distributeddatamgr/relational_store/frameworks/native/cloud_data/src/
H A Dcloud_types_util.cpp20 bool Marshalling(const Participant &input, MessageParcel &data) in Marshalling() argument
23 data, input.identity, input.role, input.state, input.privilege, input.attachInfo); in Marshalling()
34 bool Marshalling(const Privilege &input, MessageParcel &data) in Marshalling() argument
36 return ITypesUtil::Marshal(data, input.writable, input.readable, in Marshalling()
37 input in Marshalling()
48 Marshalling(const Role &input, MessageParcel &data) Marshalling() argument
65 Marshalling(const Confirmation &input, MessageParcel &data) Marshalling() argument
83 Marshalling(const SharingCode &input, MessageParcel &data) Marshalling() argument
100 Marshalling(const Asset &input, MessageParcel &data) Marshalling() argument
110 Marshalling(const ValueObject &input, MessageParcel &data) Marshalling() argument
120 Marshalling(const ValuesBucket &input, MessageParcel &data) Marshalling() argument
137 Marshalling(const Strategy &input, MessageParcel &data) Marshalling() argument
143 Marshalling(const CommonAsset &input, MessageParcel &data) Marshalling() argument
150 Marshalling(const CloudSyncInfo &input, MessageParcel &data) Marshalling() argument
[all...]
/third_party/ltp/testcases/kernel/device-drivers/v4l/user_space/
H A Dtest_VIDIOC_ENUMINPUT.c46 struct v4l2_input input; in test_VIDIOC_ENUMINPUT() local
52 memset(&input, 0xff, sizeof(input)); in test_VIDIOC_ENUMINPUT()
53 input.index = i; in test_VIDIOC_ENUMINPUT()
54 ret_enum = ioctl(get_video_fd(), VIDIOC_ENUMINPUT, &input); in test_VIDIOC_ENUMINPUT()
63 CU_ASSERT_EQUAL(input.index, i); in test_VIDIOC_ENUMINPUT()
65 CU_ASSERT(0 < strlen((char *)input.name)); in test_VIDIOC_ENUMINPUT()
67 ((char *)input.name, sizeof(input.name))); in test_VIDIOC_ENUMINPUT()
69 //CU_ASSERT_EQUAL(input in test_VIDIOC_ENUMINPUT()
116 struct v4l2_input input; test_VIDIOC_ENUMINPUT_S32_MAX() local
138 struct v4l2_input input; test_VIDIOC_ENUMINPUT_S32_MAX_1() local
160 struct v4l2_input input; test_VIDIOC_ENUMINPUT_U32_MAX() local
183 struct v4l2_input input; test_VIDIOC_ENUMINPUT_NULL() local
[all...]
/third_party/gn/src/gn/
H A Dfilesystem_utils_unittest.cc28 std::string input; in TEST() local
29 EXPECT_EQ("", FindExtension(&input)); in TEST()
30 input = "foo/bar/baz"; in TEST()
31 EXPECT_EQ("", FindExtension(&input)); in TEST()
32 input = "foo."; in TEST()
33 EXPECT_EQ("", FindExtension(&input)); in TEST()
34 input = "f.o.bar"; in TEST()
35 EXPECT_EQ("bar", FindExtension(&input)); in TEST()
36 input = "foo.bar/"; in TEST()
37 EXPECT_EQ("", FindExtension(&input)); in TEST()
73 std::string input; TEST() local
226 std::string input; TEST() local
[all...]
H A Dparser_unittest.cc14 bool GetTokens(const InputFile* input, std::vector<Token>* result) { in GetTokens() argument
17 *result = Tokenizer::Tokenize(input, &err); in GetTokens()
21 void DoParserPrintTest(const char* input, const char* expected) { in DoParserPrintTest() argument
24 input_file.SetContents(input); in DoParserPrintTest()
39 void DoExpressionPrintTest(const char* input, const char* expected) { in DoExpressionPrintTest() argument
42 input_file.SetContents(input); in DoExpressionPrintTest()
57 void DoParserErrorTest(const char* input, int err_line, int err_char) { in DoParserErrorTest() argument
59 input_file.SetContents(input); in DoParserErrorTest()
75 void DoExpressionErrorTest(const char* input, int err_line, int err_char) { in DoExpressionErrorTest() argument
77 input_file.SetContents(input); in DoExpressionErrorTest()
131 const char* input = "(foo(1)) + (a + (b - c) + d)"; TEST() local
149 const char* input = "5 - 1 - 2\\n"; TEST() local
160 const char* input = TEST() local
303 const char* input = TEST() local
332 const char* input = TEST() local
425 const char* input = "a = b[1]"; TEST() local
450 const char* input = "func(\\"stuff\\") {\\n}"; TEST() local
464 const char* input = "a = b + c && d || e"; TEST() local
480 const char* input = TEST() local
495 const char* input = TEST() local
509 const char* input = TEST() local
537 const char* input = TEST() local
558 const char* input = TEST() local
580 const char* input = TEST() local
605 const char* input = TEST() local
624 const char* input = TEST() local
646 const char* input = TEST() local
712 const char* input = TEST() local
[all...]
/third_party/rust/crates/syn/src/
H A Ditem.rs334 fn from(input: DeriveInput) -> Item { in from()
335 match input.data { in from()
337 attrs: input.attrs, in from()
338 vis: input.vis, in from()
340 ident: input.ident, in from()
341 generics: input.generics, in from()
346 attrs: input.attrs, in from()
347 vis: input.vis, in from()
349 ident: input.ident, in from()
350 generics: input in from()
[all...]
H A Dop.rs86 fn parse(input: ParseStream) -> Result<Self> { in parse()
87 if input.peek(Token![+=]) { in parse()
88 input.parse().map(BinOp::AddAssign) in parse()
89 } else if input.peek(Token![-=]) { in parse()
90 input.parse().map(BinOp::SubAssign) in parse()
91 } else if input.peek(Token![*=]) { in parse()
92 input.parse().map(BinOp::MulAssign) in parse()
93 } else if input.peek(Token![/=]) { in parse()
94 input.parse().map(BinOp::DivAssign) in parse()
95 } else if input in parse()
[all...]
H A Dexpr.rs1040 fn parse(input: ParseStream) -> Result<Self> { in parse()
1042 input, in parse()
1132 pub fn parse_without_eager_brace(input: ParseStream) -> Result<Expr> { in parse_without_eager_brace()
1133 ambiguous_expr(input, AllowStruct(false)) in parse_without_eager_brace()
1170 fn can_begin_expr(input: ParseStream) -> bool { in can_begin_expr()
1171 input.peek(Ident::peek_any) // value name or keyword in can_begin_expr()
1172 || input.peek(token::Paren) // tuple in can_begin_expr()
1173 || input.peek(token::Bracket) // array in can_begin_expr()
1174 || input.peek(token::Brace) // block in can_begin_expr()
1175 || input in can_begin_expr()
[all...]
H A Dstmt.rs110 /// fn parse(input: ParseStream) -> Result<Self> {
111 /// let outer_attrs = input.call(Attribute::parse_outer)?;
112 /// let fn_token: Token![fn] = input.parse()?;
113 /// let name: Ident = input.parse()?;
116 /// let brace_token = braced!(content in input);
135 pub fn parse_within(input: ParseStream) -> Result<Vec<Stmt>> { in parse_within()
138 while let semi @ Some(_) = input.parse()? { in parse_within()
141 if input.is_empty() { in parse_within()
144 let stmt = parse_stmt(input, AllowNoSemi(true))?; in parse_within()
153 if input in parse_within()
[all...]
H A Dpat.rs261 pub fn parse_single(input: ParseStream) -> Result<Self> { in parse_single()
262 let begin = input.fork(); in parse_single()
263 let lookahead = input.lookahead1(); in parse_single()
265 && (input.peek2(Token![::]) in parse_single()
266 || input.peek2(Token![!]) in parse_single()
267 || input.peek2(token::Brace) in parse_single()
268 || input.peek2(token::Paren) in parse_single()
269 || input.peek2(Token![..])) in parse_single()
270 || input.peek(Token![self]) && input in parse_single()
[all...]
/third_party/rust/crates/proc-macro2/src/
H A Dparse.rs77 fn skip_whitespace(input: Cursor) -> Cursor { in skip_whitespace()
78 let mut s = input; in skip_whitespace()
125 fn block_comment(input: Cursor) -> PResult<&str> { in block_comment()
126 if !input.starts_with("/*") { in block_comment()
131 let bytes = input.as_bytes(); in block_comment()
142 return Ok((input.advance(i + 2), &input.rest[..i + 2])); in block_comment()
157 fn word_break(input: Cursor) -> Result<Cursor, Reject> { in word_break()
158 match input.chars().next() { in word_break()
160 Some(_) | None => Ok(input), in word_break()
[all...]
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-subset-input.cc33 * Creates a new subset input object.
35 * Return value: (transfer full): New subset input, or %NULL if failed. Destroy
43 hb_subset_input_t *input = hb_object_create<hb_subset_input_t>(); in hb_subset_input_create_or_fail() local
45 if (unlikely (!input)) in hb_subset_input_create_or_fail()
48 for (auto& set : input->sets_iter ()) in hb_subset_input_create_or_fail()
51 if (input->in_error ()) in hb_subset_input_create_or_fail()
53 hb_subset_input_destroy (input); in hb_subset_input_create_or_fail()
57 input->flags = HB_SUBSET_FLAGS_DEFAULT; in hb_subset_input_create_or_fail()
59 hb_set_add_range (input->sets.name_ids, 0, 6); in hb_subset_input_create_or_fail()
60 hb_set_add (input in hb_subset_input_create_or_fail()
212 hb_subset_input_reference(hb_subset_input_t *input) hb_subset_input_reference() argument
227 hb_subset_input_destroy(hb_subset_input_t *input) hb_subset_input_destroy() argument
250 hb_subset_input_unicode_set(hb_subset_input_t *input) hb_subset_input_unicode_set() argument
267 hb_subset_input_glyph_set(hb_subset_input_t *input) hb_subset_input_glyph_set() argument
284 hb_subset_input_set(hb_subset_input_t *input, hb_subset_sets_t set_type) hb_subset_input_set() argument
300 hb_subset_input_get_flags(hb_subset_input_t *input) hb_subset_input_get_flags() argument
316 hb_subset_input_set_flags(hb_subset_input_t *input, unsigned value) hb_subset_input_set_flags() argument
337 hb_subset_input_set_user_data(hb_subset_input_t *input, hb_user_data_key_t *key, void * data, hb_destroy_func_t destroy, hb_bool_t replace) hb_subset_input_set_user_data() argument
359 hb_subset_input_get_user_data(const hb_subset_input_t *input, hb_user_data_key_t *key) hb_subset_input_get_user_data() argument
[all...]
/third_party/ffmpeg/libavcodec/
H A Ddcadct.c26 static void sum_a(const int *input, int *output, int len) in sum_a() argument
31 output[i] = input[2 * i] + input[2 * i + 1]; in sum_a()
34 static void sum_b(const int *input, int *output, int len) in sum_b() argument
38 output[0] = input[0]; in sum_b()
40 output[i] = input[2 * i] + input[2 * i - 1]; in sum_b()
43 static void sum_c(const int *input, int *output, int len) in sum_c() argument
48 output[i] = input[2 * i]; in sum_c()
51 static void sum_d(const int *input, in argument
60 dct_a(const int *input, int *output) dct_a() argument
83 dct_b(const int *input, int *output) dct_b() argument
106 mod_a(const int *input, int *output) mod_a() argument
124 mod_b(int *input, int *output) mod_b() argument
143 mod_c(const int *input, int *output) mod_c() argument
165 clp_v(int *input, int len) clp_v() argument
173 imdct_half_32(int32_t *output, const int32_t *input) imdct_half_32() argument
219 mod64_a(const int *input, int *output) mod64_a() argument
241 mod64_b(int *input, int *output) mod64_b() argument
262 mod64_c(const int *input, int *output) mod64_c() argument
292 imdct_half_64(int32_t *output, const int32_t *input) imdct_half_64() argument
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
H A Dstrip_test.cc31 absl::string_view input("abc"); in TEST()
32 EXPECT_TRUE(absl::ConsumePrefix(&input, "a")); in TEST()
33 EXPECT_EQ(input, "bc"); in TEST()
35 EXPECT_FALSE(absl::ConsumePrefix(&input, "x")); in TEST()
36 EXPECT_EQ(input, "bc"); in TEST()
38 EXPECT_TRUE(absl::ConsumePrefix(&input, "b")); in TEST()
39 EXPECT_EQ(input, "c"); in TEST()
41 EXPECT_TRUE(absl::ConsumePrefix(&input, "c")); in TEST()
42 EXPECT_EQ(input, ""); in TEST()
44 EXPECT_FALSE(absl::ConsumePrefix(&input, " in TEST()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DVersionTuple.cpp38 static bool parseInt(StringRef &input, unsigned &value) { in parseInt() argument
40 if (input.empty()) in parseInt()
43 char next = input[0]; in parseInt()
44 input = input.substr(1); in parseInt()
49 while (!input.empty()) { in parseInt()
50 next = input[0]; in parseInt()
53 input = input.substr(1); in parseInt()
60 bool VersionTuple::tryParse(StringRef input) { in tryParse() argument
[all...]
/foundation/graphic/graphic_3d/lume/LumeRender/src/datastore/
H A Drender_data_store_post_process.h118 static inline BASE_NS::Math::Vec4 GetFactorTonemap(const PostProcessConfiguration& input) in GetFactorTonemap() argument
120 return { input.tonemapConfiguration.exposure, 0.0f, 0.0f, in GetFactorTonemap()
121 static_cast<float>(input.tonemapConfiguration.tonemapType) }; in GetFactorTonemap()
124 static inline BASE_NS::Math::Vec4 GetFactorVignette(const PostProcessConfiguration& input) in GetFactorVignette() argument
126 return { input.vignetteConfiguration.coefficient, input.vignetteConfiguration.power, 0.0f, 0.0f }; in GetFactorVignette()
129 static inline BASE_NS::Math::Vec4 GetFactorDither(const PostProcessConfiguration& input) in GetFactorDither() argument
131 return { input.ditherConfiguration.amountCoefficient, 0, 0, in GetFactorDither()
132 static_cast<float>(input.ditherConfiguration.ditherType) }; in GetFactorDither()
135 static inline BASE_NS::Math::Vec4 GetFactorColorConversion(const PostProcessConfiguration& input) in GetFactorColorConversion() argument
140 GetFactorFringe(const PostProcessConfiguration& input) GetFactorFringe() argument
146 GetFactorBlur(const PostProcessConfiguration& input) GetFactorBlur() argument
152 GetFactorBloom(const PostProcessConfiguration& input) GetFactorBloom() argument
158 GetFactorFxaa(const PostProcessConfiguration& input) GetFactorFxaa() argument
164 GetFactorTaa(const PostProcessConfiguration& input) GetFactorTaa() argument
171 GetFactorDof(const PostProcessConfiguration& input) GetFactorDof() argument
181 GetFactorDof2(const PostProcessConfiguration& input) GetFactorDof2() argument
187 GetFactorMotionBlur(const PostProcessConfiguration& input) GetFactorMotionBlur() argument
[all...]
/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/kvdb/src/
H A Dkv_types_util.cpp36 bool Marshalling(const AppId &input, MessageParcel &data) in Marshalling() argument
38 return ITypesUtil::Marshalling(input.appId, data); in Marshalling()
48 bool Marshalling(const StoreId &input, MessageParcel &data) in Marshalling() argument
50 return ITypesUtil::Marshalling(input.storeId, data); in Marshalling()
106 bool Marshalling(const Options &input, MessageParcel &data) in Marshalling() argument
108 if (!ITypesUtil::Marshal(data, input.schema, input.hapName, input.policies, input.cloudConfig.enableCloud, in Marshalling()
109 input in Marshalling()
160 Marshalling(const AuthType &input, MessageParcel &data) Marshalling() argument
177 Marshalling(const SyncPolicy &input, MessageParcel &data) Marshalling() argument
189 Marshalling(const SwitchData &input, MessageParcel &data) Marshalling() argument
201 Marshalling(const Status &input, MessageParcel &data) Marshalling() argument
218 Marshalling(const Notification &input, MessageParcel &data) Marshalling() argument
236 Marshalling(const ProgressDetail &input, MessageParcel &data) Marshalling() argument
246 Marshalling(const TableDetail &input, MessageParcel &data) Marshalling() argument
256 Marshalling(const Statistic &input, MessageParcel &data) Marshalling() argument
267 Marshalling(const CloudConfig &input, MessageParcel &data) Marshalling() argument
278 Marshalling(const StoreConfig &input, MessageParcel &data) Marshalling() argument
[all...]
/foundation/graphic/graphic_2d/rosen/modules/effect/test/unittest/
H A Dinput_unittest.cpp17 #include "input.h"
37 auto input = std::make_shared<Input>(); in HWTEST_F() local
38 bool testResult = input != nullptr; in HWTEST_F()
47 input->SetValue("format", vInputFormat.lock(), 1); in HWTEST_F()
48 input->SetValue("src", vInputSrc.lock(), 1); in HWTEST_F()
64 auto input = std::make_shared<Input>(); in HWTEST_F() local
65 bool testResult = input != nullptr; in HWTEST_F()
74 input->SetValue("format", vInputFormat.lock(), 1); in HWTEST_F()
75 input->SetValue("src", vInputSrc.lock(), 1); in HWTEST_F()
91 auto input in HWTEST_F() local
123 auto input = std::make_shared<Input>(); HWTEST_F() local
162 auto input = std::make_shared<Input>(); HWTEST_F() local
197 auto input = std::make_shared<Input>(); HWTEST_F() local
227 auto input = std::make_shared<Input>(); HWTEST_F() local
254 auto input = std::make_shared<Input>(); HWTEST_F() local
276 auto input = std::make_shared<Input>(); HWTEST_F() local
298 auto input = std::make_shared<Input>(); HWTEST_F() local
[all...]
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/cloud/
H A Dcloud_types_util.cpp20 bool Marshalling(const Participant &input, MessageParcel &data) in Marshalling() argument
23 data, input.identity, input.role, input.state, input.privilege, input.attachInfo); in Marshalling()
34 bool Marshalling(const Privilege &input, MessageParcel &data) in Marshalling() argument
36 return ITypesUtil::Marshal(data, input.writable, input.readable, in Marshalling()
37 input in Marshalling()
48 Marshalling(const Asset &input, MessageParcel &data) Marshalling() argument
58 Marshalling(const ValueObject &input, MessageParcel &data) Marshalling() argument
68 Marshalling(const ValuesBucket &input, MessageParcel &data) Marshalling() argument
79 Marshalling(const StatisticInfo &input, MessageParcel &data) Marshalling() argument
102 Marshalling(const CloudSyncInfo &input, MessageParcel &data) Marshalling() argument
[all...]
/third_party/astc-encoder/Source/
H A Dastcenc_color_unquantize.cpp31 * @param input The input color that has been blue-contracted.
36 vint4 input in uncontract_color()
39 vint4 bc0 = asr<1>(input + input.lane<2>()); in uncontract_color()
40 return select(input, bc0, mask); in uncontract_color()
179 * @param input The packed endpoints.
184 const uint8_t input[2], in luminance_unpack()
188 int lum0 = input[0]; in luminance_unpack()
189 int lum1 = input[ in luminance_unpack()
183 luminance_unpack( const uint8_t input[2], vint4& output0, vint4& output1 ) luminance_unpack() argument
203 luminance_delta_unpack( const uint8_t input[2], vint4& output0, vint4& output1 ) luminance_delta_unpack() argument
226 luminance_alpha_unpack( const uint8_t input[4], vint4& output0, vint4& output1 ) luminance_alpha_unpack() argument
246 luminance_alpha_delta_unpack( const uint8_t input[4], vint4& output0, vint4& output1 ) luminance_alpha_delta_unpack() argument
292 hdr_rgbo_unpack( const uint8_t input[4], vint4& output0, vint4& output1 ) hdr_rgbo_unpack() argument
442 hdr_rgb_unpack( const uint8_t input[6], vint4& output0, vint4& output1 ) hdr_rgb_unpack() argument
608 hdr_rgb_ldr_alpha_unpack( const uint8_t input[8], vint4& output0, vint4& output1 ) hdr_rgb_ldr_alpha_unpack() argument
628 hdr_luminance_small_range_unpack( const uint8_t input[2], vint4& output0, vint4& output1 ) hdr_luminance_small_range_unpack() argument
665 hdr_luminance_large_range_unpack( const uint8_t input[2], vint4& output0, vint4& output1 ) hdr_luminance_large_range_unpack() argument
696 hdr_alpha_unpack( const uint8_t input[2], int& output0, int& output1 ) hdr_alpha_unpack() argument
747 hdr_rgb_hdr_alpha_unpack( const uint8_t input[8], vint4& output0, vint4& output1 ) hdr_rgb_hdr_alpha_unpack() argument
762 unpack_color_endpoints( astcenc_profile decode_mode, int format, const uint8_t* input, bool& rgb_hdr, bool& alpha_hdr, vint4& output0, vint4& output1 ) unpack_color_endpoints() argument
[all...]

Completed in 14 milliseconds

12345678910>>...160