Home
last modified time | relevance | path

Searched refs:V (Results 226 – 250 of 4509) sorted by relevance

12345678910>>...181

/netbsd/external/gpl2/groff/dist/font/devps/
H A DHNI14 A V -70
30 D V -70
55 L V -110
62 O V -50
74 R V -50
98 V u -70
99 V ; -40
101 V o -80
102 V - -80
104 V e -80
[all …]
H A DHNR13 A V -56
29 D V -56
54 L V -89
61 O V -40
73 R V -40
97 V u -56
98 V ; -32
100 V o -65
101 V - -65
103 V e -65
[all …]
H A DHR13 A V -70
29 D V -70
54 L V -110
61 O V -50
73 R V -50
97 V u -70
98 V ; -40
100 V o -80
101 V - -80
103 V e -80
[all …]
H A DHI14 A V -70
30 D V -70
55 L V -110
62 O V -50
74 R V -50
98 V u -70
99 V ; -40
101 V o -80
102 V - -80
104 V e -80
[all …]
/netbsd/external/gpl2/groff/dist/font/devdvi/
H A DTBEC18 bq V -133952
57 Bq V -133952
162 A V -133952
176 D V -33488
249 L V -133952
263 O V -33488
338 R V -133952
395 V O -33488
404 V C -33488
405 V G -33488
[all …]
H A DTREC18 bq V -116480
57 Bq V -116480
162 A V -116480
176 D V -29120
263 O V -29120
367 V o -87360
368 V a -87360
369 V e -87360
370 V y -87360
371 V u -87360
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
H A DNVPTXLowerArgs.cpp209 I.OldInstruction->users(), [NewInst, &ItemsToConvert](Value *V) { in convertToParamAS() argument
210 ItemsToConvert.push_back({cast<Instruction>(V), NewInst}); in convertToParamAS()
239 auto IsALoadChainInstr = [](Value *V) -> bool { in handleByValParam() argument
240 if (isa<GetElementPtrInst>(V) || isa<BitCastInst>(V) || isa<LoadInst>(V)) in handleByValParam()
243 if (auto *ASC = dyn_cast<AddrSpaceCastInst>(V)) { in handleByValParam()
251 Value *V = ValuesToCheck.pop_back_val(); in handleByValParam() local
252 if (!IsALoadChainInstr(V)) { in handleByValParam()
258 if (!isa<LoadInst>(V)) in handleByValParam()
259 llvm::append_range(ValuesToCheck, V->users()); in handleByValParam()
271 llvm::for_each(UsersToUpdate, [ArgInParamAS](Value *V) { in handleByValParam() argument
[all …]
/netbsd/external/gpl3/gcc/dist/libphobos/src/std/
H A Duri.d79 dchar V; in URI_Encode() local
117 V = C; in URI_Encode()
120 if (V <= 0x7F) in URI_Encode()
122 Octet[0] = cast(char) V; in URI_Encode()
125 else if (V <= 0x7FF) in URI_Encode()
131 else if (V <= 0xFFFF) in URI_Encode()
138 else if (V <= 0x1FFFFF) in URI_Encode()
201 uint V; variable
267 V = (V << 6) | (B & 0x3F);
269 if (V > 0x10FFFF)
[all …]
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
H A DFormatters.h51 static void format(const codeview::TypeIndex &V, raw_ostream &Stream,
53 if (V.isNoneType())
56 Stream << formatv("{0:X+4}", V.getIndex());
57 if (V.isSimple())
58 Stream << " (" << codeview::TypeIndex::simpleTypeName(V) << ")";
64 static void format(const codeview::GUID &V, llvm::raw_ostream &Stream,
66 Stream << V;
H A DDebugSubsectionVisitor.h65 DebugSubsectionVisitor &V,
70 Error visitDebugSubsections(T &&FragmentRange, DebugSubsectionVisitor &V, in visitDebugSubsections() argument
75 if (auto EC = visitDebugSubsection(L, V, State)) in visitDebugSubsections()
83 Error visitDebugSubsections(T &&FragmentRange, DebugSubsectionVisitor &V) { in visitDebugSubsections() argument
85 return detail::visitDebugSubsections(std::forward<T>(FragmentRange), V, in visitDebugSubsections()
90 Error visitDebugSubsections(T &&FragmentRange, DebugSubsectionVisitor &V, in visitDebugSubsections() argument
93 return detail::visitDebugSubsections(std::forward<T>(FragmentRange), V, in visitDebugSubsections()
98 Error visitDebugSubsections(T &&FragmentRange, DebugSubsectionVisitor &V, in visitDebugSubsections() argument
102 return detail::visitDebugSubsections(std::forward<T>(FragmentRange), V, in visitDebugSubsections()
/netbsd/usr.bin/make/unit-tests/
H A Ddirective-for-escape.mk42 V= value
43 VALUES= $$ $${V} $${V:=-with-modifier} $$(V) $$(V:=-with-modifier)
59 .for i in $$ $${V} $${V:=-with-modifier} $$(V) $$(V:=-with-modifier)
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DValueLattice.h129 MayIncludeUndef = V;
133 MergeOptions &setCheckWiden(bool V = true) {
134 CheckWiden = V;
303 if (isa<UndefValue>(V))
311 if (ConstantInt *CI = dyn_cast<ConstantInt>(V))
318 ConstVal = V;
322 bool markNotConstant(Constant *V) { in markNotConstant() argument
323 assert(V && "Marking constant with NULL"); in markNotConstant()
324 if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) in markNotConstant()
328 if (isa<UndefValue>(V)) in markNotConstant()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DGVNSink.cpp293 return llvm::all_of(Values, [&](Value *V) { return V == Values[0]; }); in areAllIncomingValuesSame() argument
298 Values, [&](Value *V) { return V->getType() == Values[0]->getType(); }); in areAllIncomingValuesSameType() argument
302 return llvm::any_of(Values, [&](Value *V) { return isa<Constant>(V); }); in areAnyIncomingValuesConstant() argument
326 static unsigned getHashValue(const ModelledPHI &V) { return V.hash(); } in getHashValue()
370 void setVolatile(bool V) { Volatile = V; } in setVolatile() argument
380 for (auto *V : operands()) in getHashValue() local
431 if (!isa<Instruction>(V)) { in lookupOrAdd()
500 hash_code H = exp->getHashValue([=](Value *V) { return lookupOrAdd(V); }); in lookupOrAdd() argument
510 ValueNumbering[V] = e; in lookupOrAdd()
604 PHIContents.insert(V); in analyzeInitialPHIs()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp482 if (V == LHS) { in collectSingleShuffleElements()
488 if (V == RHS) { in collectSingleShuffleElements()
1002 Value *V = &I; in visitInsertValueInst() local
1013 V = UserInsInst; in visitInsertValueInst()
1440 if (V != &IE) in visitInsertElementInst()
1684 Value *V; in evaluateInDifferentElementOrder() local
1958 Value *V; in foldSelectShuffle() local
1963 V = X; in foldSelectShuffle()
2389 if (V != &SVI) in visitShuffleVectorInst()
2440 Value *V = LHS; in visitShuffleVectorInst() local
[all …]
/netbsd/external/gpl3/binutils.old/dist/gas/doc/
H A Dc-riscv.texi8 @node RISC-V-Dependent
16 @cindex RISC-V support
18 * RISC-V-Options:: RISC-V Options
19 * RISC-V-Directives:: RISC-V Directives
20 * RISC-V-Formats:: RISC-V Instruction Formats
21 * RISC-V-ATTRIBUTE:: RISC-V Object Attribute
24 @node RISC-V-Options
25 @section RISC-V Options
65 @node RISC-V-Directives
183 @node RISC-V-Formats
[all …]
/netbsd/external/gpl3/gdb/dist/sim/testsuite/sim/h8300/
H A Ddiv.s25 ;; test ccr ; H=0 N=1 Z=0 V=0 C=0
48 ;; test ccr ; H=0 N=1 Z=0 V=0 C=0
72 ;; test ccr ; H=0 N=1 Z=0 V=0 C=0
95 ;; test ccr ; H=0 N=1 Z=0 V=0 C=0
119 ;; test ccr ; H=0 N=0 Z=0 V=0 C=0
139 ;; test ccr ; H=0 N=0 Z=0 V=0 C=0
160 ;; test ccr ; H=0 N=0 Z=0 V=0 C=0
180 ;; test ccr ; H=0 N=0 Z=0 V=0 C=0
204 ;; test ccr ; H=0 N=1 Z=0 V=0 C=0
228 ;; test ccr ; H=0 N=1 Z=0 V=0 C=0
[all …]
/netbsd/external/gpl3/gdb.old/dist/sim/testsuite/sim/h8300/
H A Ddiv.s25 ;; test ccr ; H=0 N=1 Z=0 V=0 C=0
48 ;; test ccr ; H=0 N=1 Z=0 V=0 C=0
72 ;; test ccr ; H=0 N=1 Z=0 V=0 C=0
95 ;; test ccr ; H=0 N=1 Z=0 V=0 C=0
119 ;; test ccr ; H=0 N=0 Z=0 V=0 C=0
139 ;; test ccr ; H=0 N=0 Z=0 V=0 C=0
160 ;; test ccr ; H=0 N=0 Z=0 V=0 C=0
180 ;; test ccr ; H=0 N=0 Z=0 V=0 C=0
204 ;; test ccr ; H=0 N=1 Z=0 V=0 C=0
228 ;; test ccr ; H=0 N=1 Z=0 V=0 C=0
[all …]
/netbsd/external/bsd/pam-u2f/dist/
H A Dconfigure.ac113 AC_CONFIG_FILES([tests/credentials/new_double_-P-V.cred])
121 AC_CONFIG_FILES([tests/credentials/new_double_-r-V.cred])
124 AC_CONFIG_FILES([tests/credentials/new_double_-V.cred])
132 AC_CONFIG_FILES([tests/credentials/new_-P-V-N.cred])
133 AC_CONFIG_FILES([tests/credentials/new_-P-V.cred])
137 AC_CONFIG_FILES([tests/credentials/new_-r-P-V-N.cred])
138 AC_CONFIG_FILES([tests/credentials/new_-r-P-V.cred])
140 AC_CONFIG_FILES([tests/credentials/new_-r-V-N.cred])
141 AC_CONFIG_FILES([tests/credentials/new_-r-V.cred])
143 AC_CONFIG_FILES([tests/credentials/new_-V-N.cred])
[all …]
/netbsd/external/gpl3/gdb/dist/sim/testsuite/sim/bfin/
H A Drandom_0010.S11 R6 = R5 << 0x19 (V, S);
18 R2 = R5 << 0x11 (V, S);
25 R0 = R1 << 0x17 (V, S);
32 R6 = R4 << 0x14 (V, S);
39 R3 = R4 << 0x1a (V, S);
46 R5 = R7 << 0x18 (V, S);
53 R1 = R2 << 0x16 (V, S);
60 R2 = R3 << 0x19 (V, S);
67 R0 = R2 << 0x1c (V, S);
74 R7 = R3 << 0x1f (V, S);
/netbsd/external/gpl3/gdb.old/dist/sim/testsuite/sim/bfin/
H A Drandom_0010.S11 R6 = R5 << 0x19 (V, S);
18 R2 = R5 << 0x11 (V, S);
25 R0 = R1 << 0x17 (V, S);
32 R6 = R4 << 0x14 (V, S);
39 R3 = R4 << 0x1a (V, S);
46 R5 = R7 << 0x18 (V, S);
53 R1 = R2 << 0x16 (V, S);
60 R2 = R3 << 0x19 (V, S);
67 R0 = R2 << 0x1c (V, S);
74 R7 = R3 << 0x1f (V, S);
/netbsd/external/apache2/llvm/dist/llvm/lib/IR/
H A DSafepointIRVerifier.cpp339 if (!Visited.insert(V).second) in getBaseType()
362 if (isa<Constant>(V)) { in getBaseType()
365 if (V != Constant::getNullValue(V->getType())) in getBaseType()
467 bool isValuePoisoned(const Value *V) const { return PoisonedDefs.count(V); } in isValuePoisoned()
695 for (const Value *V : I.operands()) in removeValidUnrelocatedDefs() local
697 isNotExclusivelyConstantDerived(V) && !AvailableSet.count(V)) { in removeValidUnrelocatedDefs()
698 if (isValuePoisoned(V)) in removeValidUnrelocatedDefs()
866 for (const Value *V : I.operands()) in verifyInstruction() local
868 isNotExclusivelyConstantDerived(V) && !AvailableSet.count(V)) in verifyInstruction()
869 reportInvalidUse(*V, I); in verifyInstruction()
[all …]
/netbsd/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DTaint.h35 LLVM_NODISCARD ProgramStateRef addTaint(ProgramStateRef State, SVal V,
48 LLVM_NODISCARD ProgramStateRef removeTaint(ProgramStateRef State, SVal V);
70 bool isTainted(ProgramStateRef State, SVal V,
91 const SVal V;
94 TaintBugVisitor(const SVal V) : V(V) {} in TaintBugVisitor() argument
95 void Profile(llvm::FoldingSetNodeID &ID) const override { ID.Add(V); } in Profile()
/netbsd/crypto/external/bsd/openssl.old/dist/crypto/modes/
H A Dgcm128.c32 V.lo = (V.hi<<63)|(V.lo>>1); \
33 V.hi = (V.hi>>1 )^T; \
37 V.lo = (V.hi<<63)|(V.lo>>1); \
38 V.hi = (V.hi>>1 )^((u64)T<<32); \
81 u128 V; in gcm_init_8bit() local
85 V.hi = H[0]; in gcm_init_8bit()
86 V.lo = H[1]; in gcm_init_8bit()
224 u128 V; in gcm_init_4bit() local
231 V.hi = H[0]; in gcm_init_4bit()
289 Htable[j].hi = V.lo << 32 | V.lo >> 32; in gcm_init_4bit()
[all …]
/netbsd/crypto/external/bsd/openssl/dist/crypto/modes/
H A Dgcm128.c34 V.lo = (V.hi<<63)|(V.lo>>1); \
35 V.hi = (V.hi>>1 )^T; \
39 V.lo = (V.hi<<63)|(V.lo>>1); \
40 V.hi = (V.hi>>1 )^((u64)T<<32); \
83 u128 V; in gcm_init_8bit() local
87 V.hi = H[0]; in gcm_init_8bit()
88 V.lo = H[1]; in gcm_init_8bit()
223 u128 V; in gcm_init_4bit() local
230 V.hi = H[0]; in gcm_init_4bit()
285 Htable[j].hi = V.lo << 32 | V.lo >> 32; in gcm_init_4bit()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DBitTracker.h198 bool operator== (const BitValue &V) const {
199 if (Type != V.Type)
201 if (Type == Ref && !(RefI == V.RefI))
205 bool operator!= (const BitValue &V) const {
206 return !operator==(V);
242 Type = V.Type; in meet()
253 static BitValue ref(const BitValue &V);
272 if (V.Type != Ref) in ref()
273 return BitValue(V.Type); in ref()
274 if (V.RefI.Reg != 0) in ref()
[all …]

12345678910>>...181