/freebsd/crypto/openssl/crypto/ |
H A D | der_writer.c | 31 * and after WPACKET_close(). We use size1 and size2 to determine if in int_end_context() 35 size_t size1, size2; in int_end_context() local 47 && WPACKET_get_total_written(pkt, &size2) in int_end_context() 48 && (size1 == size2 || WPACKET_put_bytes_u8(pkt, tag)); in int_end_context() 183 * and after WPACKET_close(). We use size1 and size2 to determine if in ossl_DER_w_end_sequence() 190 size_t size1, size2; in ossl_DER_w_end_sequence() local 194 && WPACKET_get_total_written(pkt, &size2) in ossl_DER_w_end_sequence() 195 && (size1 == size2 in ossl_DER_w_end_sequence()
|
/freebsd/tools/test/stress2/misc/ |
H A D | mmap33.sh | 53 size_t i, size1, size2; 60 fprintf(stderr, "Usage: %s filename size1 size2\n", argv[0]); 66 size2 = atoi(argv[3]); 76 if (ftruncate(fd, size2) == -1) 78 data = mmap(NULL, size2, PROT_READ|PROT_WRITE,MAP_SHARED, fd, 0); 81 memset(data, 0xFF, size2); 83 if (munmap(data, size2) == -1)
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/redacted_send/ |
H A D | redacted_size.ksh | 38 typeset size2=$(mktemp $tmpdir/size.XXXX) 47 log_must eval "zfs send --redact book $sendfs@snap | wc -c >$size2" 49 read -r bytes2 < $size2 55 log_must eval "zfs send -i $sendfs#book $sendfs@snap2 | wc -c >$size2" 57 read -r bytes2 < $size2
|
/freebsd/lib/libc/stdlib/ |
H A D | merge.c | 255 s -= size2; \ 268 int i, length, size2, tmp, sense; in setup() local 271 size2 = size*2; in setup() 293 for (f2 = f1 + size2; f2 < last; f2 += size2) { in setup() 300 p2 = *EVAL(p2) = f1 + size2 - list1 + list2; in setup() 303 } while ((f1 += size2) < f2); in setup() 306 for (f2 = f1 + size2; f2 < l2; f2 += size2) { in setup() 324 for (f1 = list1, p2 = list2; f1 < last; f1 += size2) { in setup() 325 p2 = *EVAL(p2) = p2 + size2; in setup()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
H A D | FuzzerCrossOver.cpp | 20 const uint8_t *Data2, size_t Size2, in CrossOver() argument 22 assert(Size1 || Size2); in CrossOver() 31 while (OutPos < MaxOutSize && (Pos1 < Size1 || Pos2 < Size2)) { in CrossOver() 44 InSize = CurrentlyUsingFirstData ? Size2 : Size1; in CrossOver()
|
H A D | FuzzerExtFunctions.def | 23 const uint8_t *Data2, size_t Size2,
|
H A D | FuzzerInterface.h | 63 const uint8_t *Data2, size_t Size2, uint8_t *Out,
|
/freebsd/usr.sbin/nscd/agents/ |
H A D | services.c | 127 size_t size, size2; in services_lookup_func() local 150 size2 = strlen(name) + 1; in services_lookup_func() 152 if (size2 < size) in services_lookup_func() 153 proto = name + size2; in services_lookup_func()
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_receive/ |
H A D | zfs_receive_010_pos.ksh | 157 size2=$(get_prop used $fs) 158 if [[ $size -ge $(($size2 / 10)) ]] then 160 "$(($size2 / 10)), but is using $size"
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86AvoidStoreForwardingBlocks.cpp | 575 unsigned Size2 = 0; in breakBlockedCopies() local 581 Size2 = DispSizePair.second; in breakBlockedCopies() 587 Size2 -= OverlapDelta; in breakBlockedCopies() 596 buildCopies(Size2, LoadInst, LdDisp2, StoreInst, StDisp2, LMMOffset + Size1, in breakBlockedCopies() 598 LdDisp1 = LdDisp2 + Size2; in breakBlockedCopies() 599 StDisp1 = StDisp2 + Size2; in breakBlockedCopies() 600 LMMOffset += Size1 + Size2; in breakBlockedCopies() 601 SMMOffset += Size1 + Size2; in breakBlockedCopies()
|
/freebsd/lib/libefivar/ |
H A D | uefi-dputil.c | 525 UINTN Size2; in AppendDevicePath() local 549 Size2 = GetDevicePathSize (SecondDevicePath); in AppendDevicePath() 550 Size = Size1 + Size2 - END_DEVICE_PATH_LENGTH; in AppendDevicePath() 561 CopyMem (DevicePath2, SecondDevicePath, Size2); in AppendDevicePath()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
H A D | DWARFExpression.h | 37 Size2 = 1, enumerator 51 SignedSize2 = SignBit | Size2,
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
H A D | SystemZSelectionDAGInfo.cpp | 112 unsigned Size2 = Bytes - Size1; in EmitTargetCodeForMemset() local 115 if (Size2 == 0) in EmitTargetCodeForMemset() 121 memsetStore(DAG, DL, Chain, Dst, ByteVal, Size2, in EmitTargetCodeForMemset()
|
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
H A D | swap_ranges.h | 39 // 2+1 iterators: size2 >= size1.
|
/freebsd/crypto/openssl/test/ |
H A D | wpackettest.c | 363 size_t size1, size2; in test_WPACKET_init_der() local 380 || !TEST_true(WPACKET_get_total_written(&pkt, &size2)) in test_WPACKET_init_der() 381 || !TEST_size_t_eq(size1, size2)) in test_WPACKET_init_der()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | SampleProfileMatcher.cpp | 190 int32_t Size1 = AnchorList1.size(), Size2 = AnchorList2.size(), in longestCommonSequence() local 191 MaxDepth = Size1 + Size2; in longestCommonSequence() 203 int32_t X = Size1, Y = Size2; in longestCommonSequence() 249 while (X < Size1 && Y < Size2 && in longestCommonSequence() 257 if (X >= Size1 && Y >= Size2) { in longestCommonSequence()
|
/freebsd/lib/libc/net/ |
H A D | getservent.c | 872 size_t desired_size, size, size2; in serv_id_func() local 885 size2 = strlen(proto); in serv_id_func() 886 desired_size += size2 + 1; in serv_id_func() 888 size2 = 0; in serv_id_func() 900 proto, size2 + 1); in serv_id_func()
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFExpression.cpp | 32 Descriptions[DW_OP_const2u] = Desc(Op::Dwarf2, Op::Size2); in getOpDescriptions() 84 Descriptions[DW_OP_call2] = Desc(Op::Dwarf3, Op::Size2); in getOpDescriptions() 172 case Operation::Size2: in extract()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | AliasAnalysisEvaluator.cpp | 132 LocationSize Size2 = in runInternal() local 134 AliasResult AR = AA.alias(I1->first, Size1, I2->first, Size2); in runInternal()
|
/freebsd/sys/dev/xen/netback/ |
H A D | netback_unit_tests.c | 1484 size_t size2 = MHLEN - 15; in xnb_mbufc2pkt_2short() local 1495 mbufc2 = m_getm(mbufc, size2, M_WAITOK, MT_DATA); in xnb_mbufc2pkt_2short() 1501 mbufc2->m_pkthdr.len = size1 + size2; in xnb_mbufc2pkt_2short() 1506 XNB_ASSERT(pkt.size == size1 + size2); in xnb_mbufc2pkt_2short() 1955 size_t size2 = MHLEN - 15; in xnb_rxpkt2rsp_2short() local 1970 m_getm(mbufc, size2, M_WAITOK, MT_DATA); in xnb_rxpkt2rsp_2short() 1972 mbufc->m_pkthdr.len = size1 + size2; in xnb_rxpkt2rsp_2short() 1974 mbufc->m_next->m_len = size2; in xnb_rxpkt2rsp_2short() 1996 XNB_ASSERT(rsp->status == size1 + size2); in xnb_rxpkt2rsp_2short()
|
/freebsd/sys/dev/iscsi/ |
H A D | icl_soft.c | 882 long available, size, size2; in icl_conn_send_pdus() local 957 size2 = icl_pdu_size(request2); in icl_conn_send_pdus() 958 if (available < size + size2) in icl_conn_send_pdus() 974 request->ip_bhs_mbuf->m_pkthdr.len += size2; in icl_conn_send_pdus() 975 size += size2; in icl_conn_send_pdus()
|
/freebsd/sys/contrib/device-tree/Bindings/mtd/ |
H A D | qcom,nandc.yaml | 61 It's in the form of <offset1 size1 offset2 size2 offset3 ...>
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_flat_map.h | 93 constexpr uptr size2() const { return kSize2; } in size2() function
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Expression/ |
H A D | IRMemoryMap.h | 133 lldb::addr_t addr2, size_t size2);
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
H A D | LoadStoreOpt.cpp | 120 LocationSize Size2 = LdSt2->getMemSize(); in aliasIsKnownForLoadStore() local 138 if (PtrDiff < 0 && Size2.hasValue() && !Size2.isScalable()) { in aliasIsKnownForLoadStore() 142 IsAlias = !((PtrDiff + (int64_t)Size2.getValue()) <= 0); in aliasIsKnownForLoadStore()
|