Home
last modified time | relevance | path

Searched refs:CVT (Results 1 – 25 of 70) sorted by relevance

123

/netbsd/sys/compat/netbsd32/
H A Dnetbsd32_compat_14_sysv.c67 CVT(uid); in netbsd32_ipc_perm14_to_native()
68 CVT(gid); in netbsd32_ipc_perm14_to_native()
69 CVT(cuid); in netbsd32_ipc_perm14_to_native()
70 CVT(cgid); in netbsd32_ipc_perm14_to_native()
72 #undef CVT in netbsd32_ipc_perm14_to_native()
81 CVT(uid); in native_to_netbsd32_ipc_perm14()
82 CVT(gid); in native_to_netbsd32_ipc_perm14()
86 #undef CVT in native_to_netbsd32_ipc_perm14()
109 #undef CVT in netbsd32_msqid_ds14_to_native()
127 #undef CVT in native_to_netbsd32_msqid_ds14()
[all …]
/netbsd/sys/compat/sys/
H A Dshm.h101 CVT(shm_lpid); in __shmid_ds14_to_native()
102 CVT(shm_cpid); in __shmid_ds14_to_native()
107 #undef CVT in __shmid_ds14_to_native()
120 CVT(shm_lpid); in __native_to_shmid_ds14()
121 CVT(shm_cpid); in __native_to_shmid_ds14()
126 #undef CVT in __native_to_shmid_ds14()
138 CVT(shm_lpid); in __shmid_ds13_to_native()
139 CVT(shm_cpid); in __shmid_ds13_to_native()
144 #undef CVT in __shmid_ds13_to_native()
157 CVT(shm_lpid); in __native_to_shmid_ds13()
[all …]
H A Dmsg.h98 CVT(msg_qnum); in __msqid_ds13_to_native()
100 CVT(msg_lspid); in __msqid_ds13_to_native()
101 CVT(msg_lrpid); in __msqid_ds13_to_native()
102 CVT(msg_stime); in __msqid_ds13_to_native()
105 #undef CVT in __msqid_ds13_to_native()
117 CVT(msg_qnum); in __native_to_msqid_ds13()
124 #undef CVT in __native_to_msqid_ds13()
141 CVT(msg_qnum); in __msqid_ds14_to_native()
148 #undef CVT in __msqid_ds14_to_native()
160 CVT(msg_qnum); in __native_to_msqid_ds14()
[all …]
H A Dipc.h79 CVT(uid); in __ipc_perm14_to_native()
80 CVT(gid); in __ipc_perm14_to_native()
81 CVT(cuid); in __ipc_perm14_to_native()
82 CVT(cgid); in __ipc_perm14_to_native()
83 CVT(mode); in __ipc_perm14_to_native()
84 #undef CVT in __ipc_perm14_to_native()
93 CVT(uid); in __native_to_ipc_perm14()
94 CVT(gid); in __native_to_ipc_perm14()
95 CVT(cuid); in __native_to_ipc_perm14()
96 CVT(cgid); in __native_to_ipc_perm14()
[all …]
H A Dsem.h68 CVT(sem_nsems); in __semid_ds13_to_native()
69 CVT(sem_otime); in __semid_ds13_to_native()
70 CVT(sem_ctime); in __semid_ds13_to_native()
71 #undef CVT in __semid_ds13_to_native()
83 CVT(sem_nsems); in __native_to_semid_ds13()
86 #undef CVT in __native_to_semid_ds13()
97 CVT(sem_nsems); in __semid_ds14_to_native()
98 CVT(sem_otime); in __semid_ds14_to_native()
99 CVT(sem_ctime); in __semid_ds14_to_native()
100 #undef CVT in __semid_ds14_to_native()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
H A DTypeRecordHelpers.cpp18 template <typename RecordT> static ClassOptions getUdtOptions(CVType CVT) { in getUdtOptions() argument
20 if (auto EC = TypeDeserializer::deserializeAs<RecordT>(CVT, Record)) { in getUdtOptions()
27 bool llvm::codeview::isUdtForwardRef(CVType CVT) { in isUdtForwardRef() argument
29 switch (CVT.kind()) { in isUdtForwardRef()
33 UdtOptions = getUdtOptions<ClassRecord>(std::move(CVT)); in isUdtForwardRef()
36 UdtOptions = getUdtOptions<EnumRecord>(std::move(CVT)); in isUdtForwardRef()
39 UdtOptions = getUdtOptions<UnionRecord>(std::move(CVT)); in isUdtForwardRef()
47 TypeIndex llvm::codeview::getModifiedType(const CVType &CVT) { in getModifiedType() argument
48 assert(CVT.kind() == LF_MODIFIER); in getModifiedType()
50 discoverTypeIndices(CVT, Refs); in getModifiedType()
H A DSimpleTypeSerializer.cpp44 CVType CVT(Prefix, sizeof(RecordPrefix)); in serialize() local
46 cantFail(Mapping.visitTypeBegin(CVT)); in serialize()
47 cantFail(Mapping.visitKnownRecord(CVT, Record)); in serialize()
48 cantFail(Mapping.visitTypeEnd(CVT)); in serialize()
53 Prefix->RecordKind = CVT.kind(); in serialize()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeDeserializer.h42 template <typename T> static Error deserializeAs(CVType &CVT, T &Record) { in deserializeAs() argument
43 Record.Kind = static_cast<TypeRecordKind>(CVT.kind()); in deserializeAs()
44 MappingInfo I(CVT.content()); in deserializeAs()
45 if (auto EC = I.Mapping.visitTypeBegin(CVT)) in deserializeAs()
47 if (auto EC = I.Mapping.visitKnownRecord(CVT, Record)) in deserializeAs()
49 if (auto EC = I.Mapping.visitTypeEnd(CVT)) in deserializeAs()
61 CVType CVT(Data); in deserializeAs()
62 if (auto EC = deserializeAs<T>(CVT, Record)) in deserializeAs()
H A DTypeRecordHelpers.h21 bool isUdtForwardRef(CVType CVT);
25 TypeIndex getModifiedType(const CVType &CVT);
/netbsd/external/bsd/pcc/dist/pcc/arch/vax/
H A Dlocal2.c203 #define CVT 2 /* cvt + src type + dst type */ macro
212 { MVD, MVD, CVT, CVT, CVT, CVT, CSE, CSE, CVT, CVT },
214 { MVD, MVD, MVD, MVD, CVT, CVT, CSE, CSE, CVT, CVT },
216 { MVD, MVD, MVD, MVD, MVD, MVD, MLE, MLE, CVT, CVT },
220 { CVT, CVT, CVT, CVT, CVT, CVT, 'N', 'O', MVD, CVT },
221 { CVT, CVT, CVT, CVT, CVT, CVT, 'P', 'Q', CVT, MVD },
259 case CVT: in sconv()
/netbsd/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
H A DNativeEnumTypes.cpp29 CVType CVT = Types.getType(*TI); in NativeEnumTypes() local
30 TypeLeafKind K = CVT.kind(); in NativeEnumTypes()
33 if (!isUdtForwardRef(CVT)) in NativeEnumTypes()
36 TypeIndex ModifiedTI = getModifiedType(CVT); in NativeEnumTypes()
H A DSymbolCache.cpp123 codeview::CVType CVT) const { in createSymbolForModifiedType()
125 if (auto EC = TypeDeserializer::deserializeAs<ModifierRecord>(CVT, Record)) { in createSymbolForModifiedType()
174 codeview::CVType CVT = Types.getType(Index); in findSymbolByTypeIndex() local
176 if (isUdtForwardRef(CVT)) { in findSymbolByTypeIndex()
195 switch (CVT.kind()) { in findSymbolByTypeIndex()
201 std::move(CVT)); in findSymbolByTypeIndex()
213 std::move(CVT)); in findSymbolByTypeIndex()
216 Id = createSymbolForModifiedType(Index, std::move(CVT)); in findSymbolByTypeIndex()
220 Index, std::move(CVT)); in findSymbolByTypeIndex()
224 Index, std::move(CVT)); in findSymbolByTypeIndex()
[all …]
H A DTpiStream.cpp195 CVType CVT = Types->getType(TI); in findFullDeclForForwardRef() local
196 if (CVT.kind() != F.kind()) in findFullDeclForForwardRef()
199 Expected<TagRecordHash> FullTRH = hashTagRecord(CVT); in findFullDeclForForwardRef()
H A DNativeTypeFunctionSig.cpp103 CVType CVT = Tpi.typeCollection().getType(ArgListTI); in initializeArgList() local
105 cantFail(TypeDeserializer::deserializeAs<ArgListRecord>(CVT, ArgList)); in initializeArgList()
/netbsd/usr.bin/xlint/lint1/
H A Dckctype.c102 for (on = arg; on->tn_op == CVT; on = on->tn_left) in check_ctype_arg()
108 if (arg->tn_op == CVT && arg->tn_cast) { in check_ctype_arg()
H A Dtree.c285 case CVT: in ic_expr()
2670 if (tn->tn_op == CVT && in is_const_char_pointer()
3279 if (op == CVT) in convert_integer_from_floating()
3397 if (op == CVT) in convert_integer_from_integer()
3451 if (op != CVT) in convert_integer_from_pointer()
3641 ntn->tn_op = CVT; in convert()
3643 ntn->tn_cast = op == CVT; in convert()
3943 if (range_check && op != CVT) in convert_constant()
4081 ntn->tn_op = CVT; in cast_to_union()
4150 tn = convert(CVT, 0, tp, tn); in cast()
[all …]
H A Dckgetopt.c103 NEED(last_arg->tn_op == CVT); in is_getopt_condition()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
H A DSymbolCache.h93 SymIndexId createSymbolForType(codeview::TypeIndex TI, codeview::CVType CVT, in createSymbolForType() argument
97 codeview::TypeDeserializer::deserializeAs<CVRecordT>(CVT, Record)) { in createSymbolForType()
107 codeview::CVType CVT) const;
/netbsd/external/mit/xorg/lib/libxcvt/
H A Dlibxcvt.pc.in6 Description: A Library to generate VESA CVT standard timing modelines.
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86ScheduleZnver2.td1297 // CVT(T)P(D|S)2DQ.
1299 def : InstRW<[Zn2WriteCVTPD2DQr], (instregex "(V?)CVT(T?)P(D|S)2DQrr")>;
1306 def : InstRW<[Zn2WriteCVTPD2DQLd], (instregex "(V?)CVT(T?)PD2DQrm")>;
1316 // CVT(T)PS2PI.
1324 // CVT(T)PD2PI.
1333 // CVT(T)SS2SI.
1335 def : InstRW<[Zn2WriteCVTPD2DQr], (instregex "(V?)CVT(T?)SS2SI(64)?rr")>;
1338 def : InstRW<[Zn2WriteCVTPD2DQLd], (instregex "(V?)CVT(T?)SS2SI(64)?rm")>;
1356 def : InstRW<[Zn2WriteCVSTSI2SIr], (instregex "(V?)CVT(T?)SD2SI(64)?rr")>;
1358 def : InstRW<[Zn2WriteCVSTSI2SILd], (instregex "(V?)CVT(T?)SD2SI(64)?rm")>;
H A DX86ScheduleZnver1.td1300 // CVT(T)PD2DQ.
1302 def : InstRW<[ZnWriteCVTDQ2PDr], (instregex "(V?)CVT(T?)PD2DQrr")>;
1309 def : InstRW<[ZnWriteCVTPD2DQLd], (instregex "(V?)CVT(T?)PD2DQrm")>;
1319 // CVT(T)PS2PI.
1327 // CVT(T)PD2PI.
1336 // CVT(T)SS2SI.
1338 def : InstRW<[ZnWriteCVTPD2DQr], (instregex "(V?)CVT(T?)SS2SI(64)?rr")>;
1341 def : InstRW<[ZnWriteCVTPD2DQLd], (instregex "(V?)CVT(T?)SS2SI(64)?rm")>;
1359 def : InstRW<[ZnWriteCVSTSI2SIr], (instregex "(V?)CVT(T?)SD2SI(64)?rr")>;
1361 def : InstRW<[ZnWriteCVSTSI2SILd], (instregex "(V?)CVT(T?)SD2SI(64)?rm")>;
/netbsd/external/gpl3/gdb/dist/sim/mips/
H A Dmips3d.igen92 010001,10,110,00000,5.FS,5.FD,100100:COP1:64,f::CVT.PW.PS
105 010001,10,100,00000,5.FS,5.FD,100110:COP1:64,f::CVT.PS.PW
/netbsd/external/gpl3/gdb.old/dist/sim/mips/
H A Dmips3d.igen92 010001,10,110,00000,5.FS,5.FD,100100:COP1:64,f::CVT.PW.PS
105 010001,10,100,00000,5.FS,5.FD,100110:COP1:64,f::CVT.PS.PW
/netbsd/external/gpl3/gcc.old/dist/gcc/config/arc/
H A DarcHS4x.md123 ;; FPU CVT unit
215 ;;BYPASS FPU CVT ->
/netbsd/external/gpl3/gcc/dist/gcc/config/arc/
H A DarcHS4x.md123 ;; FPU CVT unit
215 ;;BYPASS FPU CVT ->

123