/external/flac/oss-fuzz/ |
D | encoder.cc | 69 const bool res = encoder.set_streamable_subset(ds.Get<bool>()); in LLVMFuzzerTestOneInput() local 73 const bool res = encoder.set_ogg_serial_number(ds.Get<long>()); in LLVMFuzzerTestOneInput() local 77 const bool res = encoder.set_verify(ds.Get<bool>()); in LLVMFuzzerTestOneInput() local 81 const bool res = encoder.set_compression_level(ds.Get<uint8_t>()); in LLVMFuzzerTestOneInput() local 85 const bool res = encoder.set_do_exhaustive_model_search(ds.Get<bool>()); in LLVMFuzzerTestOneInput() local 89 const bool res = encoder.set_do_mid_side_stereo(ds.Get<bool>()); in LLVMFuzzerTestOneInput() local 93 const bool res = encoder.set_loose_mid_side_stereo(ds.Get<bool>()); in LLVMFuzzerTestOneInput() local 98 const bool res = encoder.set_apodization(s.data()); in LLVMFuzzerTestOneInput() local 102 const bool res = encoder.set_max_lpc_order(ds.Get<uint8_t>()); in LLVMFuzzerTestOneInput() local 106 const bool res = encoder.set_qlp_coeff_precision(ds.Get<uint32_t>()); in LLVMFuzzerTestOneInput() local [all …]
|
D | reencoder.cc | 141 const bool res = encoder.set_streamable_subset(ds.Get<bool>()); in LLVMFuzzerTestOneInput() local 145 const bool res = encoder.set_ogg_serial_number(ds.Get<long>()); in LLVMFuzzerTestOneInput() local 149 const bool res = encoder.set_verify(ds.Get<bool>()); in LLVMFuzzerTestOneInput() local 153 const bool res = encoder.set_compression_level(ds.Get<uint8_t>()); in LLVMFuzzerTestOneInput() local 157 const bool res = encoder.set_do_mid_side_stereo(ds.Get<bool>()); in LLVMFuzzerTestOneInput() local 161 const bool res = encoder.set_loose_mid_side_stereo(ds.Get<bool>()); in LLVMFuzzerTestOneInput() local 165 const bool res = encoder.set_max_lpc_order(ds.Get<uint8_t>()); in LLVMFuzzerTestOneInput() local 169 const bool res = encoder.set_qlp_coeff_precision(ds.Get<uint32_t>()); in LLVMFuzzerTestOneInput() local 173 const bool res = encoder.set_do_escape_coding(ds.Get<bool>()); in LLVMFuzzerTestOneInput() local 177 const bool res = encoder.set_min_residual_partition_order(ds.Get<uint32_t>()); in LLVMFuzzerTestOneInput() local [all …]
|
D | decoder.cc | 286 const bool res = decoder.flush(); in LLVMFuzzerTestOneInput() local 295 const bool res = decoder.reset(); in LLVMFuzzerTestOneInput() local 304 const bool res = decoder.process_single(); in LLVMFuzzerTestOneInput() local 313 const bool res = decoder.process_until_end_of_metadata(); in LLVMFuzzerTestOneInput() local 322 const bool res = decoder.process_until_end_of_stream(); in LLVMFuzzerTestOneInput() local 331 const bool res = decoder.skip_single_frame(); in LLVMFuzzerTestOneInput() local 340 const bool res = decoder.seek_absolute(ds.Get<uint64_t>()); in LLVMFuzzerTestOneInput() local 349 const bool res = decoder.get_md5_checking(); in LLVMFuzzerTestOneInput() local 358 const bool res = decoder.get_total_samples(); in LLVMFuzzerTestOneInput() local 367 const bool res = decoder.get_channels(); in LLVMFuzzerTestOneInput() local [all …]
|
/external/rust/android-crates-io/crates/nix/src/ |
D | unistd.rs | 289 let res = unsafe { libc::fork() }; localVariable 328 let res = unsafe { libc::setpgid(pid.into(), pgid.into()) }; localVariable 336 let res = unsafe { libc::getpgid(pid.unwrap_or(Pid(0)).into()) }; localVariable 355 let res = unsafe { libc::getsid(pid.unwrap_or(Pid(0)).into()) }; localVariable 369 let res = unsafe { libc::tcgetpgrp(fd.as_fd().as_raw_fd()) }; localVariable 379 let res = unsafe { libc::tcsetpgrp(fd.as_fd().as_raw_fd(), pgrp.into()) }; localVariable 427 let res = unsafe { libc::dup(oldfd) }; localVariable 440 let res = unsafe { libc::dup2(oldfd, newfd) }; localVariable 459 let res = unsafe { libc::dup3(oldfd, newfd, flags.bits()) }; localVariable 471 let res = localVariable [all …]
|
D | fcntl.rs | 383 let res = old_path.with_nix_path(|old_cstr| { localVariable 432 let res = old_path.with_nix_path(|old_cstr| { localVariable 489 let res = readlink_maybe_at(dirfd, path, &mut v)?; localVariable 546 let res = readlink_maybe_at(dirfd, path, &mut v)?; localVariable 724 let res = unsafe { localVariable 773 let res = libc::fcntl(fd, libc::F_GETPATH, buffer.as_mut_ptr()); localVariable 783 let res = libc::fcntl(fd, libc::F_KINFO, &mut info); localVariable 794 let res = libc::fcntl(fd, libc::F_GETPATH_NOFIRMLINK, buffer.as_mut_ptr()); localVariable 832 let res = unsafe { localVariable 868 let res = Errno::result(unsafe { libc::flock(self.0.as_raw_fd(), libc::LOCK_UN) }); localVariable [all …]
|
/external/rust/android-crates-io/crates/axum/src/routing/tests/ |
D | nest.rs | 44 let res = client.get("/").send().await; in nesting_apps() localVariable 48 let res = client.get("/v0/api/users").send().await; in nesting_apps() localVariable 52 let res = client.get("/v0/api/users/123").send().await; in nesting_apps() localVariable 56 let res = client.get("/v0/api/games/123").send().await; in nesting_apps() localVariable 68 let res = client.get("/").send().await; in wrong_method_nest() localVariable 71 let res = client.post("/").send().await; in wrong_method_nest() localVariable 75 let res = client.patch("/foo").send().await; in wrong_method_nest() localVariable 86 let res = client.get("/").send().await; in nesting_router_at_root() localVariable 89 let res = client.get("/foo").send().await; in nesting_router_at_root() localVariable 93 let res = client.get("/foo/bar").send().await; in nesting_router_at_root() localVariable [all …]
|
D | merge.rs | 16 let res = client.get("/foo").send().await; in basic() localVariable 19 let res = client.get("/bar").send().await; in basic() localVariable 22 let res = client.get("/baz").send().await; in basic() localVariable 25 let res = client.get("/qux").send().await; in basic() localVariable 67 let res = client.get(&format!("/{n}")).send().await; in multiple_ors_balanced_differently() localVariable 98 let res = client.get("/one").send().await; in or_with_route_following() localVariable 101 let res = client.get("/two").send().await; in or_with_route_following() localVariable 104 let res = client.get("/three").send().await; in or_with_route_following() localVariable 118 let res = client.get("/foo").send().await; in layer() localVariable 121 let res = client.get("/bar").send().await; in layer() localVariable [all …]
|
D | mod.rs | 65 let res = client.get("/").send().await; in hello_world() localVariable 69 let res = client.post("/").send().await; in hello_world() localVariable 73 let res = client.post("/users").send().await; in hello_world() localVariable 94 let res = client.get("/").send().await; in routing() localVariable 97 let res = client.get("/users").send().await; in routing() localVariable 101 let res = client.post("/users").send().await; in routing() localVariable 105 let res = client.get("/users/1").send().await; in routing() localVariable 109 let res = client.get("/users/1/action").send().await; in routing() localVariable 130 let res = client.get("/").send().await; in router_type_doesnt_change() localVariable 134 let res = client.post("/").send().await; in router_type_doesnt_change() localVariable [all …]
|
D | fallback.rs | 16 let res = client.get("/does-not-exist").send().await; in basic() localVariable 31 let res = client.get("/does-not-exist").send().await; in nest() localVariable 48 let res = client.get("/does-not-exist").send().await; in or() localVariable 61 let res = client.get("/does-not-exist").send().await; in fallback_accessing_state() localVariable 81 let res = client.get("/foo/bar").send().await; in nested_router_inherits_fallback() localVariable 93 let res = client.get("/foo/bar").send().await; in doesnt_inherit_fallback_if_overriden() localVariable 97 let res = client.get("/").send().await; in doesnt_inherit_fallback_if_overriden() localVariable 110 let res = client.get("/foo/bar/baz").send().await; in deeply_nested_inherit_from_top() localVariable 126 let res = client.get("/foo/bar/baz").send().await; in deeply_nested_inherit_from_middle() localVariable 142 let res = client.get("/foo/bar").send().await; in with_middleware_on_inner_fallback() localVariable [all …]
|
/external/rust/android-crates-io/crates/icu_collections/tests/ |
D | char16trie.rs | 15 let res = trie.iter().next('h'); in empty() localVariable 28 let res = iter.next('h'); in a() localVariable 32 let res = iter.next('a'); in a() localVariable 34 let res = iter.next('a'); in a() localVariable 47 let res = iter.next('a'); in a_b() localVariable 49 let res = iter.next('a'); in a_b() localVariable 53 let res = iter.next('a'); in a_b() localVariable 55 let res = iter.next('b'); in a_b() localVariable 57 let res = iter.next('b'); in a_b() localVariable 71 let res = iter.next('a'); in shortest_branch() localVariable [all …]
|
/external/python/cpython3/Python/ |
D | optimizer_cases.c.h | 72 _Py_UopsSymbol *res; variable 92 _Py_UopsSymbol *res; variable 100 _Py_UopsSymbol *res; variable 109 _Py_UopsSymbol *res; variable 124 _Py_UopsSymbol *res; variable 141 _Py_UopsSymbol *res; variable 158 _Py_UopsSymbol *res; variable 175 _Py_UopsSymbol *res; variable 192 _Py_UopsSymbol *res; variable 208 _Py_UopsSymbol *res; variable [all …]
|
/external/deqp/external/vulkancts/framework/vulkan/generated/vulkan/ |
D | vkTypeUtil.inl | 9 VkOffset2D res; local 17 VkOffset3D res; local 26 VkExtent2D res; local 34 VkExtent3D res; local 43 VkViewport res; local 55 VkComponentMapping res; local 65 VkAllocationCallbacks res; local 77 VkMemoryRequirements res; local 86 VkDescriptorBufferInfo res; local 95 VkDescriptorImageInfo res; local [all …]
|
/external/skia/infra/bots/recipe_modules/flavor/resources/ |
D | win_run_and_check_log.ps1 | 18 $res = $LastExitCode variable 24 if ($res -ne 0) { variable 25 $res = 1 variable 39 if ($res -eq 0) { variable 40 $res = 2 variable 45 if ($res -ne 0) { variable 47 exit $res variable
|
/external/coreboot/src/device/oprom/x86emu/ |
D | prim_ops.c | 139 static void set_parity_flag(u32 res) in set_parity_flag() 144 static void set_szp_flags_8(u8 res) in set_szp_flags_8() 151 static void set_szp_flags_16(u16 res) in set_szp_flags_16() 158 static void set_szp_flags_32(u32 res) in set_szp_flags_32() 165 static void no_carry_byte_side_eff(u8 res) in no_carry_byte_side_eff() 173 static void no_carry_word_side_eff(u16 res) in no_carry_word_side_eff() 181 static void no_carry_long_side_eff(u32 res) in no_carry_long_side_eff() 189 static void calc_carry_chain(int bits, u32 d, u32 s, u32 res, int set_carry) in calc_carry_chain() 201 static void calc_borrow_chain(int bits, u32 d, u32 s, u32 res, int set_carry) in calc_borrow_chain() 219 u16 res; in aaa_word() local [all …]
|
/external/rust/android-crates-io/crates/nix/src/sys/ |
D | prctl.rs | 36 let res = unsafe { libc::prctl(option, status as c_ulong, 0, 0, 0) }; in prctl_set_bool() localVariable 41 let res = unsafe { libc::prctl(option, 0, 0, 0, 0) }; in prctl_get_bool() localVariable 55 let res = unsafe { in get_child_subreaper() localVariable 85 let res = unsafe { in clear_mce_kill() localVariable 94 let res = unsafe { in set_mce_kill() localVariable 109 let res = unsafe { libc::prctl(libc::PR_MCE_KILL_GET, 0, 0, 0, 0) }; in get_mce_kill() localVariable 125 let res = unsafe { libc::prctl(libc::PR_SET_PDEATHSIG, sig, 0, 0, 0) }; in set_pdeathsig() localVariable 135 let res = unsafe { libc::prctl(libc::PR_GET_PDEATHSIG, &mut sig, 0, 0, 0) }; in get_pdeathsig() localVariable 148 let res = unsafe { libc::prctl(libc::PR_SET_NAME, name.as_ptr(), 0, 0, 0) }; in set_name() localVariable 158 let res = unsafe { libc::prctl(libc::PR_GET_NAME, &buf, 0, 0, 0) }; in get_name() localVariable [all …]
|
/external/eigen/unsupported/test/ |
D | bessel_functions.cpp | 34 ArrayType res(21); in array_bessel_functions() local 54 ArrayType res(21); in array_bessel_functions() local 74 ArrayType res(21); in array_bessel_functions() local 94 ArrayType res(21); in array_bessel_functions() local 114 ArrayType res(77); in array_bessel_functions() local 150 ArrayType res(81); in array_bessel_functions() local 186 ArrayType res(42); in array_bessel_functions() local 211 ArrayType res(42); in array_bessel_functions() local 238 ArrayType res(42); in array_bessel_functions() local 265 ArrayType res(42); in array_bessel_functions() local [all …]
|
/external/deqp/external/vulkancts/framework/vulkan/generated/vulkansc/ |
D | vkTypeUtil.inl | 9 VkOffset2D res; local 17 VkOffset3D res; local 26 VkExtent2D res; local 34 VkExtent3D res; local 43 VkViewport res; local 55 VkComponentMapping res; local 65 VkAllocationCallbacks res; local 77 VkMemoryRequirements res; local 86 VkDescriptorBufferInfo res; local 95 VkDescriptorImageInfo res; local [all …]
|
/external/rust/crabbyavif/tests/ |
D | decoder_tests.rs | 39 let res = decoder.parse(); in alpha_no_ispe() localVariable 44 let res = decoder.parse(); in alpha_no_ispe() localVariable 52 let res = decoder.next_image(); in alpha_no_ispe() localVariable 63 let res = decoder.parse(); in alpha_premultiplied() localVariable 71 let res = decoder.next_image(); in alpha_premultiplied() localVariable 86 let res = decoder.parse(); in animated_image() localVariable 111 let res = decoder.parse(); in animated_image_with_source_set_to_primary_item() localVariable 136 let res = decoder.parse(); in animated_image_with_alpha_and_metadata() localVariable 158 let res = decoder.parse(); in animated_image_with_depth_and_metadata() localVariable 181 let res = decoder.parse(); in animated_image_with_depth_and_metadata_source_set_to_primary_item() localVariable [all …]
|
/external/rust/android-crates-io/crates/h2/src/hpack/ |
D | encoder.rs | 307 let res = encode(&mut encoder, vec![method("GET")]); in test_encode_method_get() localVariable 315 let res = encode(&mut encoder, vec![method("POST")]); in test_encode_method_post() localVariable 323 let res = encode(&mut encoder, vec![method("PATCH")]); in test_encode_method_patch() localVariable 331 let res = encode(&mut encoder, vec![method("PATCH")]); in test_encode_method_patch() localVariable 340 let res = encode(&mut encoder, vec![header("content-language", "foo")]); in test_encode_indexed_name_literal_value() localVariable 348 let res = encode(&mut encoder, vec![header("content-language", "bar")]); in test_encode_indexed_name_literal_value() localVariable 357 let res = encode(&mut encoder, vec![header("foo", "hello")]); in test_repeated_headers_are_indexed() localVariable 367 let res = encode(&mut encoder, vec![header("foo", "hello")]); in test_repeated_headers_are_indexed() localVariable 380 let res = encode(&mut encoder, vec![header(&key, &key)]); in test_evicting_headers() localVariable 389 let res = encode(&mut encoder, vec![header(&key, &key)]); in test_evicting_headers() localVariable [all …]
|
/external/perfetto/src/trace_processor/perfetto_sql/engine/ |
D | perfetto_sql_engine_unittest.cc | 51 auto res = engine_.Execute(SqlSource::FromExecuteQuery( in TEST_F() local 62 auto res = engine_.ExecuteUntilLastStatement( in TEST_F() local 73 auto res = engine_.ExecuteUntilLastStatement( in TEST_F() local 81 auto res = engine_.Execute(SqlSource::FromExecuteQuery( in TEST_F() local 95 auto res = engine_.Execute(SqlSource::FromExecuteQuery( in TEST_F() local 102 auto res = engine_.Execute(SqlSource::FromExecuteQuery( in TEST_F() local 119 auto res = engine_.Execute(SqlSource::FromExecuteQuery( in TEST_F() local 125 auto res = engine_.Execute(SqlSource::FromExecuteQuery( in TEST_F() local 131 auto res = engine_.Execute(SqlSource::FromExecuteQuery( in TEST_F() local 143 auto res = engine_.Execute( in TEST_F() local [all …]
|
/external/mesa3d/src/gallium/drivers/zink/ |
D | zink_resource.h | 85 zink_resource_has_binds(const struct zink_resource *res) in zink_resource_has_binds() 91 zink_is_swapchain(const struct zink_resource *res) in zink_is_swapchain() 108 zink_resource_usage_is_unflushed(const struct zink_resource *res) in zink_resource_usage_is_unflushed() 114 zink_resource_usage_is_unflushed_write(const struct zink_resource *res) in zink_resource_usage_is_unflushed_write() 121 zink_resource_usage_matches(const struct zink_resource *res, const struct zink_batch_state *bs) in zink_resource_usage_matches() 127 zink_resource_has_usage(const struct zink_resource *res) in zink_resource_has_usage() 133 zink_resource_has_unflushed_usage(const struct zink_resource *res) in zink_resource_has_unflushed_usage() 139 zink_resource_usage_check_completion(struct zink_screen *screen, struct zink_resource *res, enum zi… in zink_resource_usage_check_completion() 145 zink_resource_usage_check_completion_fast(struct zink_screen *screen, struct zink_resource *res, en… in zink_resource_usage_check_completion_fast() 151 zink_resource_usage_try_wait(struct zink_context *ctx, struct zink_resource *res, enum zink_resourc… in zink_resource_usage_try_wait() [all …]
|
/external/pytorch/c10/core/ |
D | SymFloat.cpp | 45 auto res = normalize_symfloats(*this, sci); in operator +() local 53 auto res = normalize_symfloats(*this, sci); in operator -() local 61 auto res = normalize_symfloats(*this, sci); in operator *() local 69 auto res = normalize_symfloats(*this, sci); in operator /() local 77 auto res = normalize_symfloats(*this, sci); in sym_eq() local 85 auto res = normalize_symfloats(*this, sci); in sym_ne() local 93 auto res = normalize_symfloats(*this, sci); in sym_lt() local 101 auto res = normalize_symfloats(*this, sci); in sym_le() local 109 auto res = normalize_symfloats(*this, sci); in sym_gt() local 117 auto res = normalize_symfloats(*this, sci); in sym_ge() local [all …]
|
/external/perfetto/src/trace_processor/perfetto_sql/parser/ |
D | perfetto_sql_parser_unittest.cc | 69 SqlSource res = SqlSource::FromExecuteQuery("SELECT * FROM slice;"); in TEST_F() local 77 auto res = in TEST_F() local 91 auto res = SqlSource::FromExecuteQuery(" ; SELECT * FROM s; ; ;"); in TEST_F() local 100 auto res = SqlSource::FromExecuteQuery( in TEST_F() local 158 auto res = SqlSource::FromExecuteQuery( in TEST_F() local 174 auto res = SqlSource::FromExecuteQuery( in TEST_F() local 188 auto res = SqlSource::FromExecuteQuery( in TEST_F() local 215 auto res = in TEST_F() local 221 auto res = SqlSource::FromExecuteQuery( in TEST_F() local 227 auto res = in TEST_F() local [all …]
|
/external/crosvm/serde_keyvalue/src/ |
D | key_values.rs | 951 let res = from_key_values::<SingleStruct<usize>>("m=54").unwrap(); in deserialize_number() localVariable 954 let res = from_key_values::<SingleStruct<isize>>("m=-54").unwrap(); in deserialize_number() localVariable 958 let res = from_key_values::<SingleStruct<u32>>("m=-54").unwrap_err(); in deserialize_number() localVariable 969 let res = from_key_values::<SingleStruct<i32>>(&format!("m={}", val)).unwrap_err(); in deserialize_number() localVariable 979 let res = from_key_values::<SingleStruct<usize>>("m=test").unwrap_err(); in deserialize_number() localVariable 989 let res: SingleStruct<usize> = in deserialize_number() localVariable 992 let res: SingleStruct<isize> = in deserialize_number() localVariable 997 let res: ParseError = from_key_values::<SingleStruct<usize>>("m=0xg").unwrap_err(); in deserialize_number() localVariable 1007 let res: SingleStruct<usize> = from_key_values::<SingleStruct<usize>>("m=0o755").unwrap(); in deserialize_number() localVariable 1009 let res: SingleStruct<isize> = from_key_values::<SingleStruct<isize>>("m=-0o755").unwrap(); in deserialize_number() localVariable [all …]
|
/external/sdv/vsomeip/third_party/boost/thread/example/ |
D | future_when_all.cpp | 110 boost::csbl::tuple<boost::future<int> > res = all.get(); in main() local 121 boost::csbl::tuple<boost::future<int> > res = all.get(); in main() local 130 boost::csbl::tuple<boost::future<int> > res = all.get(); in main() local 140 boost::csbl::tuple<boost::future<int>,boost::future<int> > res = all.get(); in main() local 152 boost::csbl::tuple<boost::future<int>, boost::future<std::string> > res = all.get(); in main() local 168 boost::csbl::vector<boost::future<int> > res = all.get(); in main() local 200 boost::csbl::tuple<boost::future<int> > res = all.get(); in main() local 209 boost::csbl::tuple<boost::future<int> > res = all.get(); in main() local 219 boost::csbl::tuple<boost::future<int>,boost::future<int> > res = all.get(); in main() local 230 boost::csbl::tuple<boost::future<int>,boost::future<int> > res = all.get(); in main() local [all …]
|