Home
last modified time | relevance | path

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

12345678910>>...44

/freebsd-src/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-src/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 i
[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. The effective
[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
91 # The modifier for assignment operators starts with a ':'.
96 # When parsing an assignment operator fails because the operator is
126 # The assignment modifier can be used in an expression that is
161 # Conditional directives are evaluated in command line scope. An assignment
190 # 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.
H A Dvarname-dot-make-save_dollars.mk4 # the assignment operator ':=' converts '$$' to a single '$' or keeps it
12 # behavior of the assignment operator ':=' depends. NetBSD's usr.bin/make
27 # assignment is performed using ':='.
92 # right-hand side of the assignment operator ':=', it also affects dollars
H A Dparse-var.mk57 # left-hand side of a variable assignment
58 # right-hand side of a ':=' variable assignment
59 # right-hand side of a '!=' variable assignment
80 # side of the assignment, but only if they occur inside expressions.
/freebsd-src/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>> Solutio
[all...]
/freebsd-src/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 necessary
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 assignment operator
117 // 2. If 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 and
122 // whenever we can apply any of these optimizations for both the copy assignment and the move assignment
[all...]
/freebsd-src/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 { argument
1033 /// ID of the assignment. nullptr if Status is not Known. argument
1039 bool isSameSourceAssignment(const Assignment &Other) const { in isSameSourceAssignment()
1061 static Assignment mak in make()
1030 struct Assignment { global() struct in __anon504de5160211::AssignmentTrackingLowering
1036 Source__anon504de5160211::AssignmentTrackingLowering::Assignment global() argument
1038 isSameSourceAssignment__anon504de5160211::AssignmentTrackingLowering::Assignment isSameSourceAssignment() argument
1043 dump__anon504de5160211::AssignmentTrackingLowering::Assignment dump() argument
1060 make__anon504de5160211::AssignmentTrackingLowering::Assignment make() argument
1063 make__anon504de5160211::AssignmentTrackingLowering::Assignment make() argument
1068 make__anon504de5160211::AssignmentTrackingLowering::Assignment make() argument
1071 makeFromMemDef__anon504de5160211::AssignmentTrackingLowering::Assignment makeFromMemDef() argument
1074 makeNoneOrPhi__anon504de5160211::AssignmentTrackingLowering::Assignment makeNoneOrPhi() argument
1076 Assignment__anon504de5160211::AssignmentTrackingLowering::Assignment Assignment() argument
1077 Assignment__anon504de5160211::AssignmentTrackingLowering::Assignment Assignment() argument
1081 Assignment__anon504de5160211::AssignmentTrackingLowering::Assignment Assignment() argument
1086 Assignment__anon504de5160211::AssignmentTrackingLowering::Assignment Assignment() argument
1091 Assignment__anon504de5160211::AssignmentTrackingLowering::Assignment Assignment() argument
[all...]
/freebsd-src/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 {
99 std::vector<Assignment> VarAssignments;
135 VarAssignments.resize(CNF.largestVar() + 1, Assignment::Unassigned);
178 // assignment. in clauseLiterals()
190 VarAssignments[Var] = VarAssignments[Var] == Assignment::AssignedTrue
191 ? Assignment::AssignedFalse
192 : Assignment::AssignedTrue;
203 unitPosLit ? Assignment
484 enum class Assignment : int8_t { global() enum in clang::dataflow::WatchedLiteralsSolverImpl
[all...]
H A DDebugSupport.cpp42 Solver::Result::Assignment Assignment) {
43 switch (Assignment) { in operator <<()
44 case Solver::Result::Assignment::AssignedFalse: in operator <<() argument
46 case Solver::Result::Assignment::AssignedTrue: in operator <<()
67 std::vector<std::pair<Atom, Solver::Result::Assignment>> Sorted = { in operator <<()
/freebsd-src/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-src/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-src/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. in getAssignmentInsts()
201 "Can't get assignment instructions for non-assign DVR!");
206 // Utilities for enumerating llvm.dbg.assign intrinsic from an assignment ID.
228 /// assignment they encode. in getAssignmentMarkers()
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
[all...]
/freebsd-src/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()
/freebsd-src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DBoolAssignmentChecker.cpp1 //== BoolAssignmentChecker.cpp - Boolean assignment checker -----*- C++ -*--==//
10 // performs checks for assignment of non-Boolean values to Boolean variables.
27 const BugType BT{this, "Assignment of a non-Boolean value"};
40 : "Assignment of a non-Boolean value"; in emitReport()

12345678910>>...44