/third_party/spirv-tools/source/opt/ |
H A D | scalar_replacement_pass.h | 122 // Transfers appropriate decorations from |source| to |replacements|. 148 // |inst| and the load is not from volatile memory. 164 // Creates a variable of type |typeId| from the |index|'th element of 217 // variable from the original store data input. Returns true if successful. 224 // scalarized variable from the original DebugDeclare. Returns true if 231 // Generates a DebugValue for each element in the scalarized variable from 265 // Copies all relevant decorations from `from` to `to`. This includes 268 // `member_index`th member of `from`. 269 void CopyDecorationsToVariable(Instruction* from, Instructio [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/drivers/ |
H A D | netlink.c | 41 struct sockaddr_nl from; in netlink_receive() local 47 fromlen = sizeof(from); in netlink_receive() 49 (struct sockaddr *) &from, &fromlen); in netlink_receive()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/drivers/ |
H A D | netlink.c | 41 struct sockaddr_nl from; in netlink_receive() local 47 fromlen = sizeof(from); in netlink_receive() 49 (struct sockaddr *) &from, &fromlen); in netlink_receive()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/common/ |
H A D | rs_vector4.h | 157 auto from = *this; in Slerp() local 159 double cosHalfAngle = from.x_ * to.x_ + from.y_ * to.y_ + from.z_ * to.z_ + from.w_ * to.w_; in Slerp() 166 from = from.Flip(); in Slerp() 186 return (from * scaleA) + (to * scaleB); in Slerp()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/sfc/ |
H A D | bitfield.h | 21 * of the quantities that we deal with are DMAed to/from host memory, 109 * Extract bit field portion [low,high) from the native-endian element 130 * Extract bit field portion [low,high) from the 64-bit little-endian 137 * Extract bit field portion [low,high) from the 32-bit little-endian 451 #define EFX_AND_OWORD(oword, from, mask) \ 453 (oword).u64[0] = (from).u64[0] & (mask).u64[0]; \ 454 (oword).u64[1] = (from).u64[1] & (mask).u64[1]; \ 457 #define EFX_AND_QWORD(qword, from, mask) \ 458 (qword).u64[0] = (from).u64[0] & (mask).u64[0] 460 #define EFX_OR_OWORD(oword, from, mas [all...] |
/kernel/linux/linux-6.6/arch/x86/kernel/ |
H A D | signal_64.c | 186 /* Set up to return from userspace. If provided, use a stub in x64_setup_rt_frame() 281 const struct kernel_siginfo *from) in x32_copy_siginfo_to_user() 285 copy_siginfo_to_external32(&new, from); in x32_copy_siginfo_to_user() 286 if (from->si_signo == SIGCHLD) { in x32_copy_siginfo_to_user() 287 new._sifields._sigchld_x32._utime = from->si_utime; in x32_copy_siginfo_to_user() 288 new._sifields._sigchld_x32._stime = from->si_stime; in x32_copy_siginfo_to_user() 296 const struct kernel_siginfo *from) in copy_siginfo_to_user32() 299 return x32_copy_siginfo_to_user(to, from); in copy_siginfo_to_user32() 300 return __copy_siginfo_to_user32(to, from); in copy_siginfo_to_user32() 280 x32_copy_siginfo_to_user(struct compat_siginfo __user *to, const struct kernel_siginfo *from) x32_copy_siginfo_to_user() argument 295 copy_siginfo_to_user32(struct compat_siginfo __user *to, const struct kernel_siginfo *from) copy_siginfo_to_user32() argument
|
/third_party/protobuf/java/compatibility_tests/v2.5.0/tests/src/main/java/com/google/protobuf/test/ |
H A D | ByteStringTest.java | 16 // contributors may be used to endorse or promote products derived from 160 assertEquals("copyFrom from an Iteration must contain the expected bytes", in testCopyFrom_Iterable() 244 // Fails unless ByteString.readFrom reads the bytes correctly from a 377 "String built from newOutput(int) must contain the expected bytes", in testNewOutput_InitialCapacity() 398 assertTrue("String built from newOutput() must contain the expected bytes", in testNewOutput_ArrayWrite() 418 assertTrue("String built from newOutput() must contain the expected bytes", in testNewOutput_WriteChar() 453 assertTrue("String built from newOutput() must contain the expected bytes", in testNewOutput_Mixed() 502 int from = 1000; in testCompositeSubstring() 504 ByteString compositeSubstring = listString.substring(from, to); in testCompositeSubstring() 507 for (int i = 0; stillEqual && i < to - from; in testCompositeSubstring() [all...] |
/kernel/linux/linux-5.10/include/linux/ |
H A D | of.h | 12 * Derived from PowerPC and Sparc prom.h files by Stephen Rothwell, IBM Corp. 144 #define OF_DETACHED 2 /* detached from the device tree */ 264 #define for_each_of_allnodes_from(from, dn) \ 265 for (dn = __of_find_all_nodes(from); dn; dn = __of_find_all_nodes(dn)) 267 extern struct device_node *of_find_node_by_name(struct device_node *from, 269 extern struct device_node *of_find_node_by_type(struct device_node *from, 271 extern struct device_node *of_find_compatible_node(struct device_node *from, 274 struct device_node *from, 302 struct device_node *from, const char *prop_name); 478 static inline struct device_node *of_find_node_by_name(struct device_node *from, in of_find_node_by_name() argument 484 of_find_node_by_type(struct device_node *from, const char *type) of_find_node_by_type() argument 490 of_find_matching_node_and_match( struct device_node *from, const struct of_device_id *matches, const struct of_device_id **match) of_find_matching_node_and_match() argument 536 of_find_node_with_property( struct device_node *from, const char *prop_name) of_find_node_with_property() argument 591 of_find_compatible_node( struct device_node *from, const char *type, const char *compat) of_find_compatible_node() argument 898 of_find_matching_node( struct device_node *from, const struct of_device_id *matches) of_find_matching_node() argument [all...] |
/kernel/linux/linux-6.6/drivers/xen/ |
H A D | grant-table.c | 12 * separately from the Linux kernel or incorporated into other 228 unsigned int from, to; in get_free_seq() local 234 for (from = find_first_bit(gnttab_free_bitmap, gnttab_size); in get_free_seq() 235 from < gnttab_size; in get_free_seq() 236 from = find_next_bit(gnttab_free_bitmap, gnttab_size, to + 1)) { in get_free_seq() 238 from + 1); in get_free_seq() 239 if (ret < 0 && to - from >= count) { in get_free_seq() 240 ret = from; in get_free_seq() 242 from += count; in get_free_seq() 244 if (from in get_free_seq() [all...] |
/kernel/linux/linux-6.6/include/linux/ |
H A D | of.h | 12 * Derived from PowerPC and Sparc prom.h files by Stephen Rothwell, IBM Corp. 149 #define OF_DETACHED 2 /* detached from the device tree */ 269 #define for_each_of_allnodes_from(from, dn) \ 270 for (dn = __of_find_all_nodes(from); dn; dn = __of_find_all_nodes(dn)) 272 extern struct device_node *of_find_node_by_name(struct device_node *from, 274 extern struct device_node *of_find_node_by_type(struct device_node *from, 276 extern struct device_node *of_find_compatible_node(struct device_node *from, 279 struct device_node *from, 307 struct device_node *from, const char *prop_name); 486 static inline struct device_node *of_find_node_by_name(struct device_node *from, in of_find_node_by_name() argument 492 of_find_node_by_type(struct device_node *from, const char *type) of_find_node_by_type() argument 498 of_find_matching_node_and_match( struct device_node *from, const struct of_device_id *matches, const struct of_device_id **match) of_find_matching_node_and_match() argument 544 of_find_node_with_property( struct device_node *from, const char *prop_name) of_find_node_with_property() argument 599 of_find_compatible_node( struct device_node *from, const char *type, const char *compat) of_find_compatible_node() argument 913 of_find_matching_node( struct device_node *from, const struct of_device_id *matches) of_find_matching_node() argument [all...] |
/third_party/rust/crates/bindgen/bindgen/ |
H A D | clang.rs | 29 // FIXME(emilio): clang-sys doesn't expose `CXCursor_WarnUnusedResultAttr` (from clang 9). 804 Err(LayoutError::from(offset as i32)) in offset_of_field() 880 /// A struct that owns the tokenizer result from a given cursor. 939 /// The extent of the token. This is the same as the relevant member from 942 /// The kind of the token. This is the same as the relevant member from 1098 fn from(val: i32) -> Self { in from() functions 1222 Err(LayoutError::from(val as i32)) in fallible_size() 1246 Err(LayoutError::from(val as i32)) in fallible_align() 1392 /// disambiguate types from local bindings), get the underlying type. 1961 String::from(prefi in ast_dump() [all...] |
/third_party/libphonenumber/cpp/src/phonenumbers/ |
H A D | phonemetadata.pb.h | 87 NumberFormat(const NumberFormat& from); 88 NumberFormat(NumberFormat&& from) noexcept 90 *this = ::std::move(from); in NumberFormat() 93 inline NumberFormat& operator=(const NumberFormat& from) { in operator =() argument 94 CopyFrom(from); in operator =() 97 inline NumberFormat& operator=(NumberFormat&& from) noexcept { 98 if (GetArena() == from.GetArena()) { 99 if (this != &from) InternalSwap(&from); variable 101 CopyFrom(from); variable 344 operator =(const PhoneNumberDesc& from) operator =() argument 350 if (this != &from) InternalSwap(&from); global() variable 352 CopyFrom(from); global() variable 555 operator =(const PhoneMetadata& from) operator =() argument 561 if (this != &from) InternalSwap(&from); global() variable 563 CopyFrom(from); global() variable 1290 operator =(const PhoneMetadataCollection& from) operator =() argument 1296 if (this != &from) InternalSwap(&from); global() variable 1298 CopyFrom(from); global() variable [all...] |
/kernel/linux/linux-5.10/kernel/bpf/ |
H A D | core.c | 250 /* We keep fp->aux from fp_old around in the new in bpf_prog_realloc() 293 * since they are unstable from user space side. in bpf_prog_calc_tag() 479 * 1) Move over tail of insnsi from next instruction onwards, in bpf_patch_insn_single() 481 * new ones (patching is always from 1 to n insns, n > 0). in bpf_patch_insn_single() 944 * can pick them up from prog->aux. in bpf_jit_get_func_addr() 966 static int bpf_jit_blind_insn(const struct bpf_insn *from, in bpf_jit_blind_insn() argument 980 * AX register is inaccessible from user space. It is mapped in in bpf_jit_blind_insn() 995 if (from->dst_reg == BPF_REG_AX || from->src_reg == BPF_REG_AX) in bpf_jit_blind_insn() 998 if (from in bpf_jit_blind_insn() [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | OlsonTimeZone.java | 39 * from 0..n-1, where n is the number of zones, with the zones sorted 58 * List of transition times represented by 32bit seconds from the 108 * from the complex zone element 5, and the ID string, which is not 110 * scale from seconds to milliseconds. 114 * (UN M.49 - World). This data is generated from "zone.tab" 119 // Generated by serialver from JDK 1.4.1_01 161 // Compute local epoch millis from input fields in getOffset() 307 // observed from 1943 to the present, most clients will expect in useDaylightTime() 476 * Construct from a resource bundle 684 // Linear search from th in getHistoricalOffset() [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | OlsonTimeZone.java | 40 * from 0..n-1, where n is the number of zones, with the zones sorted 59 * List of transition times represented by 32bit seconds from the 109 * from the complex zone element 5, and the ID string, which is not 111 * scale from seconds to milliseconds. 115 * (UN M.49 - World). This data is generated from "zone.tab" 121 // Generated by serialver from JDK 1.4.1_01 163 // Compute local epoch millis from input fields in getOffset() 309 // observed from 1943 to the present, most clients will expect in useDaylightTime() 478 * Construct from a resource bundle 686 // Linear search from th in getHistoricalOffset() [all...] |
/third_party/icu/icu4c/source/i18n/ |
H A D | olsontz.cpp | 114 * Construct from a resource bundle 381 // Compute local epoch millis from input fields in getOffset() 491 // Linear search from the end is the fastest approach, since in getHistoricalOffset() 561 // observed from 1943 to the present, most clients will expect in useDaylightTime() 816 * getting offset from finalZone has some problems. in initTransitionRules() 924 TimeZoneRule *from = historicRules[typeMapData[ttidx]]; in getNextTransition() local 927 // The transitions loaded from zoneinfo.res may contain non-transition data in getNextTransition() 929 from->getName(fromName); in getNextTransition() 931 if (fromName == toName && from->getRawOffset() == to->getRawOffset() in getNextTransition() 932 && from in getNextTransition() 985 TimeZoneRule *from = historicRules[typeMapData[ttidx-1]]; getPreviousTransition() local [all...] |
/third_party/node/deps/icu-small/source/i18n/ |
H A D | olsontz.cpp | 114 * Construct from a resource bundle 381 // Compute local epoch millis from input fields in getOffset() 491 // Linear search from the end is the fastest approach, since in getHistoricalOffset() 561 // observed from 1943 to the present, most clients will expect in useDaylightTime() 816 * getting offset from finalZone has some problems. in initTransitionRules() 924 TimeZoneRule *from = historicRules[typeMapData[ttidx]]; in getNextTransition() local 927 // The transitions loaded from zoneinfo.res may contain non-transition data in getNextTransition() 929 from->getName(fromName); in getNextTransition() 931 if (fromName == toName && from->getRawOffset() == to->getRawOffset() in getNextTransition() 932 && from in getNextTransition() 985 TimeZoneRule *from = historicRules[typeMapData[ttidx-1]]; getPreviousTransition() local [all...] |
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | olsontz.cpp | 114 * Construct from a resource bundle 381 // Compute local epoch millis from input fields in getOffset() 492 // Linear search from the end is the fastest approach, since in getHistoricalOffset() 562 // observed from 1943 to the present, most clients will expect in useDaylightTime() 817 * getting offset from finalZone has some problems. in initTransitionRules() 925 TimeZoneRule *from = historicRules[typeMapData[ttidx]]; in getNextTransition() local 928 // The transitions loaded from zoneinfo.res may contain non-transition data in getNextTransition() 930 from->getName(fromName); in getNextTransition() 932 if (fromName == toName && from->getRawOffset() == to->getRawOffset() in getNextTransition() 933 && from in getNextTransition() 986 TimeZoneRule *from = historicRules[typeMapData[ttidx-1]]; getPreviousTransition() local [all...] |
/third_party/backends/backend/ |
H A D | microtek2.c | 103 static int md_num_devices = 0; /* number of devices from config file */ 111 static int md_dump = 0; /* from config file: */ 150 /* remove Scanner from linked list */ in sane_close() 237 /* this is hack to get the list freed with a call from sane_exit() */ in sane_get_devices() 314 int bits_pp_in; /* bits per pixel from scanner */ in sane_get_parameters() 757 /* This function is called from sane_init() to do the inquiry and to read */ in attach() 760 /* from sane_open() or sane_get_devices(). */ in attach() 1671 DBG(1, "Scanner attributes from device structure\n"); in dump_attributes() 1898 /* builds a list of device names with associated options from the */ in parse_config_file() 4012 /* when transferred from th in get_scan_mode_and_depth() 7075 uint8_t *from; set_exposure() local 7279 uint8_t *from; chunky_proc_data() local 7341 chunky_copy_pixels(Microtek2_Scanner *ms, uint8_t *from) chunky_copy_pixels() argument 7398 uint8_t *from; segreg_proc_data() local 7679 uint8_t *from[3]; lplconcat_proc_data() local 7735 lplconcat_copy_pixels(Microtek2_Scanner *ms, uint8_t **from, int right_to_left, int gamma_by_backend) lplconcat_copy_pixels() argument 7868 uint8_t *from; wordchunky_proc_data() local 7890 wordchunky_copy_pixels(uint8_t *from, uint32_t pixels, int depth, FILE *fp) wordchunky_copy_pixels() argument 7954 uint8_t *from; gray_proc_data() local 7994 gray_copy_pixels(Microtek2_Scanner *ms, uint8_t *from, int right_to_left, int gamma_by_backend) gray_copy_pixels() argument 8105 uint8_t *from; proc_onebit_data() local 8189 uint8_t *from; lineartfake_proc_data() local 8226 lineartfake_copy_pixels(Microtek2_Scanner *ms, uint8_t *from, uint32_t pixels, uint8_t threshold, int right_to_left, FILE *fp) lineartfake_copy_pixels() argument 8308 uint8_t *from; auto_adjust_proc_data() local [all...] |
/foundation/arkui/ace_engine/frameworks/core/components_ng/property/ |
H A D | particle_property_animation.h | 30 void SetFrom(T& from) in SetFrom() 32 from_ = from; in SetFrom()
|
/foundation/arkui/ace_engine_lite/frameworks/packages/runtime-core/src/core/ |
H A D | index.js | 15 import { Observer, Subject } from '../observer'; 25 } from '../profiler';
|
/foundation/window/window_manager/test/common/mock/ |
H A D | mock_RSIWindowAnimationController.h | 55 void OnAppTransition(const sptr<RSWindowAnimationTarget>& from, const sptr<RSWindowAnimationTarget>& to, in OnAppTransition() argument 61 void OnAppBackTransition(const sptr<RSWindowAnimationTarget>& from, const sptr<RSWindowAnimationTarget>& to, in OnAppBackTransition() argument
|
/foundation/communication/netstack/interfaces/innerkits/rust/ylong_http_client/src/reqwest_impl/async_impl/ |
H A D | mod.rs | 78 /// from a RequestBuilder with `RequestBuilder::build()`. 113 .map_err(HttpClientError::from) 172 /// The timeout is applied from when the request starts connecting until the 366 self.0.build().map(Client).map_err(HttpClientError::from) in build()
|
/foundation/distributeddatamgr/preferences/test/js/unittest/storage/src/ |
H A D | StorageHelperJsunit.test.js | 16 import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from 'deccjsunit/index' 17 import storage from '@ohos.data.storage'
|
/foundation/filemanagement/app_file_service/tests/mock/b_filesystem/ |
H A D | b_file_mock.cpp | 82 bool BFile::CopyFile(const string &from, const string &to) in CopyFile() argument 87 bool BFile::MoveFile(const string &from, const string &to) in MoveFile() argument
|