Home
last modified time | relevance | path

Searched refs:from (Results 1651 - 1675 of 7926) sorted by relevance

1...<<61626364656667686970>>...318

/kernel/linux/linux-5.10/arch/x86/lib/
H A Dusercopy_64.c185 char *from = kmap_atomic(page); in memcpy_page_flushcache() local
187 memcpy_flushcache(to, from + offset, len); in memcpy_page_flushcache()
188 kunmap_atomic(from); in memcpy_page_flushcache()
/kernel/linux/linux-5.10/arch/sparc/include/asm/
H A Duaccess_64.h84 * and hide all the ugliness from the user.
179 const void __user *from,
183 const void *from,
189 const void __user *from,
H A Dpage_64.h50 void copy_user_page(void *to, void *from, unsigned long vaddr, struct page *topage);
53 void copy_user_highpage(struct page *to, struct page *from,
56 void copy_highpage(struct page *to, struct page *from);
/kernel/linux/linux-5.10/arch/csky/include/asm/
H A Dpage.h45 extern void *memcpy(void *to, const void *from, size_t l);
48 #define copy_page(to, from) memcpy((to), (from), PAGE_SIZE)
/kernel/linux/linux-6.6/arch/csky/include/asm/
H A Dpage.h41 extern void *memcpy(void *to, const void *from, size_t l);
44 #define copy_page(to, from) memcpy((to), (from), PAGE_SIZE)
/kernel/linux/linux-6.6/arch/sparc/include/asm/
H A Dpage_64.h50 void copy_user_page(void *to, void *from, unsigned long vaddr, struct page *topage);
53 void copy_user_highpage(struct page *to, struct page *from,
56 void copy_highpage(struct page *to, struct page *from);
/kernel/linux/linux-5.10/drivers/hid/
H A Dhid-icade.c48 * < copy of hid_keyboard[] from hid-input.c >
51 * int from;
101 * for (trans = icade_keys; trans->from; trans++) {
102 * int usage = usage_for_key (trans->from);
113 * for (trans = icade_keys; trans->from; trans++) {
115 * usage_for_key (trans->from), trans->to, trans->press);
157 static const struct icade_key *icade_find_translation(u16 from) in icade_find_translation() argument
159 if (from > ICADE_MAX_USAGE) in icade_find_translation()
161 return &icade_usage_table[from]; in icade_find_translation()
/kernel/linux/linux-5.10/drivers/net/wireless/ath/wil6210/
H A Dwil_crash_dump.c24 host_max = map->host + (map->to - map->from); in wil_fw_get_crash_dump_bounds()
35 tmp_max = map->host + (map->to - map->from); in wil_fw_get_crash_dump_bounds()
83 len = map->to - map->from; in wil_fw_copy_crash_dump()
/kernel/linux/linux-5.10/kernel/bpf/
H A Ddispatcher.c132 void bpf_dispatcher_change_prog(struct bpf_dispatcher *d, struct bpf_prog *from, in bpf_dispatcher_change_prog() argument
138 if (from == to) in bpf_dispatcher_change_prog()
150 changed |= bpf_dispatcher_remove_prog(d, from); in bpf_dispatcher_change_prog()
/kernel/linux/linux-5.10/net/ipv6/ila/
H A Dila.h79 static inline __wsum compute_csum_diff8(const __be32 *from, const __be32 *to) in compute_csum_diff8() argument
82 ~from[0], ~from[1], to[0], to[1], in compute_csum_diff8()
/kernel/linux/linux-5.10/include/linux/
H A Dio.h19 __visible void __iowrite32_copy(void __iomem *to, const void *from, size_t count);
20 void __ioread32_copy(void *to, const void __iomem *from, size_t count);
21 void __iowrite64_copy(void __iomem *to, const void *from, size_t count);
158 * wishes to map a range from a physical device into user memory
/kernel/linux/linux-6.6/include/linux/
H A Dio.h19 __visible void __iowrite32_copy(void __iomem *to, const void *from, size_t count);
20 void __ioread32_copy(void *to, const void __iomem *from, size_t count);
21 void __iowrite64_copy(void __iomem *to, const void *from, size_t count);
156 * wishes to map a range from a physical device into user memory
/kernel/linux/linux-6.6/kernel/bpf/
H A Ddispatcher.c137 void bpf_dispatcher_change_prog(struct bpf_dispatcher *d, struct bpf_prog *from, in bpf_dispatcher_change_prog() argument
143 if (from == to) in bpf_dispatcher_change_prog()
164 changed |= bpf_dispatcher_remove_prog(d, from); in bpf_dispatcher_change_prog()
/kernel/linux/linux-6.6/block/
H A Dblk-cgroup-rwstat.h132 * @from: the source
134 * Add @from's count including the aux one to @to's aux count.
137 struct blkg_rwstat *from) in blkg_rwstat_add_aux()
143 sum[i] = percpu_counter_sum_positive(&from->cpu_cnt[i]); in blkg_rwstat_add_aux()
146 atomic64_add(sum[i] + atomic64_read(&from->aux_cnt[i]), in blkg_rwstat_add_aux()
136 blkg_rwstat_add_aux(struct blkg_rwstat *to, struct blkg_rwstat *from) blkg_rwstat_add_aux() argument
/kernel/linux/linux-6.6/arch/x86/include/asm/
H A Duaccess_64.h17 * Mask out tag bits from the address.
100 /* Handles exceptions in both to and from, but doesn't do access_ok */
102 rep_movs_alternative(void *to, const void *from, unsigned len);
105 copy_user_generic(void *to, const void *from, unsigned long len) in copy_user_generic() argument
118 :"+c" (len), "+D" (to), "+S" (from), ASM_CALL_CONSTRAINT in copy_user_generic()
/kernel/linux/linux-6.6/drivers/net/wireless/ath/wil6210/
H A Dwil_crash_dump.c24 host_max = map->host + (map->to - map->from); in wil_fw_get_crash_dump_bounds()
35 tmp_max = map->host + (map->to - map->from); in wil_fw_get_crash_dump_bounds()
83 len = map->to - map->from; in wil_fw_copy_crash_dump()
/kernel/linux/linux-6.6/drivers/hid/
H A Dhid-icade.c48 * < copy of hid_keyboard[] from hid-input.c >
51 * int from;
101 * for (trans = icade_keys; trans->from; trans++) {
102 * int usage = usage_for_key (trans->from);
113 * for (trans = icade_keys; trans->from; trans++) {
115 * usage_for_key (trans->from), trans->to, trans->press);
157 static const struct icade_key *icade_find_translation(u16 from) in icade_find_translation() argument
159 if (from > ICADE_MAX_USAGE) in icade_find_translation()
161 return &icade_usage_table[from]; in icade_find_translation()
/kernel/linux/linux-6.6/net/ipv6/ila/
H A Dila.h79 static inline __wsum compute_csum_diff8(const __be32 *from, const __be32 *to) in compute_csum_diff8() argument
82 ~from[0], ~from[1], to[0], to[1], in compute_csum_diff8()
/test/testfwk/arkxtest/jsunit/src/module/coverage/
H A DcoverageCollect.js16 import SysTestKit from '../kit/SysTestKit';
17 import fs from '@ohos.file.fs';
18 import {TAG} from '../../Constant';
/test/testfwk/arkxtest/jsunit/src/
H A Dcore.js16 import {SuiteService, SpecService, ExpectService, ReportService} from './service';
17 import {ConfigService} from './module/config/configService';
18 import {SpecEvent, TaskEvent, SuiteEvent} from './event';
/test/xts/acts/communication/wifi_standard/entry/src/ohosTest/ets/test/
H A DWifiCandidateNetWork.test.js16 import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from '@ohos/hypium'
17 import { UiComponent, UiDriver, BY, Component, Driver, UiWindow, ON, MatchPattern, DisplayRotation, ResizeDirection, UiDirection, MouseButton, WindowMode, PointerMatrix, UIElementInfo, UIEventObserver } from '@ohos.UiTest'
18 import wifi from '@ohos.wifi'
/test/xts/acts/distributeddatamgr/preferencesjstest/hap/entry/src/ohosTest/js/test/
H A DPreferencesHelperJsunit.test.js15 import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from '@ohos/hypium'
16 import dataPreferences from '@ohos.data.preferences'
17 import featureAbility from '@ohos.ability.featureAbility';
/test/xts/acts/powermgr/battery_manager/entry/src/ohosTest/js/test/
H A Dsystem_battery.test.js16 import battery from '@system.battery';
17 import batteryInfo from '@ohos.batteryInfo';
18 import { describe, it, expect } from '@ohos/hypium';
/test/xts/acts/security/cryptoFramework/js_api_test_one/entry/src/ohosTest/js/test/utils/digestalgorithm/
H A DpublicDigestPromise.js15 import { expect } from "@ohos/hypium";
16 import cryptoFramework from "@ohos.security.cryptoFramework";
21 } from "../common/publicDoString";
/third_party/ffmpeg/tests/fate/
H A Dopus.mak1 # The samples were produced by simply rewrapping the official test vectors from
2 # their custom format into Matroska. The reference decoded outputs are from the
3 # newest testvectors file from RFC8251

Completed in 14 milliseconds

1...<<61626364656667686970>>...318