Home
last modified time | relevance | path

Searched refs:target (Results 4951 - 4975 of 7637) sorted by relevance

1...<<191192193194195196197198199200>>...306

/third_party/skia/third_party/externals/icu/source/i18n/
H A Dmeasunit_extra.cpp209 // mass conversion target unit, but not needed for MeasureUnit in put()
216 // Find the base target unit for this simple unit in put()
219 if (!table.findValue("target", value)) { in put()
225 CharString target; in put()
226 target.appendInvariantChars(uTarget, len, status); in put()
229 UStringTrieResult result = quantitiesTrie.next(target.data(), target.length()); in put()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
H A DMips16ISelLowering.cpp710 MachineBasicBlock *target = MI.getOperand(2).getMBB(); in emitFEXT_T8I816_ins() local
714 BuildMI(*BB, MI, MI.getDebugLoc(), TII->get(BtOpc)).addMBB(target); in emitFEXT_T8I816_ins()
727 MachineBasicBlock *target = MI.getOperand(2).getMBB(); in emitFEXT_T8I8I16_ins() local
737 BuildMI(*BB, MI, MI.getDebugLoc(), TII->get(BtOpc)).addMBB(target); in emitFEXT_T8I8I16_ins()
/third_party/skia/third_party/externals/tint/src/writer/wgsl/
H A Dgenerator_impl.cc218 if (expr->target.name) { in EmitCall()
219 if (!EmitExpression(out, expr->target.name)) { in EmitCall()
222 } else if (expr->target.type) { in EmitCall()
223 if (!EmitType(out, expr->target.type)) { in EmitCall()
228 << "CallExpression target had neither a name or type"; in EmitCall()
/third_party/protobuf/src/google/protobuf/
H A Ddynamic_message.cc690 const DynamicMessage::TypeInfo** target = &prototypes_->map_[type]; in GetPrototypeNoLock() local
691 if (*target != NULL) { in GetPrototypeNoLock()
693 return (*target)->prototype; in GetPrototypeNoLock()
697 *target = type_info; in GetPrototypeNoLock()
/third_party/protobuf/src/google/protobuf/io/
H A Dcoded_stream.cc948 uint8* target) { in WriteStringWithSizeToArray()
950 target = WriteVarint32ToArray(str.size(), target); in WriteStringWithSizeToArray()
951 return WriteStringToArray(str, target); in WriteStringWithSizeToArray()
947 WriteStringWithSizeToArray(const std::string& str, uint8* target) WriteStringWithSizeToArray() argument
/third_party/python/Modules/_sqlite/clinic/
H A Dconnection.c.h798 "backup($self, /, target, *, pages=-1, progress=None, name=\'main\',\n"
809 pysqlite_Connection *target, int pages,
817 static const char * const _keywords[] = {"target", "pages", "progress", "name", "sleep", NULL}; in pysqlite_connection_backup()
821 pysqlite_Connection *target; in pysqlite_connection_backup() local
832 _PyArg_BadArgument("backup", "argument 'target'", (clinic_state()->ConnectionType)->tp_name, args[0]); in pysqlite_connection_backup()
835 target = (pysqlite_Connection *)args[0]; in pysqlite_connection_backup()
883 return_value = pysqlite_connection_backup_impl(self, target, pages, progress, name, sleep); in pysqlite_connection_backup()
1013 "target database, and then reopen it as an in-memory database based on the given\n"
/third_party/python/Lib/
H A Dpstats.py571 def add_func_stats(target, source):
574 t_cc, t_nc, t_tt, t_ct, t_callers = target
578 def add_callers(target, source):
581 for func, caller in target.items():
H A Dthreading.py849 def __init__(self, group=None, target=None, name=None,
856 *target* is the callable object to be invoked by the run()
862 *args* is a list or tuple of arguments for the target invocation. Defaults to ().
864 *kwargs* is a dictionary of keyword arguments for the target
879 if target is not None:
881 target_name = target.__name__
886 self._target = target
969 target argument, if any, with sequential and keyword arguments taken
/third_party/python/Lib/test/
H A Dtest_getpath.py900 def add_known_link(self, path, target):
901 self._links[path.casefold()] = target
1077 def add_known_link(self, path, target):
1078 self._links[path] = target
/third_party/selinux/checkpolicy/
H A Dcheckpolicy.c175 * ordered by source type, then target type, then in insert_type_rule()
176 * target class. in insert_type_rule()
210 * the source type and the target type. in create_type_rules()
398 int ret, ch, fd, target = SEPOL_TARGET_SELINUX; in main() local
412 {"target", required_argument, NULL, 't'}, in main()
434 target = SEPOL_TARGET_XEN; in main()
436 target = SEPOL_TARGET_SELINUX; in main()
438 fprintf(stderr, "%s: Unknown target platform:" in main()
608 policydb_set_target_platform(&parse_policy, target); in main()
758 printf("target si in main()
[all...]
/third_party/spirv-tools/test/opt/
H A Dlocal_ssa_elim_test.cpp1683 ; wrongfully considered an SSA target. in TEST_F()
4291 float4 target; in TEST_F() member
4392 // Direction vector from source to target in TEST_F()
4393 float3 dir = normalize(ubo.lights[i].position.xyz - ubo.lights[i].target.xyz); in TEST_F()
4468 %252 = OpString "target" in TEST_F()
4513 OpMemberName %Light 1 "target" in TEST_F()
/third_party/spirv-tools/tools/fuzz/
H A Dfuzz.cpp140 --fuzzing-target= in PrintUsage()
143 to the semantics of some fuzzing target. Available targets: in PrintUsage()
271 } else if (0 == strncmp(cur_arg, "--fuzzing-target=", in ParseFlags()
272 sizeof("--fuzzing-target=") - 1)) { in ParseFlags()
273 std::string target = spvtools::utils::SplitFlagArgs(cur_arg).second; in ParseFlags() local
274 if (target == "spir-v") { in ParseFlags()
276 } else if (target == "wgsl") { in ParseFlags()
280 ss << "Unknown fuzzing target '" << target << "'" << std::endl; in ParseFlags()
/third_party/mesa3d/src/gallium/drivers/svga/
H A Dsvga_tgsi_vgpu10.c1061 * position of the current sample in the render target. in translate_opcode()
5051 /* render target array index */ in emit_fs_input_declarations()
5930 if (emit->key.tex[i].target == PIPE_BUFFER) { in emit_constant_declaration()
6038 pipe_texture_to_resource_dimension(enum tgsi_texture_type target, in pipe_texture_to_resource_dimension() argument
6043 switch (target) { in pipe_texture_to_resource_dimension()
6082 tgsi_texture_to_resource_dimension(enum tgsi_texture_type target, in tgsi_texture_to_resource_dimension() argument
6087 if (target == TGSI_TEXTURE_2D_MSAA && num_samples < 2) { in tgsi_texture_to_resource_dimension()
6088 target = TGSI_TEXTURE_2D; in tgsi_texture_to_resource_dimension()
6090 else if (target == TGSI_TEXTURE_2D_ARRAY_MSAA && num_samples < 2) { in tgsi_texture_to_resource_dimension()
6091 target in tgsi_texture_to_resource_dimension()
8362 emit_tex_compare_refcoord(struct svga_shader_emitter_v10 *emit, enum tgsi_texture_type target, const struct tgsi_full_src_register *coord) emit_tex_compare_refcoord() argument
8610 const enum tgsi_texture_type target = inst->Texture.Texture; is_valid_tex_instruction() local
8642 const enum tgsi_texture_type target = inst->Texture.Texture; emit_tex() local
8704 unsigned target = inst->Texture.Texture; emit_tg4() local
8867 unsigned target = inst->Texture.Texture; emit_tex2() local
8920 const enum tgsi_texture_type target = inst->Texture.Texture; emit_txp() local
8986 const enum tgsi_texture_type target = inst->Texture.Texture; emit_txd() local
9079 const enum tgsi_texture_type target = inst->Texture.Texture; emit_txl_txb() local
9137 unsigned target = inst->Texture.Texture; emit_txl2() local
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/
H A Djs_command.cpp50 inline void TrySaveTargetAndIdNode(const std::string& id, const std::string& target, in TrySaveTargetAndIdNode() argument
56 if (!target.empty()) { in TrySaveTargetAndIdNode()
57 domDocument->AddNodeWithTarget(target, node); in TrySaveTargetAndIdNode()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/modules/
H A Djsi_matrix4_module.cpp238 Point target = matrix * point; in TransformPoint() local
240 result->SetProperty(runtime, runtime->NewInt32(0), runtime->NewNumber(target.GetX())); in TransformPoint()
241 result->SetProperty(runtime, runtime->NewInt32(1), runtime->NewNumber(target.GetY())); in TransformPoint()
/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/src/
H A Dasset_loader.cpp363 const auto targetParam = params.find("target"); in LoadJsonEntityCollection()
393 patchedDepUri.append("?target=").append(entityTarget); in LoadJsonEntityCollection()
531 if (track->target) { in UpdateTrackTargets()
533 to_hex(static_cast<const Entity&>(track->target).id).data()); in UpdateTrackTargets()
535 track->target = entityManager.GetReferenceCounted(*targetIt); in UpdateTrackTargets()
559 const auto targetParam = params.find("target"); in GltfImportFinished()
/foundation/graphic/graphic_3d/lume/LumeEcsSerializer/Util/src/util/
H A Dio_util.cpp115 // Verify that the target path exists. (and create missing ones) in CreateDirectories()
484 void ReplaceInString(BASE_NS::string& string, const BASE_NS::string& target, const BASE_NS::string& replacement) in ReplaceInString() argument
486 auto pos = string.find(target, 0UL); in ReplaceInString()
489 pos = string.find(target, pos); in ReplaceInString()
/foundation/communication/dsoftbus/sdk/bus_center/service/src/
H A Dclient_bus_center.c349 int32_t JoinLNN(const char *pkgName, ConnectionAddr *target, OnJoinLNNResult cb) in JoinLNN() argument
351 if (pkgName == NULL || target == NULL || cb == NULL) { in JoinLNN()
361 ret = JoinLNNInner(pkgName, target, cb); in JoinLNN()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/
H A Dpackage_file.cpp58 static void Clear(ofstream &target, const string &targetFile) in Clear() argument
60 if (target.is_open()) { in Clear()
61 target.close(); in Clear()
/kernel/linux/linux-5.10/drivers/acpi/acpica/
H A Dacmacros.h325 #define ACPI_INSERT_BITS(target, mask, source) \
326 target = ((target & (~(mask))) | (source & mask))
/kernel/linux/linux-5.10/arch/powerpc/platforms/8xx/
H A Dcpm1.c386 int __init cpm1_clk_setup(enum cpm_clk_target target, int clock, int mode) in cpm1_clk_setup() argument
449 switch (target) { in cpm1_clk_setup()
481 printk(KERN_ERR "cpm1_clock_setup: invalid clock target\n"); in cpm1_clk_setup()
486 if (clk_map[i][0] == target && clk_map[i][1] == clock) { in cpm1_clk_setup()
/kernel/linux/linux-5.10/arch/mips/kernel/
H A Dprocess.c205 #define J_TARGET(pc,target) \
206 (((unsigned long)(pc) & 0xf0000000) | ((target) << 2))
471 return J_TARGET(ip, ip->j_format.target); in get___schedule_addr()
721 * If we previously sent an IPI to the target CPU & it hasn't in raise_backtrace()
H A Dbranch.c238 *contpc |= (insn.j_format.target << 2); in __mm_isBranchInstr()
249 *contpc |= (insn.j_format.target << 1); in __mm_isBranchInstr()
571 epc |= (insn.j_format.target << 2); in __compute_return_epc_for_insn()
/kernel/linux/linux-5.10/arch/mips/mm/
H A Duasm.c533 u32 *first, u32 *end, u32 *target) in uasm_copy_handler()
535 long off = (long)(target - first); in uasm_copy_handler()
537 memcpy(target, first, (end - first) * sizeof(u32)); in uasm_copy_handler()
532 uasm_copy_handler(struct uasm_reloc *rel, struct uasm_label *lab, u32 *first, u32 *end, u32 *target) uasm_copy_handler() argument
/kernel/linux/linux-5.10/arch/powerpc/platforms/powermac/
H A Dsmp.c795 unsigned long target, flags; in smp_core99_kick_cpu() local
812 target = (unsigned long) __secondary_start_pmac_0 + nr * 8; in smp_core99_kick_cpu()
813 patch_branch((struct ppc_inst *)vector, target, BRANCH_SET_LINK); in smp_core99_kick_cpu()

Completed in 48 milliseconds

1...<<191192193194195196197198199200>>...306