Home
last modified time | relevance | path

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

123

/freebsd/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/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/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/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DMemRegion.cpp902 MemRegionManager::getStackLocalsRegion(const StackFrameContext *STC) { in getStackLocalsRegion() argument
903 assert(STC); in getStackLocalsRegion()
904 StackLocalsSpaceRegion *&R = StackLocalsSpaceRegions[STC]; in getStackLocalsRegion()
909 R = new (A) StackLocalsSpaceRegion(*this, STC); in getStackLocalsRegion()
914 MemRegionManager::getStackArgumentsRegion(const StackFrameContext *STC) { in getStackArgumentsRegion() argument
915 assert(STC); in getStackArgumentsRegion()
916 StackArgumentsSpaceRegion *&R = StackArgumentsSpaceRegions[STC]; in getStackArgumentsRegion()
921 R = new (A) StackArgumentsSpaceRegion(*this, STC); in getStackArgumentsRegion()
1051 const auto *STC = V.get<const StackFrameContext *>(); in getVarRegion() local
1053 if (!STC) { in getVarRegion()
[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/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.tie_tag_peer_vtag = asoc->peer_vtag_nonce; in sctp_send_initiate_ack()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/
H A DTargetMachine.h171 template <typename STC> const STC &getSubtarget(const Function &F) const { in getSubtarget()
172 return *static_cast<const STC*>(getSubtargetImpl(F)); in getSubtarget()
/freebsd/crypto/openssl/crypto/
H A Ds390xcpuid.pl225 stc %r0,0(%r2)
232 stc %r0,0(%r2)
/freebsd/stand/i386/cdboot/
H A Dcdboot.S312 stc # Set carry
354 stc # EOF reached
/freebsd/sys/contrib/device-tree/Bindings/display/xlnx/
H A Dxlnx,zynqmp-dpsub.yaml20 | | and STC | +-----------+ | | Controller | | +------+
/freebsd/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/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.cpp126 // Handle one and two bytes using STC. in EmitTargetCodeForMemset()
H A DSystemZInstrInfo.td813 // STC, STCY or STCH, depending on the choice of register.
816 defm STC : StoreRXPair<"stc", 0x42, 0xE372, truncstorei8, GR32, 1>;
830 defm : StoreGR64Pair<STC, STCY, truncstorei8>;
/freebsd/stand/i386/boot2/
H A Dboot1.S260 stc # argument
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DSpecifiers.h323 /// The storage duration for an object (per C++ [basic.stc]).
/freebsd/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/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);
H A DSelectionDAG.h489 template <typename STC> const STC &getSubtarget() const {
490 return MF->getSubtarget<STC>();
/freebsd/sys/dev/aic7xxx/aicasm/
H A Daicasm_scan.l220 stc { return T_STC; }
/freebsd/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/sys/contrib/libsodium/src/libsodium/sodium/
H A Dutils.c254 "stc \n" in sodium_increment()
/freebsd/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/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DMemRegion.h1442 getStackLocalsRegion(const StackFrameContext *STC);
1447 getStackArgumentsRegion(const StackFrameContext *STC);
/freebsd/sys/arm/arm/
H A Ddisassem.c229 { 0x0e100090, 0x0c000000, "stc", "L#v" },

123