Home
last modified time | relevance | path

Searched full:partial (Results 1 – 25 of 1433) sorted by relevance

12345678910>>...58

/freebsd/sys/dev/qat/qat_api/common/crypto/sym/include/
H A Dlac_sym_partial.h8 * @defgroup LacSymPartial Partial Packets
12 * Partial packet handling code
17 * The API states that for partial packets the client should not submit
18 * the next partial request until the callback for the current partial has
24 * as there is already a partial in flight. There is no blocking in the data
27 * By preventing any other partials from coming in while a partial is in flight
31 * successfully completed for. The last packet type is only updated for partial
33 * e.g a last partial will not be accepted unless the previous packet was a
34 * partial. By only allowing one partial packet to be in flight, there is no
39 * partial in ECB mode as the result of the previous partial has no impact on
[all …]
/freebsd/tests/sys/kern/tty/
H A Dtest_canon.orch81 -- Give readsz a chance to consume the partial input before we send more
91 readsz_test("partial", {"-b", 3}, "^$")
92 readsz_test("partial^D", {"-b", 3}, "^par$")
93 readsz_test("partial^D", {"-c", 1}, "^partial$")
94 for s = 1, #"partial" do
95 readsz_test("partial^D", {"-s", s}, "^partial$")
98 readsz_test({"par", "tial^D"}, {"-c", 1}, "^partial$")
99 -- line is incomplete, so we'll just see the "partial" even if we want two
100 readsz_test("partial^Dline", {"-c", 2}, "^partial$")
101 readsz_test("partial^Dline^D", {"-c", 1}, "^partial$")
[all …]
/freebsd/sys/dev/qat/qat_api/common/crypto/sym/
H A Dlac_sym_partial.c6 * @file lac_sym_partial.c common partial packet functions
35 /* ASSUMPTION - partial requests on a given session must be issued in LacSym_PartialPacketStateCheck()
41 /* state is no partial - only a partial is allowed */ in LacSym_PartialPacketStateCheck()
45 /* state is partial - only a partial or final partial is allowed */ in LacSym_PartialPacketStateCheck()
52 LAC_INVALID_PARAM_LOG("invalid partial packet sequence"); in LacSym_PartialPacketStateCheck()
63 /* if previous packet was either a full or ended a partial stream, in LacSym_PartialPacketStateUpdate()
65 * state to partial to indicate a new partial stream was created */ in LacSym_PartialPacketStateUpdate()
69 /* if packet type is final - reset the partial state */ in LacSym_PartialPacketStateUpdate()
H A Dlac_sym_cipher.c100 * the request is part of a partial packet sequence in LacCipher_PerformIvCheck()
101 * (ensures that pipelined partial requests use same in LacCipher_PerformIvCheck()
111 /* For partial packets, we use a per-session buffer to in LacCipher_PerformIvCheck()
113 * updated IV forward to the next partial in the in LacCipher_PerformIvCheck()
120 * partial requests so that they may also see the in LacCipher_PerformIvCheck()
121 * residue from the previous partial. Not needed for in LacCipher_PerformIvCheck()
130 /* if the previous partial state was in LacCipher_PerformIvCheck()
131 * full, then this is the first partial in LacCipher_PerformIvCheck()
136 * case there's a previous partial in LacCipher_PerformIvCheck()
148 * necessary to ensure that the next partial in LacCipher_PerformIvCheck()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DProfileSummary.h54 /// If 'Partial' is false, it means the profile being used to optimize
56 /// If 'Partial' is true, it means the profile is for common/shared
59 bool Partial = false; variable
62 /// partial sample profile. When 'Partial' is false, it is undefined. This is
75 bool Partial = false, double PartialProfileRatio = 0)
79 NumFunctions(NumFunctions), Partial(Partial), in PSK()
95 void setPartialProfile(bool PP) { Partial = PP; } in setPartialProfile()
96 bool isPartialProfile() const { return Partial; } in isPartialProfile()
[all...]
/freebsd/crypto/openssl/providers/implementations/ciphers/
H A Dcipher_cts.c27 * The final ciphertext for the last two blocks, consists of the partial block
31 * stolen ciphertext to the partial block, which can then be decrypted as usual.
37 * Where C(n-1)* is a partial block.
41 * Where C(n-1)* is a partial block.
142 /* If there are no partial blocks then it is the same as CBC mode */ in cts128_cs1_decrypt()
168 * of the partial second last block. in cts128_cs1_decrypt()
173 * Restore the last partial ciphertext block. in cts128_cs1_decrypt()
175 * that to the partial plaintext end block. We have already decrypted the in cts128_cs1_decrypt()
231 * C(n) is a full block and C(n-1)* can be a partial block
274 * of the partial last block. in cts128_cs3_decrypt()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/fpga/
H A Dfpga-region.txt18 FPGA Regions represent FPGA's and partial reconfiguration regions of FPGA's in
34 Partial Reconfiguration (PR)
39 Partial Reconfiguration Region (PRR)
51 * Also called a "partial bit stream"
64 * During Partial Reconfiguration of a specific region, that region's bridge
79 * A base image may set up a set of partial reconfiguration regions that may
150 For partial reconfiguration (PR), each PR region will have an FPGA Region.
185 - partial-fpga-config : boolean, set if partial reconfiguration is to be done,
297 * Partial reconfiguratio
[all...]
H A Dxilinx-pr-decoupler.txt1 Xilinx LogiCORE Partial Reconfig Decoupler Softcore
3 The Xilinx LogiCORE Partial Reconfig Decoupler manages one or more
36 Partial Reconfig Decoupler:
/freebsd/lib/libc/gen/
H A Dpututxline.c73 off_t partial; in utx_active_add() local
76 partial = -1; in utx_active_add()
106 if (partial == -1) { in utx_active_add()
107 partial = ftello(fp); in utx_active_add()
112 if (partial != -1) in utx_active_add()
113 partial -= (off_t)sizeof(fe); in utx_active_add()
120 * No exact match found. Use the partial match. If no partial in utx_active_add()
123 if (partial != -1) in utx_active_add()
124 ret = fseeko(fp, partial, SEEK_SET); in utx_active_add()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DProfileSummaryInfo.cpp27 "partial-profile", cl::Hidden, cl::init(false),
28 cl::desc("Specify the current profile is used as a partial profile."));
31 "scale-partial-sample-profile-working-set-size", cl::Hidden, cl::init(true),
33 "If true, scale the working set size of the partial sample profile "
34 "by the partial profile ratio to reflect the size of the program "
38 "partial-sample-profile-working-set-size-scale-factor", cl::Hidden,
41 "partial sample profile along with the partial profile ratio. "
89 assert(hasPartialSampleProfile() && "Expect partial sample profile"); in getProfileCount()
127 // Scale the working set size of the partial sampl in computeThresholds()
[all...]
/freebsd/contrib/libarchive/tar/test/
H A Dtest_option_n.c67 systemf("%s -cnf partial-archive.tar d1 d1/file1 d1/file2 file3 " in DEFINE_TEST()
72 systemf("%s -tf partial-archive.tar >test3.out 2>test3.err", in DEFINE_TEST()
84 systemf("%s -tf partial-archive.tar d1 file3 d2/file4 " in DEFINE_TEST()
96 systemf("%s -tnf partial-archive.tar d1 file3 d2/file4 " in DEFINE_TEST()
106 systemf("%s -tf partial-archive.tar d2 >test6.out 2>test6.err", in DEFINE_TEST()
113 status = systemf("%s -tnf partial-archive.tar d2 " in DEFINE_TEST()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclTemplate.h795 /// partial specializations) known only by their external declaration IDs.
797 /// The first value in the array is the number of specializations/partial
1813 /// specialization that was instantiated from a class template partial
1816 /// The class template partial specialization from which this
1821 /// partial specialization itself.
1944 /// class template or class template partial specialization from which it
1956 /// Retrieve the class template or class template partial
1969 /// to instantiate members of the class template or class template partial
1976 /// a class template partial specialization, this function will return the
1977 /// deduced template arguments for the class template partial specialization
[all …]
/freebsd/crypto/heimdal/lib/gssapi/mech/
H A Dgss_oid_to_str.c84 size_t i, partial = (size_t)-1; in gss_name_to_oid() local
90 if (partial != (size_t)-1) in gss_name_to_oid()
92 partial = i; in gss_name_to_oid()
95 if (partial != (size_t)-1) in gss_name_to_oid()
96 return _gss_ont_mech[partial].oid; in gss_name_to_oid()
/freebsd/contrib/libfido2/man/
H A DNOTES1 To generate .partial files for https://developers.yubico.com/:
4 $ (cd build/man && pax -p p -r -w *.partial /tmp/partial)
/freebsd/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/
H A DPtrState.cpp113 // that makes this a partial merge. in Merge()
114 bool Partial = ReverseInsertPts.size() != Other.ReverseInsertPts.size(); in Merge() local
116 Partial |= ReverseInsertPts.insert(Inst).second; in Merge()
117 return Partial; in Merge()
143 Partial = false; in ResetSequenceProgress()
153 Partial = false; in Merge()
155 } else if (Partial || Other.Partial) { in Merge()
156 // If we're doing a merge on a path that's previously seen a partial in Merge()
157 // merge, conservatively drop the sequence, to avoid doing partial in Merge()
163 // point, we know that currently we are not partial. Stash whether or not in Merge()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DSimpleLoopUnswitch.h84 /// from inside the loop to outside the loop. Partial unswitching removes the
86 /// branch in the original loop. While theoretically partial unswitching can
92 /// switches. For branches, it also always does trivial, partial unswitching.
96 /// will do non-trivial, partial unswitching for branches.
98 /// Because partial unswitching of switches is extremely unlikely to be possible
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramStateTrait.h1 //ProgramStateTrait.h - Partial implementations of ProgramStateTrait -*- C++ -*-
9 // This file defines partial implementations of template specializations of
147 // Partial-specialization for ImmutableMap.
195 // Partial-specialization for ImmutableSet.
236 // Partial-specialization for ImmutableList.
279 // Partial specialization for integral types.
285 // Partial specialization for enums.
290 // Partial specialization for pointers.
/freebsd/contrib/ofed/infiniband-diags/man/
H A Diblinkinfo.839 Optionally, iblinkinfo can do partial scans and limit its output to parts of a
59 .SS Partial Scan flags
61 The node to start a partial scan can be specified with the following addresses.
94 Print all nodes found in a partial fabric scan. Normally a
95 partial fabric scan will return only the node specified. This option will
100 to expand a partial fabric scan beyond the node specified.
/freebsd/contrib/tzcode/
H A Dtzfile.5322 simple partial workarounds in writers designed to generate
332 As a partial workaround, a writer can output as much version 1
342 As a partial workaround, a writer can output more transitions
358 as a partial workaround a writer can substitute standard time
370 As a partial workaround, a writer can output more transitions
388 As a partial workaround, a writer can output a dummy (no-op)
397 As a partial workaround, a writer can output a dummy
409 As a partial workaround, a writer can avoid using
436 As a partial workaround, a writer can output data for the
/freebsd/crypto/openssl/test/
H A Dbio_readbuffer_test.c28 int ret = 0, len, partial; in test_readbuffer_file_bio() local
55 partial = 4; in test_readbuffer_file_bio()
73 if (tstid == 1 && --partial == 0) in test_readbuffer_file_bio()
80 len = 8; /* Do a small partial read to start with */ in test_readbuffer_file_bio()
/freebsd/contrib/bearssl/src/aead/
H A Dgcm.c37 * for the last partial block, to be used with the next few bytes of
116 * If there is a partial block, then we first try to in br_gcm_aad_inject()
136 * We process all complete blocks, and save the last partial in br_gcm_aad_inject()
150 * We complete the GHASH computation if there is a partial block. in br_gcm_flip()
173 * If we have a partial block, then we try to complete it. in br_gcm_run()
215 * There is a partial block. in br_gcm_run()
244 * There is a partial block: encrypted/decrypted data has in br_gcm_get_tag()
/freebsd/bin/dd/
H A Ddd.150 displays the number of complete and partial input and output blocks
188 distinguishing between a partial or complete block being read.
393 displays the number of complete and partial input and output blocks,
396 A partial input block is one where less than the input block size
398 A partial output block is one where less than the output block size
400 Partial output blocks to tape devices are considered fatal errors.
402 Partial output blocks to character devices will produce a warning message.
/freebsd/contrib/kyua/utils/format/
H A Dformatter.cpp132 std::string partial = format.substr(1, format.length() - 2); in new_ostringstream() local
133 if (partial[0] == '0') { in new_ostringstream()
135 partial.erase(0, 1); in new_ostringstream()
137 if (!partial.empty()) { in new_ostringstream()
138 const std::string::size_type dot = partial.find('.'); in new_ostringstream()
140 output->width(to_int(format, partial.substr(0, dot), "width")); in new_ostringstream()
143 output->precision(to_int(format, partial.substr(dot + 1), in new_ostringstream()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRegisterBankInfo.h45 /// value this partial mapping covers.
50 /// Number of bits at which this partial mapping starts in the
56 /// partial mapping covers in the original value:
60 /// Register bank where the partial value lives.
71 /// significant bit that this partial mapping covers.
74 /// Print this partial mapping on dbgs() stream.
77 /// Print this partial mapping on \p OS;
94 /// (mappings with more than one partial mapping), but when we do,
95 /// we would have needed to duplicate partial mappings.
96 /// The alternative could be to use an array of pointers of partial
[all …]
/freebsd/usr.sbin/etcupdate/tests/
H A Dtests_test.sh470 # /adddir/partial: Add a new file in a directory. The
475 mkdir $i/adddir/partial
477 echo "foo" > $NEW/adddir/partial/file
478 mkfifo $TEST/adddir/partial/fifo
498 # /rmdir/partial: Remove a complete hierarchy when part of the
501 mkdir -p $i/rmdir/partial/subdir
502 mkfifo $i/rmdir/partial/subdir/fifo
504 echo "foo" > $OLD/rmdir/partial/subdir/file
880 ## /adddir/partial:
881 file /adddir/partial/file "foo"
[all …]

12345678910>>...58