Home
last modified time | relevance | path

Searched full:rstr (Results 1 – 25 of 27) sorted by relevance

12

/freebsd/sys/contrib/openzfs/cmd/zfs/
H A Dzfs_iter.c352 const char *lstr, *rstr; in zfs_sort() local
359 * 'rstr' are non-NULL, then we do a string based comparison. in zfs_sort()
362 lstr = rstr = NULL; in zfs_sort()
380 ZPROP_VALUE, &rstr) == 0); in zfs_sort()
388 rstr = rbuf; in zfs_sort()
396 rstr = rbuf; in zfs_sort()
417 ret = strcmp(lstr, rstr); in zfs_sort()
/freebsd/contrib/ntp/sntp/tests/
H A DkodFile.c57 TEST_ASSERT_EQUAL_STRING("RSTR", res->type); in test_ReadCorrectFile()
77 TEST_ASSERT_EQUAL_STRING("RSTR", res->type); in test_ReadFileWithBlankLines()
133 add_entry("192.0.2.5", "RSTR"); in test_WriteFileWithMultipleEntries()
/freebsd/usr.sbin/mptutil/
H A Dmpt_cam.c303 char vendor[16], product[48], revision[16], rstr[12]; in format_scsi_inquiry() local
328 strcpy(rstr, "SCSI-CCS"); in format_scsi_inquiry()
331 strcpy(rstr, "SAS"); in format_scsi_inquiry()
334 snprintf(rstr, sizeof (rstr), "SCSI-%d", in format_scsi_inquiry()
339 vendor, product, revision, rstr); in format_scsi_inquiry()
/freebsd/usr.sbin/mixer/
H A Dmixer.c418 char *endp, lstr[8], rstr[8]; in mod_volume() local
425 n = sscanf(val, "%7[^:]:%7s", lstr, rstr); in mod_volume()
444 if (*rstr == '+' || *rstr == '-') in mod_volume()
446 v.right = strtof(rstr, &endp); in mod_volume()
448 warnx("invalid volume value: %s", rstr); in mod_volume()
/freebsd/usr.sbin/mfiutil/
H A Dmfi_drive.c324 char vendor[16], product[48], revision[16], rstr[12], serial[SID_VENDOR_SPECIFIC_0_SIZE]; in mfi_pd_inq_string() local
355 strcpy(rstr, "SCSI-CCS"); in mfi_pd_inq_string()
358 strcpy(rstr, "SAS"); in mfi_pd_inq_string()
361 snprintf(rstr, sizeof (rstr), "SCSI-%d", in mfi_pd_inq_string()
366 product, revision, serial, rstr); in mfi_pd_inq_string()
/freebsd/contrib/ntp/sntp/tests/data/
H A Dkod-test-correct2 0000000000000fff RSTR 192.0.2.100
H A Dkod-test-blanks4 0000000000000fff RSTR 192.0.2.100
H A Dkod-expected-multiple2 000000000000abcd RSTR 192.0.2.5
/freebsd/contrib/tcsh/
H A Dtc.str.c335 const Char *rstr; local
337 rstr = NULL;
340 rstr = str;
342 return ((Char *)(intptr_t)rstr);
/freebsd/contrib/ntp/sntp/
H A Dnetworking.h31 #define KOD_DEMOBILIZE -4 /* KOD packet with code DENY or RSTR, stop all communication and save K…
H A Dnetworking.c255 if (strncmp(ref_char, "RSTR", 4) == 0) in process_pkt()
/freebsd/contrib/unbound/validator/
H A Dvalidator.c2792 char rstr[1024]; in primeResponseToKE() local
2798 snprintf(rstr, sizeof(rstr), "no DNSKEY rrset"); in primeResponseToKE()
2800 snprintf(rstr, sizeof(rstr), "no DNSKEY rrset " in primeResponseToKE()
2804 errinf_ede(qstate, rstr, reason_bogus); in primeResponseToKE()
2807 reason_bogus, rstr, *qstate->env->now); in primeResponseToKE()
2810 reason_bogus, rstr, *qstate->env->now); in primeResponseToKE()
3271 char rstr[1024]; in process_dnskey_response() local
3285 snprintf(rstr, sizeof(rstr), "No DNSKEY record"); in process_dnskey_response()
3287 snprintf(rstr, sizeof(rstr), "No DNSKEY record " in process_dnskey_response()
3293 BOGUS_KEY_TTL, reason_bogus, rstr, *qstate->env->now); in process_dnskey_response()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVPrepareFunctions.cpp222 static const std::regex RStr("^(\\d+)(?:,(\\d+))*$"); in parseAnnotation() local
223 if (std::smatch MatchStr; std::regex_match(Item, MatchStr, RStr)) { in parseAnnotation()
/freebsd/contrib/ntp/ntpq/
H A Dntpq.1ntpqmdoc461 .It Ic rstr
H A Dntpq.mdoc.in461 .It Ic rstr
H A Dntpq.texi320 @item @code{rstr}
H A Dntpq-opts.def581 .It Ic rstr
H A Dntpq.man.in624 .NOP \f\*[B-Font]rstr\f[]
H A Dntpq.1ntpqman624 .NOP \f\*[B-Font]rstr\f[]
H A Dinvoke-ntpq.texi457 @item @code{rstr}
H A Dntpq.html651 <dt><code>rstr</code></dt>
1826 <tr><td width="10%"><code>rstr</code></td><td width="40%">Restriction flags associated with this address.
H A Dntpq-subs.c3303 printf( "lstint avgint rstr r m v count rport remote address\n" in mrulist()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp1499 StringRef LStr, RStr; in optimizeMemCmpVarSize() local
1501 !getConstantStringInfo(RHS, RStr, /*TrimAtNul=*/false)) in optimizeMemCmpVarSize()
1511 for (uint64_t MinSize = std::min(LStr.size(), RStr.size()); ; ++Pos) { in optimizeMemCmpVarSize()
1513 (StrNCmp && (LStr[Pos] == '\0' && RStr[Pos] == '\0'))) { in optimizeMemCmpVarSize()
1521 if (LStr[Pos] != RStr[Pos]) in optimizeMemCmpVarSize()
1527 int IRes = UChar(LStr[Pos]) < UChar(RStr[Pos]) ? -1 : 1; in optimizeMemCmpVarSize()
/freebsd/contrib/ntp/html/
H A Dntpq.html172 <td><tt>rstr</tt></td>
/freebsd/contrib/ntp/ntpdc/
H A Dntpdc_ops.c2001 "remote address port local address count m ver rstr avgint lstint\n"); in monlist()
2028 " address port count mode ver rstr avgint lstint\n"); in monlist()

12