Home
last modified time | relevance | path

Searched full:stc (Results 1 – 25 of 65) sorted by relevance

123

/freebsd-src/lib/libc/tests/stdio/
H A Dsscanf_test.c164 const struct sscanf_test_case *stc; in ATF_TC_BODY() local
167 for (stc = sscanf_test_cases; *stc->input; stc++) { in ATF_TC_BODY()
168 strcpy(input + 1, stc->input); in ATF_TC_BODY()
169 SSCANF_TEST(input + 1, "%b", stc->b.ret, stc->b.val, stc->b.len); in ATF_TC_BODY()
171 SSCANF_TEST(input, "%b", stc->b.ret, stc->b.val, stc->b.len ? stc->b.len + 1 : 0); in ATF_TC_BODY()
173 SSCANF_TEST(input, "%b", stc->b.ret, -stc->b.val, stc->b.len ? stc->b.len + 1 : 0); in ATF_TC_BODY()
180 const struct sscanf_test_case *stc; in ATF_TC_BODY() local
183 for (stc = sscanf_test_cases; *stc->input; stc++) { in ATF_TC_BODY()
184 strcpy(input + 1, stc->input); in ATF_TC_BODY()
185 SSCANF_TEST(input + 1, "%o", stc->o.ret, stc->o.val, stc->o.len); in ATF_TC_BODY()
[all …]
H A Dswscanf_test.c167 const struct swscanf_test_case *stc; in ATF_TC_BODY() local
170 for (stc = swscanf_test_cases; *stc->input; stc++) { in ATF_TC_BODY()
171 wcscpy(input + 1, stc->input); in ATF_TC_BODY()
172 SWSCANF_TEST(input + 1, L"%b", stc->b.ret, stc->b.val, stc->b.len); in ATF_TC_BODY()
174 SWSCANF_TEST(input, L"%b", stc->b.ret, stc->b.val, stc->b.len ? stc->b.len + 1 : 0); in ATF_TC_BODY()
176 SWSCANF_TEST(input, L"%b", stc->b.ret, -stc->b.val, stc->b.len ? stc->b.len + 1 : 0); in ATF_TC_BODY()
183 const struct swscanf_test_case *stc; in ATF_TC_BODY() local
186 for (stc = swscanf_test_cases; *stc->input; stc++) { in ATF_TC_BODY()
187 wcscpy(input + 1, stc->input); in ATF_TC_BODY()
188 SWSCANF_TEST(input + 1, L"%o", stc->o.ret, stc->o.val, stc->o.len); in ATF_TC_BODY()
[all …]
/freebsd-src/sbin/nvmecontrol/
H A Dselftest.c49 uint8_t stc; /* Self-test Code */ member
52 .stc = SELFTEST_CODE_NONE,
56 selftest_op(int fd, uint32_t nsid, uint8_t stc) in selftest_op() argument
63 pt.cmd.cdw10 = htole32(stc); in selftest_op()
94 if (opt.stc == SELFTEST_CODE_NONE) in selftest()
96 else if (opt.stc > SELFTEST_CODE_MAX) in selftest()
97 errx(EX_DATAERR, "illegal Self-test Code 0x%x", opt.stc); in selftest()
105 selftest_op(fd, nsid, opt.stc); in selftest()
113 OPT("test-code", 'c', arg_uint8, opt, stc,
/freebsd-src/crypto/openssl/crypto/rc4/asm/
H A Drc4-s390x.pl109 stc $TX[0],2($YY,$key)
111 stc $TY,2($XX[0],$key)
143 stc $TX[0],2($YY,$key)
144 stc $TY,2($XX[0],$key)
154 stc $acc,0($out)
160 stc $XX[0],0($key)
161 stc $YY,1($key)
193 stc $idx,2($idx,$key)
212 stc $dat,2+256-1($ikey,$key)
213 stc $acc,2($idx,$key)
/freebsd-src/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DLoopWidening.cpp59 const StackFrameContext *STC = LCtx->getStackFrame(); in getWidenedLoopState() local
61 const MemRegion *Regions[] = {MRMgr.getStackLocalsRegion(STC), in getWidenedLoopState()
62 MRMgr.getStackArgumentsRegion(STC), in getWidenedLoopState()
88 const CXXMethodDecl *CXXMD = dyn_cast<CXXMethodDecl>(STC->getDecl()); in getWidenedLoopState()
91 MRMgr.getCXXThisRegion(CXXMD->getThisType(), STC); in getWidenedLoopState()
H A DMemRegion.cpp902 MemRegionManager::getStackLocalsRegion(const StackFrameContext *STC) { in getStackArgumentsRegion()
903 assert(STC); in getStackArgumentsRegion()
904 StackLocalsSpaceRegion *&R = StackLocalsSpaceRegions[STC]; in getStackArgumentsRegion()
909 R = new (A) StackLocalsSpaceRegion(*this, STC); in getGlobalsRegion()
914 MemRegionManager::getStackArgumentsRegion(const StackFrameContext *STC) { in getGlobalsRegion()
915 assert(STC); in getGlobalsRegion()
916 StackArgumentsSpaceRegion *&R = StackArgumentsSpaceRegions[STC]; in getGlobalsRegion()
921 R = new (A) StackArgumentsSpaceRegion(*this, STC); in getGlobalsRegion()
1051 const auto *STC = V.get<const StackFrameContext *>(); in getVarRegion()
1053 if (!STC) { in getVarRegion()
883 getStackLocalsRegion(const StackFrameContext * STC) getStackLocalsRegion() argument
895 getStackArgumentsRegion(const StackFrameContext * STC) getStackArgumentsRegion() argument
1032 const auto *STC = V.get<const StackFrameContext *>(); getVarRegion() local
1121 const StackFrameContext *STC = LC->getStackFrame(); getBlockDataRegion() local
1142 const StackFrameContext *STC = LC->getStackFrame(); getCompoundLiteralRegion() local
1296 const StackFrameContext *STC = LC->getStackFrame(); getCXXThisRegion() local
1304 const StackFrameContext *STC = LC->getStackFrame(); getAllocaRegion() local
[all...]
H A DExprEngineCXX.cpp963 // [basic.stc.dynamic.allocation] (on the return value of an allocation in VisitCXXNewAllocatorCall()
975 // C++11 [basic.stc.dynamic.allocation]p3. in VisitCXXNewAllocatorCall()
1048 // C++11 [basic.stc.dynamic.allocation]p3. in VisitCXXNewExpr()
/freebsd-src/sys/netinet/
H A Dsctp_output.c3815 struct sctp_state_cookie *stc; in sctp_add_cookie() local
3851 stc = (struct sctp_state_cookie *)((caddr_t)ph + in sctp_add_cookie()
3855 /* Fill in the stc cookie data */ in sctp_add_cookie()
3856 memcpy(stc, stc_in, sizeof(struct sctp_state_cookie)); in sctp_add_cookie()
5527 struct sctp_state_cookie stc; in sctp_send_initiate_ack() local
5610 memset(&stc, 0, sizeof(struct sctp_state_cookie)); in sctp_send_initiate_ack()
5614 stc.time_entered.tv_sec = now.tv_sec; in sctp_send_initiate_ack()
5615 stc.time_entered.tv_usec = now.tv_usec; in sctp_send_initiate_ack()
5620 stc.tie_tag_my_vtag = asoc->my_vtag_nonce; in sctp_send_initiate_ack()
5621 stc in sctp_send_initiate_ack()
[all...]
/freebsd-src/lib/libcasper/services/cap_pwd/tests/
H A Dpwd_test.c155 struct passwd sts, stc; in runtest_cmds()
173 cap_getpwent_r(cappwd, &stc, bufc, sizeof(bufc), &pwdc); in runtest_cmds()
177 cap_getpwent_r(cappwd, &stc, bufc, sizeof(bufc), &pwdc); in runtest_cmds()
186 cap_getpwent_r(cappwd, &stc, bufc, sizeof(bufc), &pwdc); in runtest_cmds()
205 cap_getpwnam_r(cappwd, "root", &stc, bufc, sizeof(bufc), &pwdc); in runtest_cmds()
208 cap_getpwnam_r(cappwd, "operator", &stc, bufc, sizeof(bufc), in runtest_cmds()
224 cap_getpwuid_r(cappwd, UID_ROOT, &stc, bufc, sizeof(bufc), &pwdc); in runtest_cmds()
227 cap_getpwuid_r(cappwd, UID_OPERATOR, &stc, bufc, sizeof(bufc), in runtest_cmds()
156 struct passwd sts, stc; runtest_cmds() local
/freebsd-src/lib/libcasper/services/cap_grp/tests/
H A Dgrp_test.c141 struct group sts, stc; in runtest_cmds()
160 cap_getgrent_r(capgrp, &stc, bufc, sizeof(bufc), &grpc); in runtest_cmds()
164 cap_getgrent_r(capgrp, &stc, bufc, sizeof(bufc), &grpc); in runtest_cmds()
174 cap_getgrent_r(capgrp, &stc, bufc, sizeof(bufc), &grpc); in runtest_cmds()
193 cap_getgrnam_r(capgrp, "wheel", &stc, bufc, sizeof(bufc), &grpc); in runtest_cmds()
196 cap_getgrnam_r(capgrp, "operator", &stc, bufc, sizeof(bufc), in runtest_cmds()
212 cap_getgrgid_r(capgrp, GID_WHEEL, &stc, bufc, sizeof(bufc), &grpc); in runtest_cmds()
215 cap_getgrgid_r(capgrp, GID_OPERATOR, &stc, bufc, sizeof(bufc), in runtest_cmds()
142 struct group sts, stc; runtest_cmds() local
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Target/
H A DTargetMachine.h171 template <typename STC> const STC &getSubtarget(const Function &F) const {
172 return *static_cast<const STC*>(getSubtargetImpl(F)); in getSubtarget()
/freebsd-src/crypto/openssl/crypto/
H A Ds390xcpuid.pl225 stc %r0,0(%r2)
232 stc %r0,0(%r2)
/freebsd-src/sys/contrib/device-tree/Bindings/display/xlnx/
H A Dxlnx,zynqmp-dpsub.yaml20 | | and STC | +-----------+ | | Controller | | +------+
/freebsd-src/stand/i386/cdboot/
H A Dcdboot.S312 stc # Set carry
354 stc # EOF reached
/freebsd-src/crypto/openssl/crypto/aes/asm/
H A Daes-s390x.pl1854 stc $i1,0($out,$inp)
1855 stc $i2,16($out,$inp)
1949 stc %r0,0($out,$inp)
1950 stc %r1,16($out,$inp)
2096 stc $i1,0($out,$inp)
2097 stc $i2,16($out,$inp)
2245 stc %r0,0($out,$inp)
2246 stc %r1,16($out,$inp)
/freebsd-src/contrib/llvm-project/clang/include/clang/Basic/
H A DSpecifiers.h323 /// The storage duration for an object (per C++ [basic.stc]).
/freebsd-src/stand/i386/boot2/
H A Dboot1.S260 stc # argument
/freebsd-src/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.cpp126 // Handle one and two bytes using STC. in EmitTargetCodeForMemset()
/freebsd-src/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineFunction.h722 template<typename STC> const STC &getSubtarget() const {
723 return *static_cast<const STC *>(STI);
/freebsd-src/contrib/tcsh/
H A Dsh.c2273 struct stat stc; in mailchk() local
2277 if (stat(tempfilename, &stc) != -1 && S_ISDIR(stc.st_mode)) { in mailchk()
2282 stb = stc; in mailchk()
/freebsd-src/sys/dev/aic7xxx/aicasm/
H A Daicasm_scan.l220 stc { return T_STC; }
/freebsd-src/crypto/openssl/crypto/chacha/asm/
H A Dchacha-s390x.pl425 stc (@x[5],"0(@x[6],@t[0])");
712 stc ("%r6","0(%r1,$out)");
1028 stc ("%r6","0(%r1,$out)");
/freebsd-src/sys/contrib/libsodium/src/libsodium/sodium/
H A Dutils.c254 "stc \n" in sodium_increment()
/freebsd-src/sys/dev/syscons/
H A Dsyscons.c428 struct sc_ttysoftc *stc; in sc_alloc_tty() local
432 stc = malloc(sizeof(struct sc_ttysoftc), M_DEVBUF, M_WAITOK); in sc_alloc_tty()
433 stc->st_index = index; in sc_alloc_tty()
434 stc->st_stat = NULL; in sc_alloc_tty()
435 tp = tty_alloc_mutex(&sc_ttydevsw, stc, &Giant); in sc_alloc_tty()
/freebsd-src/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DMemRegion.h1442 getStackLocalsRegion(const StackFrameContext *STC);
1447 getStackArgumentsRegion(const StackFrameContext *STC);

123