/freebsd/sys/contrib/dev/acpica/common/ |
H A D | adfile.c | 391 char *Substring; in FlSplitInputPathname() local 420 Substring = strrchr (DirectoryPath, '/'); in FlSplitInputPathname() 421 if (!Substring) in FlSplitInputPathname() 423 Substring = strrchr (DirectoryPath, ':'); in FlSplitInputPathname() 428 if (!Substring) in FlSplitInputPathname() 435 Filename = FlStrdup (Substring + 1); in FlSplitInputPathname() 436 *(Substring+1) = 0; in FlSplitInputPathname() 480 char *Substring; in FlGetFileBasename() local 485 Substring = strrchr (FilePathname, '/'); in FlGetFileBasename() 486 if (!Substring) in FlGetFileBasename() [all …]
|
/freebsd/contrib/bmake/ |
H A D | str.h | 43 typedef struct Substring { struct 46 } Substring; argument 68 Substring *words; 110 MAKE_STATIC Substring 113 Substring sub; in Substring_Init() 120 MAKE_INLINE Substring 127 Substring_Length(Substring sub) in Substring_Length() 133 Substring_IsEmpty(Substring sub) in Substring_IsEmpty() 139 Substring_Equals(Substring sub, const char *str) in Substring_Equals() 147 Substring_Eq(Substring sub, Substring str) in Substring_Eq() [all …]
|
H A D | var.c | 433 static Substring 434 CanonicalVarname(Substring name) in CanonicalVarname() 464 GNode_FindVar(GNode *scope, Substring varname, unsigned int hash) in GNode_FindVar() 483 VarFindSubstring(Substring name, GNode *scope, bool elsewhere) in VarFindSubstring() 951 UnexportVar(Substring varname, UnexportWhat what) in UnexportVar() 1402 SepBuf_AddSubstring(SepBuf *buf, Substring sub) in SepBuf_AddSubstring() 1426 typedef void (*ModifyWordProc)(Substring word, SepBuf *buf, void *data); 1430 ModifyWord_Head(Substring word, SepBuf *buf, void *dummy MAKE_ATTR_UNUSED) in ModifyWord_Head() 1436 ModifyWord_Tail(Substring word, SepBuf *buf, void *dummy MAKE_ATTR_UNUSED) in ModifyWord_Tail() 1442 ModifyWord_Suffix(Substring word, SepBuf *buf, void *dummy MAKE_ATTR_UNUSED) in ModifyWord_Suffix() [all …]
|
H A D | hash.h | 134 unsigned int Hash_Substring(Substring) MAKE_ATTR_USE; 135 void *HashTable_FindValueBySubstringHash(HashTable *, Substring, unsigned int)
|
H A D | hash.c | 102 Hash_Substring(Substring key) in Hash_Substring() 114 HashTable_Find(HashTable *t, Substring key, unsigned int h) in HashTable_Find() 196 HashTable_FindValueBySubstringHash(HashTable *t, Substring key, unsigned int h) in HashTable_FindValueBySubstringHash()
|
H A D | for.c | 122 const Substring *items; in ForLoop_Details() 340 AddEscaped(Buffer *cmds, Substring item, char endc) in AddEscaped()
|
H A D | str.c | 126 Substring *words; in Substring_Words()
|
H A D | cond.c | 1195 Substring dir; in Cond_ExtractGuard()
|
H A D | parse.c | 2746 Substring dir; in ParseDirective()
|
H A D | ChangeLog | 1448 migrate ParseModifierPart to use Substring 1450 migrate ModifyWord functions to use Substring 1451 migrate handling of the modifier ':S,from,to,' to Substring
|
/freebsd/sys/contrib/dev/acpica/compiler/ |
H A D | dtfield.c | 569 char *Substring; in DtCompileBuffer() local 578 Substring = StringValue; in DtCompileBuffer() 590 for (i = 0; i < Count; i++, Substring += 3) in DtCompileBuffer() 594 if (*(&Substring[2]) && in DtCompileBuffer() 595 (*(&Substring[2]) != ' ')) in DtCompileBuffer() 597 DtError (ASL_ERROR, ASL_MSG_BUFFER_ELEMENT, Field, Substring); in DtCompileBuffer() 603 Status = AcpiUtAsciiToHexByte (Substring, &Buffer[i]); in DtCompileBuffer() 606 DtError (ASL_ERROR, ASL_MSG_BUFFER_ELEMENT, Field, Substring); in DtCompileBuffer()
|
H A D | aslfiles.c | 1280 char *Substring; in FlParseInputPathname() local 1296 Substring = strrchr (AslGbl_DirectoryPath, '\\'); in FlParseInputPathname() 1297 if (!Substring) in FlParseInputPathname() 1299 Substring = strrchr (AslGbl_DirectoryPath, '/'); in FlParseInputPathname() 1300 if (!Substring) in FlParseInputPathname() 1302 Substring = strrchr (AslGbl_DirectoryPath, ':'); in FlParseInputPathname() 1306 if (!Substring) in FlParseInputPathname() 1318 AslGbl_OutputFilenamePrefix = strdup (Substring + 1); in FlParseInputPathname() 1320 *(Substring+1) = 0; in FlParseInputPathname()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_lzw.h | 24 using Substring = in LzwEncode() local 29 Min(DenseMapInfo<Substring>::getEmptyKey().first, in LzwEncode() 30 DenseMapInfo<Substring>::getTombstoneKey().first) - in LzwEncode() 32 DenseMap<Substring, LzwCodeType> prefix_to_code; in LzwEncode()
|
/freebsd/contrib/bearssl/T0/ |
H A D | T0Comp.cs | 66 a = a.Substring(1); in Main() 77 pname = a.Substring(0, j).Trim() in Main() 79 pval = a.Substring(j + 1); in Main() 1327 int x = DecHex(t.Substring(2)); in DecodeCharConst() 1335 int x = DecHex(t.Substring(2)); in DecodeCharConst() 2029 tv = StringToBlob(tt.Substring(1)); in TryParseLiteral() 2033 tv = DecodeCharConst(tt.Substring(1)); in TryParseLiteral() 2039 tt = tt.Substring(1); in TryParseLiteral() 2041 tt = tt.Substring(1); in TryParseLiteral() 2046 tt = tt.Substring(2); in TryParseLiteral() [all …]
|
H A D | WordBuilder.cs | 206 lname = target.Substring(1); in Call()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/ |
H A D | AnalysisConsumer.cpp | 499 static bool fileContainsString(StringRef Substring, ASTContext &C) { in fileContainsString() argument 503 return Buffer.contains(Substring); in fileContainsString()
|
/freebsd/contrib/wpa/wpa_supplicant/ |
H A D | README-P2P | 466 Service Information Substring - Optional UTF-8 string 467 If Service Information Substring is not included, all services matching 469 If Service Information Substring is included, both the Substring and the 471 If remote service has no Service Information, all Substring searches
|
/freebsd/contrib/one-true-awk/testdir/ |
H A D | funstack.ok | 753 M. C. Harrison Implementation of the Substring Test by 1307 Abraham Bookstein On Harrison's Substring Testing 3506 Daniel M. Sunday A Very Fast Substring Search Algorithm 132--142
|
H A D | funstack.in | 5351 title = "Implementation of the Substring Test by Hashing", 9595 title = "On {Harrison}'s Substring Testing Technique", 26435 title = "A Very Fast Substring Search Algorithm",
|