/third_party/typescript/tests/baselines/reference/ |
H A D | exportDefaultDuplicateCrash.js | 5 export { default } from './hi' 6 export { aa as default } from './hi'
|
H A D | exportStarForValues10.js | 10 export * from "file0"; 11 export * from "file1";
|
H A D | generic.js | 8 import type { A } from './a'; 9 import { B } from './a';
|
H A D | importEquals3.js | 7 import type * as a from './a'; 15 import * as b from './b';
|
H A D | jsDeclarationsExportSpecifierNonlocal.js | 7 export { Thing, OtherThing as default } from "./source"; 41 export { Thing, OtherThing as default } from "./source";
|
H A D | jsDeclarationsImportAliasExposedWithinNamespace.js | 25 import {myTypes} from './file.js'; 86 import { myTypes } from "./file.js";
|
H A D | jsDeclarationsReexportedCjsAlias.js | 65 import { SomeClass } from "./lib";
66 import { SomeClass as Another } from "./lib";
|
H A D | tsxFragmentChildrenCheck.js | 11 import * as React from 'react' 12 import { MyComponent } from './my-component'
|
H A D | valuesMergingAcrossModules.js | 8 import { A } from "./a"; 13 import { A } from "./b";
|
/third_party/rust/crates/nom/src/branch/ |
H A D | tests.rs | 20 fn from(i: u32) -> Self { in from() functions 27 fn from(i: &'a str) -> Self { in from() functions
|
/third_party/rust/crates/syn/src/ |
H A D | parse_macro_input.rs | 13 /// This macro must be called from a function that returns 96 /// Err(err) => return proc_macro::TokenStream::from(err.to_compile_error()), 113 return $crate::__private::TokenStream::from(err.to_compile_error()); 121 return $crate::__private::TokenStream::from(err.to_compile_error());
|
/kernel/linux/linux-6.6/net/core/ |
H A D | skbuff.c | 103 * size, and we can differentiate heads from skb_small_head_cache 430 * skb_shared_info. @data must have been allocated from the page 608 * @flags: If SKB_ALLOC_FCLONE is set, allocate from fclone cache 618 * Buffers may only be allocated from interrupts using a @gfp_mask of 766 * attempt to allocate the head from a special reserved region used 1159 * Must only be called from net_ratelimit()-ed paths. 1790 * If this function is called from an interrupt gfp_mask() must be 1888 * If this function is called from an interrupt gfp_mask() must be 1999 * @fclone: if true allocate the copy of the skb from the fclone 2297 * is called from a 3191 skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len) skb_store_bits() argument 3545 skb_zerocopy_headlen(const struct sk_buff *from) skb_zerocopy_headlen() argument 3583 skb_zerocopy(struct sk_buff *to, struct sk_buff *from, int len, int hlen) skb_zerocopy() argument 3970 int from, to, merge, todo; skb_shift() local 4093 skb_prepare_seq_read(struct sk_buff *skb, unsigned int from, unsigned int to, struct skb_seq_state *st) skb_prepare_seq_read() argument 4254 skb_find_text(struct sk_buff *skb, unsigned int from, unsigned int to, struct ts_config *config) skb_find_text() argument 5741 skb_try_coalesce(struct sk_buff *to, struct sk_buff *from, bool *fragstolen, int *delta_truesize) skb_try_coalesce() argument [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/ttm/ |
H A D | ttm_bo_util.c | 587 struct ttm_resource_manager *from = ttm_manager_type(bdev, bo->mem.mem_type); in ttm_bo_move_pipeline_evict() local 593 spin_lock(&from->move_lock); in ttm_bo_move_pipeline_evict() 594 if (!from->move || dma_fence_is_later(fence, from->move)) { in ttm_bo_move_pipeline_evict() 595 dma_fence_put(from->move); in ttm_bo_move_pipeline_evict() 596 from->move = dma_fence_get(fence); in ttm_bo_move_pipeline_evict() 598 spin_unlock(&from->move_lock); in ttm_bo_move_pipeline_evict() 613 struct ttm_resource_manager *from = ttm_manager_type(bdev, bo->mem.mem_type); in ttm_bo_move_accel_cleanup() local 620 else if (!from->use_tt && pipeline) in ttm_bo_move_accel_cleanup()
|
/kernel/linux/linux-6.6/drivers/staging/media/atomisp/pci/runtime/frame/src/ |
H A D | frame.c | 365 /* AM: Body coppied from frame_allocate_with_data(). */ in ia_css_frame_allocate_with_buffer_size() 694 * which is configured from this return value, in ia_css_elems_bytes_from_info() 717 const struct ia_css_frame_info *from) in ia_css_frame_info_to_frame_sp_info() 719 ia_css_resolution_to_sp_resolution(&to->res, &from->res); in ia_css_frame_info_to_frame_sp_info() 720 to->padded_width = (uint16_t)from->padded_width; in ia_css_frame_info_to_frame_sp_info() 721 to->format = (uint8_t)from->format; in ia_css_frame_info_to_frame_sp_info() 722 to->raw_bit_depth = (uint8_t)from->raw_bit_depth; in ia_css_frame_info_to_frame_sp_info() 723 to->raw_bayer_order = from->raw_bayer_order; in ia_css_frame_info_to_frame_sp_info() 728 const struct ia_css_resolution *from) in ia_css_resolution_to_sp_resolution() 730 to->width = (uint16_t)from in ia_css_resolution_to_sp_resolution() 715 ia_css_frame_info_to_frame_sp_info( struct ia_css_frame_sp_info *to, const struct ia_css_frame_info *from) ia_css_frame_info_to_frame_sp_info() argument 726 ia_css_resolution_to_sp_resolution( struct ia_css_sp_resolution *to, const struct ia_css_resolution *from) ia_css_resolution_to_sp_resolution() argument [all...] |
/third_party/node/deps/v8/src/compiler/backend/ |
H A D | move-optimizer.cc | 209 void MoveOptimizer::MigrateMoves(Instruction* to, Instruction* from) { in MigrateMoves() argument 210 if (from->IsCall()) return; in MigrateMoves() 212 ParallelMove* from_moves = from->parallel_moves()[0]; in MigrateMoves() 220 for (size_t i = 0; i < from->InputCount(); ++i) { in MigrateMoves() 221 dst_cant_be.InsertOp(*from->InputAt(i)); in MigrateMoves() 228 // RemoveClobberedDestinations for the "from" instruction. in MigrateMoves() 229 for (size_t i = 0; i < from->OutputCount(); ++i) { in MigrateMoves() 230 src_cant_be.InsertOp(*from->OutputAt(i)); in MigrateMoves() 232 for (size_t i = 0; i < from->TempCount(); ++i) { in MigrateMoves() 233 src_cant_be.InsertOp(*from in MigrateMoves() [all...] |
/third_party/typescript/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/transitive-exports/no-circular-import/ |
H A D | export-with-incremental.js | 8 export * from "./tools.interface";
11 import { Data } from "lib2/public"; 19 export * from "./data";
22 export * from "./tools/public";
25 import { ITest } from "lib1/public"; 149 export * from "./tools.interface"; 173 export * from "./tools/public"; 195 import { ITest } from "lib1/public"; 222 export * from "./data"; 246 {"program":{"fileNames":["../../../../a/lib/lib.d.ts","./lib1/tools/tools.interface.ts","./lib1/tools/public.ts","./lib1/public.ts","./lib2/data.ts","./lib2/public.ts","./app.ts"],"fileInfos":[{"version":"-7698705165-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }","affectsGlobalScope":true},{"version":"-4369626085-export interface ITest {\n title: string;\n}","signature":"-2463740027-export interface ITest {\n title: string;\n}\n"},{"version":"-13301115055-export * from \" [all...] |
H A D | export.js | 8 export * from "./tools.interface";
11 import { Data } from "lib2/public"; 19 export * from "./data";
22 export * from "./tools/public";
25 import { ITest } from "lib1/public"; 149 export * from "./tools.interface"; 173 export * from "./tools/public"; 195 import { ITest } from "lib1/public"; 222 export * from "./data";
|
/kernel/linux/linux-5.10/block/ |
H A D | bfq-cgroup.c | 71 * @from: the source 73 * Add @from's count including the aux one to @to's aux count. 76 struct bfq_stat *from) in bfq_stat_add_aux() 78 atomic64_add(bfq_stat_read(from) + atomic64_read(&from->aux_cnt), in bfq_stat_add_aux() 379 /* @to += @from */ 380 static void bfqg_stats_add_aux(struct bfqg_stats *to, struct bfqg_stats *from) in bfqg_stats_add_aux() argument 382 if (!to || !from) in bfqg_stats_add_aux() 387 blkg_rwstat_add_aux(&to->merged, &from->merged); in bfqg_stats_add_aux() 388 blkg_rwstat_add_aux(&to->service_time, &from in bfqg_stats_add_aux() 75 bfq_stat_add_aux(struct bfq_stat *to, struct bfq_stat *from) bfq_stat_add_aux() argument [all...] |
H A D | blk-cgroup-rwstat.h | 132 * @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/fs/ntfs3/ |
H A D | file.c | 184 u32 from = vbo & (PAGE_SIZE - 1); in ntfs_zero_range() local 192 for (; idx < idx_end; idx += 1, from = 0) { in ntfs_zero_range() 212 if (bh_next <= from || bh_off >= to) in ntfs_zero_range() 240 zero_user_segment(page, from, to); in ntfs_zero_range() 259 u64 from = ((u64)vma->vm_pgoff << PAGE_SHIFT); in ntfs_file_mmap() local 283 from + vma->vm_end - vma->vm_start); in ntfs_file_mmap() 289 CLST vcn = from >> sbi->cluster_bits; in ntfs_file_mmap() 427 * operation, which gets called from sys_fallocate system call. User 540 * it will get removed from the page cache below. in ntfs_fallocate() 843 static ssize_t ntfs_compress_write(struct kiocb *iocb, struct iov_iter *from) in ntfs_compress_write() argument 1066 ntfs_file_write_iter(struct kiocb *iocb, struct iov_iter *from) ntfs_file_write_iter() argument [all...] |
/kernel/linux/linux-6.6/block/ |
H A D | bfq-cgroup.c | 71 * @from: the source 73 * Add @from's count including the aux one to @to's aux count. 76 struct bfq_stat *from) in bfq_stat_add_aux() 78 atomic64_add(bfq_stat_read(from) + atomic64_read(&from->aux_cnt), in bfq_stat_add_aux() 372 /* @to += @from */ 373 static void bfqg_stats_add_aux(struct bfqg_stats *to, struct bfqg_stats *from) in bfqg_stats_add_aux() argument 375 if (!to || !from) in bfqg_stats_add_aux() 380 blkg_rwstat_add_aux(&to->merged, &from->merged); in bfqg_stats_add_aux() 381 blkg_rwstat_add_aux(&to->service_time, &from in bfqg_stats_add_aux() 75 bfq_stat_add_aux(struct bfq_stat *to, struct bfq_stat *from) bfq_stat_add_aux() argument [all...] |
/third_party/protobuf/ruby/ext/google/protobuf_c/ |
H A D | storage.c | 16 // contributors may be used to endorse or promote products derived from 383 void native_slot_dup(upb_fieldtype_t type, void* to, void* from) { in native_slot_dup() argument 384 memcpy(to, from, native_slot_size(type)); in native_slot_dup() 388 void* from) { in native_slot_deep_copy() 392 VALUE from_val = DEREF(from, VALUE); in native_slot_deep_copy() 398 VALUE from_val = native_slot_get(type, type_class, from); in native_slot_deep_copy() 404 memcpy(to, from, native_slot_size(type)); in native_slot_deep_copy() 1033 void layout_dup(MessageLayout* layout, void* to, void* from) { in layout_dup() argument 1042 void* from_memory = slot_memory(layout, from, field); in layout_dup() 1046 uint32_t* from_oneof_case = slot_oneof_case(layout, from, oneo in layout_dup() 387 native_slot_deep_copy(upb_fieldtype_t type, VALUE type_class, void* to, void* from) native_slot_deep_copy() argument 1067 layout_deep_copy(MessageLayout* layout, void* to, void* from) layout_deep_copy() argument [all...] |
/kernel/linux/linux-5.10/arch/x86/lib/ |
H A D | usercopy_64.c | 185 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 D | uaccess_64.h | 84 * and hide all the ugliness from the user. 179 const void __user *from, 183 const void *from, 189 const void __user *from,
|
H A D | page_64.h | 50 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);
|