Home
last modified time | relevance | path

Searched full:assignment (Results 1 – 25 of 1084) sorted by relevance

12345678910>>...44

/freebsd/crypto/heimdal/lib/sl/
H A Dslc-gram.y48 extern struct assignment *assignment;
60 struct assignment *assignment; member
65 %type <assignment> assignment assignments
73 assignment = $1;
77 assignments : assignment assignments
82 | assignment
85 assignment : LITERAL '=' STRING
100 $$->u.assignment = $4;
109 struct assignment *assignment; variable
113 ex(struct assignment *a, const char *fmt, ...) in ex()
[all …]
H A Dslc-gram.c129 extern struct assignment *assignment;
161 struct assignment *assignment; member
469 "$accept", "start", "assignments", "assignment", 0
1361 assignment = (yyvsp[(1) - (1)].assignment);
1368 (yyvsp[(1) - (2)].assignment)->next = (yyvsp[(2) - (2)].assignment);
1369 (yyval.assignment) = (yyvsp[(1) - (2)].assignment);
1376 (yyval.assignment) = malloc(sizeof(*(yyval.assignment)));
1377 (yyval.assignment)->name = (yyvsp[(1) - (3)].string);
1378 (yyval.assignment)->type = a_value;
1379 (yyval.assignment)->lineno = lineno;
[all …]
H A Dslc.h39 struct assignment { struct
44 struct assignment *assignment; argument
47 struct assignment *next; argument
/freebsd/contrib/bmake/unit-tests/
H A Dvar-op-sunsh.mk3 # Tests for the :sh= variable assignment operator, which runs its right-hand
5 # assignment operator, adopted from Sun make.
9 # This is the idiomatic form of the Sun shell assignment operator.
10 # The assignment operator is directly preceded by the ':sh'.
16 # It is also possible to have whitespace around the :sh assignment
27 # Since 2020-10-04, this is a normal variable assignment to the variable named
28 # 'VAR:shell', using the '=' assignment operator.
39 # assignment operator.
53 # The variable modifier ':sh' and the assignment operator modifier ':sh'.
55 # 2020-10-04, the parser regarded it as an assignment operator modifier, in
[all …]
H A Dvar-op-expand.mk3 # Tests for the := variable assignment operator, which expands its
14 # If the right-hand side does not contain a dollar sign, the ':=' assignment
15 # operator has the same effect as the '=' assignment operator.
21 # When a ':=' assignment is performed, its right-hand side is evaluated and
86 # XXX: Even though this is a ':=' assignment, the '${UNDEF}' in the part of
138 # assignment. The undefined variables are kept as-is and are later expanded
141 # Contrary to the assignment operator '=', the assignment operator ':='
152 # Just for comparison, the previous example using the assignment operator '='
153 # instead of ':='. The right-hand side of the assignment is not evaluated at
154 # the time of assignment but only later, when ${VAR} appears in the condition.
[all …]
H A Dvar-op-assign.mk3 # Tests for the = variable assignment operator, which overwrites an existing
6 # This is a simple variable assignment.
7 # To the left of the assignment operator '=' there is the variable name,
13 # This condition demonstrates that whitespace around the assignment operator
20 # Whitespace to the left of the assignment operator is ignored as well.
47 # Since the right-hand side of a '=' assignment is not expanded at the time
57 # In a variable assignment, the variable name must consist of a single word.
H A Dvar-scope-local.mk142 # In the following line, the ':=' may either be interpreted as an assignment
144 # name and the assignment operator '='. It is the latter since in an
145 # assignment, the left-hand side must be a single word or empty.
153 # line is parsed as a variable assignment since its left-hand side is a single
187 # Begin tests for custom target-local variables, for all 5 variable assignment
211 # If the sources of a dependency line look like a variable assignment, make
212 # treats them as such. There is only a single variable assignment per
213 # dependency line, which makes whitespace around the assignment operator
233 # happens to the right of the assignment operator '=', the expanded text does
234 # not influence the parsing of the variable assignment
[all...]
H A Dvar-op-append.mk3 # Tests for the '+=' variable assignment operator, which appends to a
10 # The '+=' variable assignment operator is planned to be added in
17 # The '+=' variable assignment operator was added before 1993-03-21.
39 # '+=' assignment operator. As far as possible, the '+' is interpreted as
40 # part of the assignment operator.
62 # variable. After the assignment, the environment variable is left as-is,
H A Dvar-op-default.mk3 # Tests for the ?= variable assignment operator, which only assigns
7 # from the variable assignment.
35 # performs the variable assignment, resulting in $i == "default".
45 # and 'VAR.${param}' expand to 'VAR.param', and the second '?=' assignment
54 # fragile), the variable assignment with "not used" was performed, and only
H A Dvarmod-assign.mk13 # the '::?=' modifier applies the assignment operator '?=' 3 times. The
21 # the modifier '::=' applies the assignment operator '=' 3 times. The
29 # the modifier '::+=' applies the assignment operator '+=' 3 times. The
37 # the modifier '::!=' applies the assignment operator '!=' 3 times. Just as
94 # The modifier for assignment operators starts with a ':'.
100 # When parsing an assignment operator fails because the operator is
131 # The assignment modifier can be used in an expression that is
166 # Conditional directives are evaluated in command line scope. An assignment
195 # The commands of a target are evaluated in target scope. An assignment
H A Dcmdline-undefined.mk7 # '=' assignment operator do get their variable name expanded
11 @echo 'The = assignment operator'
16 # The interesting case is using the ':=' assignment operator, which
19 @echo 'The := assignment operator'
H A Ddirective.mk26 # from a variable assignment to ".info", which syntactically is very similar.
28 .info:= value # This is a variable assignment.
29 .info?= value # This is a variable assignment as well.
H A Dvarname-dot-curdir.mk25 # Until 2020-10-04, assigning the result of a shell assignment to .CURDIR
36 # A normal assignment works fine, as does a substitution assignment.
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DWatchedLiteralsSolver.cpp56 /// The search for a satisfying assignment of the variables in `Formula` will
60 /// consistent partial assignment, `Level` will be incremented. Otherwise, if
88 enum class Assignment : int8_t { enum in clang::dataflow::__anondce44e890111::WatchedLiteralsSolverImpl
99 std::vector<Assignment> VarAssignments;
135 VarAssignments.resize(CNF.largestVar() + 1, Assignment::Unassigned); in WatchedLiteralsSolverImpl()
178 // assignment. in solve()
190 VarAssignments[Var] = VarAssignments[Var] == Assignment::AssignedTrue in solve()
191 ? Assignment::AssignedFalse in solve()
192 : Assignment::AssignedTrue; in solve()
203 unitPosLit ? Assignment::AssignedTrue : Assignment::AssignedFalse; in solve()
[all …]
H A DDebugSupport.cpp42 Solver::Result::Assignment Assignment) { in operator <<() argument
43 switch (Assignment) { in operator <<()
44 case Solver::Result::Assignment::AssignedFalse: in operator <<()
46 case Solver::Result::Assignment::AssignedTrue: in operator <<()
67 std::vector<std::pair<Atom, Solver::Result::Assignment>> Sorted = { in operator <<()
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DSolver.h32 /// Indicates that there exists a satisfying assignment for a boolean
36 /// Indicates that there is no satisfying assignment for a boolean
41 /// assignment for a boolean formula.
45 /// A boolean value is set to true or false in a truth assignment.
46 enum class Assignment : uint8_t { AssignedFalse = 0, AssignedTrue = 1 }; enum
50 static Result Satisfiable(llvm::DenseMap<Atom, Assignment> Solution) { in Satisfiable()
66 /// Returns a truth assignment to boolean values that satisfies the queried
68 std::optional<llvm::DenseMap<Atom, Assignment>> getSolution() const { in getSolution()
74 std::optional<llvm::DenseMap<Atom, Assignment>> Solution) in Result()
78 std::optional<llvm::DenseMap<Atom, Assignment>> Solution;
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__ranges/
H A Dmovable_box.h36 // and basically doing destroy-then-copy-construct in the assignment operator. The empty state is n…
54 // Primary template - uses std::optional and introduces an empty state in case assignment fails.
113 // an empty state to represent failure to perform an assignment. For copy-assignment, this happens:
115 // 1. If the type is copyable (which includes copy-assignment), we can use the type's own assignmen…
117 …the type is not copyable, but it is nothrow-copy-constructible, then we can implement assignment as
120 // The exact same reasoning can be applied for move-assignment, with copyable replaced by movable a…
122 …enever we can apply any of these optimizations for both the copy assignment and the move assignment
136 // When _Tp doesn't have an assignment operator, we must implement __movable_box's assignment opera…
144 // Hence, when the _Tp doesn't have an assignment operator, we can't risk making it a potentially-o…
202 // Implementation of assignment operators in case we perform optimization (1)
[all …]
/freebsd/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/
H A DGIMatchDagInstr.cpp
H A DGIMatchDag.cpp
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DAssignmentTrackingAnalysis.cpp987 /// that interprets assignment tracking debug info metadata and stores in IR to
1016 /// An abstraction of the assignment of a value to a variable or memory
1019 /// An Assignment is Known or NoneOrPhi. A Known Assignment means we have a
1021 /// can't) know the ID of the last assignment that took place.
1023 /// The Status of the Assignment (Known or NoneOrPhi) is another
1031 struct Assignment { struct in __anon3afac2c40211::AssignmentTrackingLowering
1033 /// ID of the assignment. nullptr if Status is not Known.
1039 bool isSameSourceAssignment(const Assignment &Other) const { in isSameSourceAssignment() argument
1061 static Assignment make(DIAssignID *ID, DbgAssignIntrinsic *Source) { in make() argument
1062 return Assignment(Known, ID, Source); in make()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/soc/fsl/cpm_qe/qe/
H A Dpincfg.txt6 open_drain, assignment, has_irq.
22 - assignment : function number of the pin according to the Pin Assignment
31 /* port pin dir open_drain assignment has_irq */
/freebsd/contrib/bc/include/
H A Dlex.h197 /// Power assignment operator.
200 /// Multiplication assignment operator.
203 /// Division assignment operator.
206 /// Modulus assignment operator.
209 /// Addition assignment operator.
212 /// Subtraction assignment operator.
217 /// Places (truncate or extend) assignment operator.
220 /// Left (decimal) shift assignment operator.
223 /// Right (decimal) shift assignment operator.
229 /// Assignment operato
[all...]
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DDebugInfo.h178 /// Assignment Tracking (at).
181 // Utilities for enumerating storing instructions from an assignment ID.
192 /// assignment that \p DAI encodes.
201 "Can't get assignment instructions for non-assign DVR!"); in getAssignmentInsts()
206 // Utilities for enumerating llvm.dbg.assign intrinsic from an assignment ID.
228 /// assignment they encode.
250 /// Remove all Assignment Tracking related intrinsics and metadata from \p F.
363 /// The pass sets the debug-info-assignment-tracking module flag to true to
364 /// indicate assignment tracking has been enabled.
366 /// Note: this method does not set the debug-info-assignment-tracking module
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/
H A DRISCVFixupKinds.h
/freebsd/contrib/libfido2/tools/
H A Dassert_get.c45 char *assignment; in parse_toggle() local
49 if ((assignment = strdup(str)) == NULL) in parse_toggle()
51 if ((val = strchr(assignment, '=')) == NULL) in parse_toggle()
52 errx(1, "invalid assignment '%s'", assignment); in parse_toggle()
54 key = assignment; in parse_toggle()
73 free(assignment); in parse_toggle()

12345678910>>...44