Home
last modified time | relevance | path

Searched refs:from (Results 2426 - 2450 of 7952) sorted by relevance

1...<<919293949596979899100>>...319

/third_party/ffmpeg/tests/fate/
H A Dseek.mak1 # files from fate-acodec
49 # files from fate-vsynth_lena
129 # files from fate-lavf-audio
137 # files from fate-lavf-container
153 # files from fate-lavf-video
163 # files from fate-lavf-image
172 #files from fate-lavf-image2pipe
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DTimeZoneNamesImpl.java129 if (date >= map.from() && date < map.to()) { in _getMetaZoneID()
216 // Populate the parsing trie from all of the already-loaded names. in find()
413 * Initialize the transient fields, called from the constructor and
441 * This is called from the initializer to load default zone's
775 // "getDefaultExemplarLocationName" to extract it from the time zone name. in createTimeZoneAndPutInCache()
832 MZMapEntry(String mzID, long from, long to) { in MZMapEntry() argument
834 _from = from; in MZMapEntry()
842 long from() { in from() method in TimeZoneNamesImpl.MZMapEntry
876 long from, to; in createInstance()
877 from in createInstance()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DTimeZoneNamesImpl.java131 if (date >= map.from() && date < map.to()) { in _getMetaZoneID()
218 // Populate the parsing trie from all of the already-loaded names. in find()
415 * Initialize the transient fields, called from the constructor and
443 * This is called from the initializer to load default zone's
777 // "getDefaultExemplarLocationName" to extract it from the time zone name. in createTimeZoneAndPutInCache()
834 MZMapEntry(String mzID, long from, long to) { in MZMapEntry() argument
836 _from = from; in MZMapEntry()
844 long from() { in from() method in TimeZoneNamesImpl.MZMapEntry
878 long from, to; in createInstance()
879 from in createInstance()
[all...]
/third_party/libuv/src/win/
H A Dudp.c138 /* If anything fails beyond this point we need to remove the handle from in uv__udp_init_ex()
442 struct sockaddr_storage from; in uv__process_udp_recv_req() local
459 memset(&from, 0, sizeof from); in uv__process_udp_recv_req()
460 from_len = sizeof from; in uv__process_udp_recv_req()
469 (struct sockaddr*) &from, in uv__process_udp_recv_req()
476 handle->recv_cb(handle, bytes, &buf, (const struct sockaddr*) &from, 0); in uv__process_udp_recv_req()
484 (const struct sockaddr*) &from, in uv__process_udp_recv_req()
/third_party/node/src/crypto/
H A Dcrypto_util.h44 // sizes may change from one version of OpenSSL to another, so
101 // from popping up later in the lifecycle of crypto operations where they
108 // Pop errors from OpenSSL's error stack that were added
168 // Utility struct used to harvest error information from openssl's error stack
640 const char* from, in array_push_back()
643 if (!from) in array_push_back()
646 const TypeName* real_instance = getbyname(from); in array_push_back()
665 static_cast<CipherPushContext*>(arg)->push_back(from); in array_push_back()
670 const char* from, in array_push_back()
673 if (!from) in array_push_back()
639 array_push_back(const TypeName* evp_ref, const char* from, const char* to, void* arg) array_push_back() argument
669 array_push_back(const TypeName* evp_ref, const char* from, const char* to, void* arg) array_push_back() argument
[all...]
/third_party/node/test/parallel/
H A Dtest-crypto-key-objects.js59 assert.throws(() => KeyObject.from('invalid_key'), {
80 const plaintext = Buffer.from('Hello world', 'utf8');
104 // Constructing a private key from a public key should be impossible, even
105 // if the public key was derived from a private key.
164 // It should be possible to derive a public key from a private key.
243 const plaintext = Buffer.from('Hello world', 'utf8');
264 // Encrypt using a public key derived from the private key.
577 // added for the PSS parameters. This is different from an empty
779 const buffer = Buffer.from('Hello World');
788 // Exporting an "oct" JWK from
[all...]
/third_party/node/deps/cares/src/lib/
H A Dares_process.c261 /* Strip data written from the buffer */ in write_tcp_data()
293 /* Read from socket */ in read_tcp_data()
427 } from; in read_udp_packets_fd() local
429 memset(&from, 0, sizeof(from)); in read_udp_packets_fd()
439 fromlen = sizeof(from.sa4); in read_udp_packets_fd()
441 fromlen = sizeof(from.sa6); in read_udp_packets_fd()
444 sizeof(buf), 0, &from.sa, &fromlen); in read_udp_packets_fd()
460 } else if (!same_address(&from.sa, &conn->server->addr)) { in read_udp_packets_fd()
461 /* The address the response comes from doe in read_udp_packets_fd()
[all...]
/third_party/node/deps/v8/src/compiler/
H A Dloop-analysis.cc56 // first from nodes to their inputs, starting at {end}, then in the reverse
57 // direction, from nodes to their uses, starting at loop headers.
139 bool PropagateBackwardMarks(Node* from, Node* to, int loop_filter) { in PropagateBackwardMarks() argument
140 if (from == to) return false; in PropagateBackwardMarks()
141 uint32_t* fp = &backward_[from->id() * width_]; in PropagateBackwardMarks()
173 bool PropagateForwardMarks(Node* from, Node* to) { in PropagateForwardMarks() argument
174 if (from == to) return false; in PropagateForwardMarks()
176 int findex = from->id() * width_; in PropagateForwardMarks()
193 // Propagate marks backward from loop headers.
229 // Propagate marks backwards from thi in PropagateBackward()
[all...]
/third_party/node/deps/v8/src/heap/
H A Dincremental-marking.cc81 void IncrementalMarking::NotifyLeftTrimming(HeapObject from, HeapObject to) { in NotifyLeftTrimming() argument
83 DCHECK(MemoryChunk::FromHeapObject(from)->SweepingDone()); in NotifyLeftTrimming()
84 DCHECK_EQ(MemoryChunk::FromHeapObject(from), MemoryChunk::FromHeapObject(to)); in NotifyLeftTrimming()
85 DCHECK_NE(from, to); in NotifyLeftTrimming()
93 MarkBlackAndVisitObjectDueToLayoutChange(from); in NotifyLeftTrimming()
94 DCHECK(marking_state()->IsBlack(from)); in NotifyLeftTrimming()
96 if (from.address() + kTaggedSize == to.address()) { in NotifyLeftTrimming()
460 // Only pointers to from space have to be updated. in UpdateMarkingWorklistAfterYoungGenGC()
467 // anymore, e.g. left trimmed objects or objects from the root set in UpdateMarkingWorklistAfterYoungGenGC()
476 // Object got promoted into the shared heap. Drop it from th in UpdateMarkingWorklistAfterYoungGenGC()
[all...]
/third_party/node/deps/uv/src/win/
H A Dudp.c143 /* If anything fails beyond this point we need to remove the handle from in uv__udp_init_ex()
498 struct sockaddr_storage from; in uv__process_udp_recv_req() local
511 memset(&from, 0, sizeof from); in uv__process_udp_recv_req()
512 from_len = sizeof from; in uv__process_udp_recv_req()
521 (struct sockaddr*) &from, in uv__process_udp_recv_req()
527 handle->recv_cb(handle, bytes, &buf, (const struct sockaddr*) &from, 0); in uv__process_udp_recv_req()
535 (const struct sockaddr*) &from, in uv__process_udp_recv_req()
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
H A DSpirvShaderControlFlow.cpp173 bool SpirvShader::Function::ExistsPath(Block::ID from, Block::ID to, Block::ID notPassingThrough) const in ExistsPath() argument
180 pending.emplace(from); in ExistsPath()
203 void SpirvShader::EmitState::addActiveLaneMaskEdge(Block::ID from, Block::ID to, RValue<SIMD::Int> mask) in addActiveLaneMaskEdge() argument
205 auto edge = Block::Edge{ from, to }; in addActiveLaneMaskEdge()
219 RValue<SIMD::Int> SpirvShader::GetActiveLaneMaskEdge(EmitState *state, Block::ID from, Block::ID to) const in GetActiveLaneMaskEdge() argument
221 auto edge = Block::Edge{ from, to }; in GetActiveLaneMaskEdge()
223 ASSERT_MSG(it != state->edgeActiveLaneMasks.end(), "Could not find edge %d -> %d", from.value(), to.value()); in GetActiveLaneMaskEdge()
355 // Emit the loop phi instructions, and initialize them with a value from in EmitLoop()
418 // Rebuild the loopActiveLaneMask from the loop back edges. in EmitLoop()
487 // Continue emitting from th in EmitLoop()
[all...]
/third_party/typescript/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/transitive-exports/yes-circular-import/
H A Dexports-with-incremental.js8 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"; import { Data2 } from "./data2";
36 import { Data } from "./data";
238 {"program":{"fileNames":["../../../../a/lib/lib.d.ts","./lib1/tools/tools.interface.ts","./lib1/tools/public.ts","./lib1/public.ts","./lib2/data2.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},"-4369626085-export interface ITest {\n title: string;\n}","-13301115055-export * from \"./tools.interface\";","-5078933600-export * from \"./tools/public\";","-11055285700-import { Data } from \"
[all...]
H A Dexports.js8 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"; import { Data2 } from "./data2";
36 import { Data } from "./data";
/third_party/typescript/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/transitive-exports/yes-circular-import/
H A Dexports-with-incremental.js8 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"; import { Data2 } from "./data2";
36 import { Data } from "./data";
238 {"program":{"fileNames":["../../../../a/lib/lib.d.ts","./lib1/tools/tools.interface.ts","./lib1/tools/public.ts","./lib1/public.ts","./lib2/data2.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},"-4369626085-export interface ITest {\n title: string;\n}","-13301115055-export * from \"./tools.interface\";","-5078933600-export * from \"./tools/public\";","-11055285700-import { Data } from \"
[all...]
H A Dexports.js8 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"; import { Data2 } from "./data2";
36 import { Data } from "./data";
/third_party/typescript/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/transitive-exports/yes-circular-import/
H A Dexports-with-incremental.js8 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"; import { Data2 } from "./data2";
36 import { Data } from "./data";
238 {"program":{"fileNames":["../../../../a/lib/lib.d.ts","./lib1/tools/tools.interface.ts","./lib1/tools/public.ts","./lib1/public.ts","./lib2/data2.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},"-4369626085-export interface ITest {\n title: string;\n}","-13301115055-export * from \"./tools.interface\";","-5078933600-export * from \"./tools/public\";","-11055285700-import { Data } from \"
[all...]
H A Dexports.js8 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"; import { Data2 } from "./data2";
36 import { Data } from "./data";
/kernel/linux/linux-5.10/drivers/mtd/chips/
H A Dcfi_cmdset_0002.c268 " deduced %s from Device ID\n", map->name, major, minor, in fixup_amd_bootblock()
397 pr_warn("%s: Bad 38VF640x CFI data; adjusting sector size from 64 to 8KiB\n", in fixup_sst38vf640x_sectorsize()
408 pr_warn("%s: Bad S29GL064N CFI data; adjust from 64 to 128 sectors\n", in fixup_s29gl064n_sectors()
420 pr_warn("%s: Bad S29GL032N CFI data; adjust from 127 to 63 sectors\n", in fixup_s29gl032n_sectors()
546 * Some revisions of the M29EW suffer from erase suspend hang ups. In
733 * of struct cfi_ident that probed from chip's CFI aera, if in cfi_cmdset_0002()
930 * routine to recover from it) or we trying to in get_chip()
1045 * point. The CPU eventually returns from the interrupt or the call to
1151 * and stub it out from INVALIDATE_CACHE_UDELAY.
1153 #define XIP_INVAL_CACHED_RANGE(map, from, siz
1231 cfi_amdstd_read(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf) cfi_amdstd_read() argument
1339 cfi_amdstd_secsi_read(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf) cfi_amdstd_secsi_read() argument
1476 cfi_amdstd_otp_walk(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf, otp_op_t action, int user_regs) cfi_amdstd_otp_walk() argument
1608 cfi_amdstd_read_fact_prot_reg(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf) cfi_amdstd_read_fact_prot_reg() argument
1616 cfi_amdstd_read_user_prot_reg(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf) cfi_amdstd_read_user_prot_reg() argument
1624 cfi_amdstd_write_user_prot_reg(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf) cfi_amdstd_write_user_prot_reg() argument
1632 cfi_amdstd_lock_user_prot_reg(struct mtd_info *mtd, loff_t from, size_t len) cfi_amdstd_lock_user_prot_reg() argument
[all...]
/kernel/linux/linux-6.6/drivers/mtd/chips/
H A Dcfi_cmdset_0002.c267 " deduced %s from Device ID\n", map->name, major, minor, in fixup_amd_bootblock()
400 pr_warn("%s: Bad 38VF640x CFI data; adjusting sector size from 64 to 8KiB\n", in fixup_sst38vf640x_sectorsize()
411 pr_warn("%s: Bad S29GL064N CFI data; adjust from 64 to 128 sectors\n", in fixup_s29gl064n_sectors()
423 pr_warn("%s: Bad S29GL032N CFI data; adjust from 127 to 63 sectors\n", in fixup_s29gl032n_sectors()
549 * Some revisions of the M29EW suffer from erase suspend hang ups. In
736 * of struct cfi_ident that probed from chip's CFI aera, if in cfi_cmdset_0002()
934 * routine to recover from it) or we trying to in get_chip()
1049 * point. The CPU eventually returns from the interrupt or the call to
1155 * and stub it out from INVALIDATE_CACHE_UDELAY.
1157 #define XIP_INVAL_CACHED_RANGE(map, from, siz
1235 cfi_amdstd_read(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf) cfi_amdstd_read() argument
1343 cfi_amdstd_secsi_read(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf) cfi_amdstd_secsi_read() argument
1480 cfi_amdstd_otp_walk(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf, otp_op_t action, int user_regs) cfi_amdstd_otp_walk() argument
1612 cfi_amdstd_read_fact_prot_reg(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf) cfi_amdstd_read_fact_prot_reg() argument
1620 cfi_amdstd_read_user_prot_reg(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf) cfi_amdstd_read_user_prot_reg() argument
1628 cfi_amdstd_write_user_prot_reg(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, const u_char *buf) cfi_amdstd_write_user_prot_reg() argument
1636 cfi_amdstd_lock_user_prot_reg(struct mtd_info *mtd, loff_t from, size_t len) cfi_amdstd_lock_user_prot_reg() argument
[all...]
/kernel/linux/linux-6.6/tools/perf/util/
H A Dsort.c490 return left->branch_info->from.addr - right->branch_info->from.addr; in sort__srcline_from_cmp()
497 left->branch_info->srcline_from = addr_map_symbol__srcline(&left->branch_info->from); in sort__srcline_from_collapse()
500 right->branch_info->srcline_from = addr_map_symbol__srcline(&right->branch_info->from); in sort__srcline_from_collapse()
514 he->branch_info->srcline_from = addr_map_symbol__srcline(&he->branch_info->from); in sort__srcline_from_init()
962 return _sort__dso_cmp(left->branch_info->from.ms.map, in sort__dso_from_cmp()
963 right->branch_info->from.ms.map); in sort__dso_from_cmp()
970 return _hist_entry__dso_snprintf(he->branch_info->from.ms.map, in hist_entry__dso_from_snprintf()
984 return dso && (!he->branch_info || !he->branch_info->from.ms.map || in hist_entry__dso_from_filter()
985 map__dso(he->branch_info->from in hist_entry__dso_from_filter()
1058 struct addr_map_symbol *from = &he->branch_info->from; hist_entry__sym_from_snprintf() local
1171 struct addr_map_symbol *from = &he->branch_info->from; hist_entry__addr_from_snprintf() local
[all...]
/third_party/backends/backend/
H A Dartec.c780 SANE_Byte *to, *from; in artec_reverse_line() local
790 for (from = tmp_buf, to = data + len - 3; in artec_reverse_line()
792 to -= 3, from += 3) in artec_reverse_line()
794 *(to + 0) = *(from + 0); /* copy the R byte */ in artec_reverse_line()
795 *(to + 1) = *(from + 1); /* copy the G byte */ in artec_reverse_line()
796 *(to + 2) = *(from + 2); /* copy the B byte */ in artec_reverse_line()
803 for (from = tmp_buf, to = data + len; to >= data; to--, from++) in artec_reverse_line()
805 *to = *from; in artec_reverse_line()
810 for (from in artec_reverse_line()
[all...]
/kernel/linux/linux-5.10/arch/c6x/include/asm/
H A Dstring.h14 asmlinkage extern void *memcpy(void *to, const void *from, size_t n);
/kernel/linux/linux-5.10/drivers/staging/media/atomisp/pci/isp/kernels/anr/anr_2/
H A Dia_css_anr2.host.h28 const struct ia_css_anr_thres *from,
/kernel/linux/linux-5.10/drivers/staging/media/atomisp/pci/isp/kernels/bh/bh_2/
H A Dia_css_bh.host.h30 const struct ia_css_3a_config *from,
/kernel/linux/linux-5.10/drivers/staging/media/atomisp/pci/isp/kernels/bnr/bnr2_2/
H A Dia_css_bnr2_2.host.h26 const struct ia_css_bnr2_2_config *from,

Completed in 30 milliseconds

1...<<919293949596979899100>>...319