Home
last modified time | relevance | path

Searched full:assign (Results 1 – 25 of 1601) sorted by relevance

12345678910>>...65

/freebsd/contrib/netbsd-tests/lib/libcurses/tests/
H A Dstd_defines8 assign TRUE 0x01
9 assign FALSE 0x00
13 assign COLOR_BLACK 0x00
14 assign COLOR_RED 0x01
15 assign COLOR_GREEN 0x02
16 assign COLOR_YELLOW 0x03
17 assign COLOR_BLUE 0x04
18 assign COLOR_MAGENTA 0x05
19 assign COLOR_CYAN 0x06
20 assign COLOR_WHITE 0x07
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueString.h33 m_current_value.assign(value); in OptionValueString()
34 m_default_value.assign(value); in OptionValueString()
40 m_current_value.assign(current_value); in OptionValueString()
42 m_default_value.assign(default_value); in OptionValueString()
49 m_current_value.assign(value); in m_validator()
50 m_default_value.assign(value); in m_validator()
58 m_current_value.assign(current_value); in m_validator()
60 m_default_value.assign(default_value); in m_validator()
108 m_default_value.assign(value); in SetDefaultValue()
/freebsd/contrib/bmake/unit-tests/
H A Dvarmod-assign.mk1 # $NetBSD: varmod-assign.mk,v 1.25 2024/08/29 20:20:36 rillig Exp $
8 all: mod-assign-empty-{1,2,3}
9 all: mod-assign-parse-{1,2,3}
10 all: mod-assign-shell-error
74 mod-assign-empty-1:
80 mod-assign-empty-2:
86 mod-assign-empty-3:
90 # expect: mod-assign-empty-3: VAR=overwritten
93 mod-assign-parse-1:
97 @echo ${ASSIGN::x}
[all …]
H A Dvarmod-assign.exp42 in target "mod-assign-empty-1"
45 in target "mod-assign-empty-2"
46 mod-assign-empty-3: VAR=overwritten
48 while evaluating variable "ASSIGN" with value ""
49 in target "mod-assign-parse-1"
52 while evaluating variable "ASSIGN" with value ""
53 in target "mod-assign-parse-3"
H A Ddirective-include-guard.exp41 Parse_PushInput: file variable-assign-indirect.tmp, line 1
42 Skipping 'variable-assign-indirect.tmp' because 'VARIABLE_ASSIGN_INDIRECT' is defined
43 Parse_PushInput: file variable-assign-late.tmp, line 1
44 Skipping 'variable-assign-late.tmp' because 'VARIABLE_ASSIGN_LATE' is defined
45 Parse_PushInput: file variable-assign-nested.tmp, line 1
46 Parse_PushInput: .for loop in variable-assign-nested.tmp, line 3
47 Skipping 'variable-assign-nested.tmp' because 'VARIABLE_ASSIGN_NESTED' is defined
H A Dvarname-dot-suffixes.exp7 Var_Parse: ${.SUFFIXES::=assign} (eval-keep-dollar-and-undefined)
9 Modifier part: "assign"
10 Global: ignoring '.SUFFIXES = assign' as it is read-only
11 Result of ${.SUFFIXES::=assign} is "" (eval-keep-dollar-and-undefined, regular)
H A Ddirective-include-guard.mk246 CASES+= variable-assign-indirect
247 LINES.variable-assign-indirect= \
251 # expect: Parse_PushInput: file variable-assign-indirect.tmp, line 1
252 # expect: Skipping 'variable-assign-indirect.tmp' because 'VARIABLE_ASSIGN_INDIRECT' is defined
256 CASES+= variable-assign-late
257 LINES.variable-assign-late= \
262 # expect: Parse_PushInput: file variable-assign-late.tmp, line 1
263 # expect: Skipping 'variable-assign-late.tmp' because 'VARIABLE_ASSIGN_LATE' is defined
267 CASES+= variable-assign-nested
268 LINES.variable-assign-nested= \
[all …]
/freebsd/sys/dev/ice/
H A Dice_resmgr.c61 * @num_res: the maximum number of resources it can assign
64 * assign up to the requested number of resources. Uses bit strings to track
83 * @num_res: the maximum number of resources it can assign
132 * ice_resmgr_assign_contiguous - Assign contiguous mapping of resources
135 * @num_res: the number of resources to assign
137 * Assign num_res number of contiguous resources into the idx mapping. On
162 * ice_resmgr_assign_scattered - Assign possibly scattered resources
165 * @num_res: the number of resources to assign
167 * Assign num_res number of resources into the idx_mapping. On success, idx
202 /* Release any resources we did assign u in ice_resmgr_assign_scattered()
[all...]
/freebsd/contrib/llvm-project/lld/ELF/
H A DMapFile.cpp162 if (auto *assign = dyn_cast<SymbolAssignment>(cmd)) { in writeMapFile() local
163 if (assign->provide && !assign->sym) in writeMapFile()
165 uint64_t lma = osec ? osec->getLMA() + assign->addr - osec->getVA(0) : 0; in writeMapFile()
166 writeHeader(os, assign->addr, lma, assign->size, 1); in writeMapFile()
167 os << assign->commandString << '\n'; in writeMapFile()
200 if (auto *assign = dyn_cast<SymbolAssignment>(subCmd)) { in writeMapFile() local
201 if (assign->provide && !assign->sym) in writeMapFile()
203 writeHeader(os, assign->addr, in writeMapFile()
204 osec->getLMA() + assign->addr - osec->getVA(0), in writeMapFile()
205 assign->size, 1); in writeMapFile()
[all …]
H A DLinkerScript.cpp205 // Called by processSymbolAssignments() to assign definitions to
274 if (auto *assign = dyn_cast<SymbolAssignment>(cmd)) { in getSymbolAssignmentValues() local
275 if (assign->sym) // sym is nullptr for dot. in getSymbolAssignmentValues()
276 ret.try_emplace(assign->sym, std::make_pair(assign->sym->section, in getSymbolAssignmentValues()
277 assign->sym->value)); in getSymbolAssignmentValues()
281 if (auto *assign = dyn_cast<SymbolAssignment>(subCmd)) in getSymbolAssignmentValues() local
282 if (assign->sym) in getSymbolAssignmentValues()
283 ret.try_emplace(assign->sym, std::make_pair(assign->sym->section, in getSymbolAssignmentValues()
284 assign->sym->value)); in getSymbolAssignmentValues()
347 if (auto *assign = dyn_cast<SymbolAssignment>(cmd)) { in declareSymbols() local
[all …]
/freebsd/contrib/one-true-awk/
H A Dmaketab.c83 { ASSIGN, "assign", " = " },
84 { ADDEQ, "assign", " += " },
85 { SUBEQ, "assign", " -= " },
86 { MULTEQ, "assign", " *= " },
87 { DIVEQ, "assign", " /= " },
88 { MODEQ, "assign", " %= " },
89 { POWEQ, "assign", " ^= " },
/freebsd/usr.bin/mail/
H A Dmain.c106 assign("interactive", ""); in main()
146 assign("ignore", ""); in main()
155 assign("checkmode", ""); in main()
161 assign("headersummary", ""); in main()
168 assign("recordrecip", ""); in main()
202 assign("noheader", ""); in main()
208 assign("verbose", ""); in main()
214 assign("interactive", ""); in main()
232 assign("dontsendempty", ""); in main()
/freebsd/contrib/libcbor/src/cbor/
H A Dfloats_ctrls.h152 /** Assign a control value
160 * @param value The simple value to assign. Please consult the standard for
165 /** Assign a boolean value to a boolean ctrl item
168 * @param value The simple value to assign.
175 * @param value The value to assign
182 * @param value The value to assign
189 * @param value The value to assign
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectContainer/BSD-Archive/
H A DObjectContainerBSDArchive.cpp
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DTypeSummary.cpp71 retval.assign("NULL ValueObject"); in FormatObject()
94 retval.assign(std::string(s.GetString())); in FormatObject()
97 retval.assign("error: summary string parsing error"); in FormatObject()
154 m_function_name.assign(function_name); in ScriptSummaryFormat()
156 m_python_script.assign(python_script); in ScriptSummaryFormat()
167 retval.assign("error: no target"); in FormatObject()
175 retval.assign("error: no ScriptInterpreter"); in FormatObject()
/freebsd/sys/contrib/device-tree/Bindings/bus/
H A Dst,stm32mp25-rifsc.yaml20 for peripherals), assign all non-RIF aware peripherals to zero, one or
23 unit), assign all non RIF-aware bus master to one security domain by
26 peripheral can assign target bus attributes to this peripheral master port
29 for address space - Lite version), assign address space subregions to one
/freebsd/contrib/llvm-project/libcxx/include/
H A Dstring59 static void assign(char_type& c1, const char_type& c2) noexcept;
68 static char_type* assign(char_type* s, size_t n, char_type a);
218 …basic_string& assign(const basic_string& str); // con…
220 …basic_string& assign(const T& t); // C++17, …
221 …basic_string& assign(basic_string&& str); // con…
222 …basic_string& assign(const basic_string& str, size_type pos, size_type n=npos); // C++…
224 …basic_string& assign(const T& t, size_type pos, size_type n=npos); // C++17, …
225 …basic_string& assign(const value_type* s, size_type n); // con…
226 …basic_string& assign(const value_type* s); // con…
227 …basic_string& assign(size_type n, value_type c); // con…
[all …]
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionGroupPythonClassWithDict.cpp20 m_key_usage_text.assign("The key for a key/value pair passed to the " in OptionGroupPythonClassWithDict()
25 m_value_usage_text.assign("The value for the previous key in the pair passed " in OptionGroupPythonClassWithDict()
30 m_class_usage_text.assign("The name of the "); in OptionGroupPythonClassWithDict()
89 m_name.assign(std::string(option_arg)); in SetOptionValue()
95 m_current_key.assign(std::string(option_arg)); in SetOptionValue()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallString.h48 using SmallVector<char, InternalLen>::assign;
50 /// Assign from a StringRef.
51 void assign(StringRef RHS) { in assign() function
52 SmallVectorImpl<char>::assign(RHS.begin(), RHS.end()); in assign()
55 /// Assign from a list of StringRefs.
56 void assign(std::initializer_list<StringRef> Refs) { in assign() function
274 this->assign(RHS);
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86CallingConv.cpp60 // Assign the value to the allocated register in CC_X86_32_RegCall_Assign2Regs()
103 // If the register is not marked as allocated - assign to it. in CC_X86_VectorCallAssignRegister()
111 // If the register is marked as shadow allocated - assign to it. in CC_X86_VectorCallAssignRegister()
149 // Assign shadow XMM register. in CC_X86_64_VectorCall()
157 // Assign shadow GPR register. in CC_X86_64_VectorCall()
160 // Assign XMM register - (shadow for HVA and non-shadow for non HVA). in CC_X86_64_VectorCall()
211 // Assign XMM register. in CC_X86_32_VectorCall()
313 // we assign the second argument. in CC_X86_Intr()
/freebsd/contrib/ntp/include/
H A Dntp_net.h57 /* assign sockaddr_u v4 address from host byte order */
60 /* assign sockaddr_u v4 address from network byte order */
63 /* assign sockaddr_u v6 address from network byte order */
73 /* assign sockaddr_u v4/v6 port from host byte order */
89 /* assign scope if supported */
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLLexer.cpp209 StrVal.assign(TokStart, CurPtr-1); in LexToken()
264 StrVal.assign(TokStart, CurPtr - 1); in LexDollar()
280 StrVal.assign(TokStart + 2, CurPtr - 1); in LexDollar()
309 StrVal.assign(Start, CurPtr-1); in ReadString()
328 StrVal.assign(NameStart, CurPtr); in ReadVarName()
363 StrVal.assign(TokStart+2, CurPtr-1); in LexVar()
425 StrVal.assign(TokStart+1, CurPtr); // Skip ! in LexExclaim()
471 StrVal.assign(StartChar-1, CurPtr++); in LexIdentifier()
921 StrVal.assign(Keyword.begin(), Keyword.end()); \ in LexIdentifier()
947 DBGRECORDTYPEKEYWORD(assign); in LexIdentifier()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DDebugInfo.h201 "Can't get assignment instructions for non-assign DVR!"); in getAssignmentInsts()
206 // Utilities for enumerating llvm.dbg.assign intrinsic from an assignment ID.
208 /// High level: this is an iterator for llvm.dbg.assign intrinsics.
222 /// A range of llvm.dbg.assign intrinsics.
224 /// Return a range of dbg.assign intrinsics which use \ID as an operand.
227 /// Return a range of dbg.assign intrinsics for which \p Inst performs the
244 /// Delete the llvm.dbg.assign intrinsics linked to \p Inst.
359 /// Convert @llvm.dbg.declare intrinsics into sets of @llvm.dbg.assign
/freebsd/contrib/sendmail/libsm/
H A Dfindfp.c189 fp->f_close = t->f_close; /* assign close function */
190 fp->f_read = t->f_read; /* assign read function */
191 fp->f_seek = t->f_seek; /* assign seek function */
192 fp->f_write = t->f_write; /* assign write function */
193 fp->f_open = t->f_open; /* assign open function */
194 fp->f_setinfo = t->f_setinfo; /* assign setinfo function */
195 fp->f_getinfo = t->f_getinfo; /* assign getinfo function */
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/privilege/
H A Dprivilege_002_pos.ksh47 # 2. Assign "ZFS File System Management" profile, try to create fs again,
57 # 6. Assign the FS profile, then attempt to destroy the fs, which
100 # assign the profile again and destroy the fs.

12345678910>>...65