Home
last modified time | relevance | path

Searched refs:edges (Results 1 – 25 of 63) sorted by relevance

123

/freebsd/crypto/openssl/providers/implementations/ciphers/
H A Dcipher_aes_cbc_hmac_sha1_hw.c128 HASH_DESC hash_d[8], edges[8]; in tls1_multi_block_encrypt() local
213 edges[i].ptr = blocks[i].c; in tls1_multi_block_encrypt()
214 edges[i].blocks = 1; in tls1_multi_block_encrypt()
218 sha1_multi_block(mctx, edges, n4x); in tls1_multi_block_encrypt()
231 edges[i].ptr = hash_d[i].ptr; in tls1_multi_block_encrypt()
232 edges[i].blocks = MAXCHUNKSIZE / 64; in tls1_multi_block_encrypt()
236 sha1_multi_block(mctx, edges, n4x); in tls1_multi_block_encrypt()
240 edges[i].ptr = hash_d[i].ptr += MAXCHUNKSIZE; in tls1_multi_block_encrypt()
242 edges[i].blocks = MAXCHUNKSIZE / 64; in tls1_multi_block_encrypt()
273 edges[i].blocks = 1; in tls1_multi_block_encrypt()
[all …]
H A Dcipher_aes_cbc_hmac_sha256_hw.c132 HASH_DESC hash_d[8], edges[8]; in tls1_multi_block_encrypt() local
221 edges[i].ptr = blocks[i].c; in tls1_multi_block_encrypt()
222 edges[i].blocks = 1; in tls1_multi_block_encrypt()
226 sha256_multi_block(mctx, edges, n4x); in tls1_multi_block_encrypt()
239 edges[i].ptr = hash_d[i].ptr; in tls1_multi_block_encrypt()
240 edges[i].blocks = MAXCHUNKSIZE / 64; in tls1_multi_block_encrypt()
244 sha256_multi_block(mctx, edges, n4x); in tls1_multi_block_encrypt()
248 edges[i].ptr = hash_d[i].ptr += MAXCHUNKSIZE; in tls1_multi_block_encrypt()
250 edges[i].blocks = MAXCHUNKSIZE / 64; in tls1_multi_block_encrypt()
281 edges[i].blocks = 1; in tls1_multi_block_encrypt()
[all …]
/freebsd/contrib/llvm-project/lld/MachO/
H A DExportTrie.cpp86 std::vector<Edge> edges; member
152 for (const Edge &edge : edges) { in updateOffset()
181 assert(edges.size() < 256); in writeTo()
182 *buf++ = edges.size(); in writeTo()
184 for (const Edge &edge : edges) { in writeTo()
248 node->edges.emplace_back(pivotSymbol->getName().slice(lastPos, pos), in sortAndBuild()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A Di386.cpp57 for (auto &E : B->edges()) { in optimizeGOTAndStubAccesses()
65 auto &GOTBlock = StubBlock.edges().begin()->getTarget().getBlock(); in optimizeGOTAndStubAccesses()
71 auto &GOTTarget = GOTBlock.edges().begin()->getTarget(); in optimizeGOTAndStubAccesses()
H A Dx86_64.cpp86 for (auto &E : B->edges()) { in optimizeGOTAndStubAccesses()
105 auto &GOTTarget = GOTEntryBlock.edges().begin()->getTarget(); in optimizeGOTAndStubAccesses()
169 auto &GOTBlock = StubBlock.edges().begin()->getTarget().getBlock(); in optimizeGOTAndStubAccesses()
175 auto &GOTTarget = GOTBlock.edges().begin()->getTarget(); in optimizeGOTAndStubAccesses()
H A DJITLinkGeneric.h143 assert((!B->isZeroFill() || all_of(B->edges(), in fixUpBlocks()
148 "Non-KeepAlive edges in zero-fill block?"); in fixUpBlocks()
156 for (auto &E : B->edges()) { in fixUpBlocks()
158 // Skip non-relocation edges. in fixUpBlocks()
163 // that no edges point to symbols in NoAlloc sections. in fixUpBlocks()
H A DSEHFrameSupport.h43 for (auto &E : B->edges()) { in operator()
H A DELF_riscv.cpp166 for (Edge &E : B->edges()) in gatherRISCVPCRelHi20()
541 for (auto &E : B->edges()) in initRelaxAux()
743 for (auto &E : Block.edges()) { in finalizeBlockRelax()
758 for (auto IE = Block.edges().begin(); IE != Block.edges().end();) { in finalizeBlockRelax()
891 auto &PrevEdge = *std::prev(BlockToFix.edges().end()); in addSingleRelocation()
H A DJITLink.cpp201 for (auto I = B.edges().begin(); I != B.edges().end();) { in splitBlock()
305 llvm::copy(B->edges(), std::back_inserter(SortedEdges)); in dump()
/freebsd/crypto/openssl/crypto/evp/
H A De_aes_cbc_hmac_sha1.c165 HASH_DESC hash_d[8], edges[8]; in tls1_1_multi_block_encrypt() local
250 edges[i].ptr = blocks[i].c; in tls1_1_multi_block_encrypt()
251 edges[i].blocks = 1; in tls1_1_multi_block_encrypt()
255 sha1_multi_block(ctx, edges, n4x); in tls1_1_multi_block_encrypt()
268 edges[i].ptr = hash_d[i].ptr; in tls1_1_multi_block_encrypt()
269 edges[i].blocks = MAXCHUNKSIZE / 64; in tls1_1_multi_block_encrypt()
273 sha1_multi_block(ctx, edges, n4x); in tls1_1_multi_block_encrypt()
277 edges[i].ptr = hash_d[i].ptr += MAXCHUNKSIZE; in tls1_1_multi_block_encrypt()
279 edges[i].blocks = MAXCHUNKSIZE / 64; in tls1_1_multi_block_encrypt()
310 edges[i].blocks = 1; in tls1_1_multi_block_encrypt()
[all …]
H A De_aes_cbc_hmac_sha256.c160 HASH_DESC hash_d[8], edges[8]; in tls1_1_multi_block_encrypt() local
249 edges[i].ptr = blocks[i].c; in tls1_1_multi_block_encrypt()
250 edges[i].blocks = 1; in tls1_1_multi_block_encrypt()
254 sha256_multi_block(ctx, edges, n4x); in tls1_1_multi_block_encrypt()
267 edges[i].ptr = hash_d[i].ptr; in tls1_1_multi_block_encrypt()
268 edges[i].blocks = MAXCHUNKSIZE / 64; in tls1_1_multi_block_encrypt()
272 sha256_multi_block(ctx, edges, n4x); in tls1_1_multi_block_encrypt()
276 edges[i].ptr = hash_d[i].ptr += MAXCHUNKSIZE; in tls1_1_multi_block_encrypt()
278 edges[i].blocks = MAXCHUNKSIZE / 64; in tls1_1_multi_block_encrypt()
309 edges[i].blocks = 1; in tls1_1_multi_block_encrypt()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DProfiledCallGraph.h39 // Sort edges by callee names only since all edges to be compared are from
50 using edges = std::set<edge, ProfiledCallGraphEdgeComparer>;
51 using iterator = edges::iterator;
52 using const_iterator = edges::const_iterator; member
58 edges Edges;
74 // Trim edges with weight up to `IgnoreColdCallThreshold`. This aims
75 // for a more stable call graph with "determinstic" edges from run to run.
82 // BFS traverse the context profile trie to add call edges for calls shown
98 // conflict with the context edges, whic
[all...]
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86LoadValueInjectionLoadHardening.cpp546 for (const Edge &E : G.edges()) { in elimMitigatedEdgesAndNodes()
551 for (const Edge &DE : Dest->edges()) in elimMitigatedEdgesAndNodes()
561 if (llvm::none_of(RootN.edges(), MachineGadgetGraph::isGadgetEdge)) in elimMitigatedEdgesAndNodes()
570 for (const Edge &E : N->edges()) { in elimMitigatedEdgesAndNodes()
580 for (const Edge &E : RootN.edges()) { in elimMitigatedEdgesAndNodes()
633 for (const Edge &E : Graph->edges()) { in hardenLoadsWithPlugin()
674 for (const Edge &E : Graph->edges()) in hardenLoadsWithHeuristic()
687 for (const Edge &E : N.edges()) { in hardenLoadsWithHeuristic()
693 for (const Edge &EgressEdge : N.edges()) in hardenLoadsWithHeuristic()
727 for (const Edge &E : N.edges()) { in insertFences()
[all …]
H A DImmutableGraph.h74 ArrayRef<Edge> edges() const { in edges() function
94 ArrayRef<Edge> edges() const { return ArrayRef(Edges.get(), EdgesSize); } in edges() function
95 const Edge *edges_begin() const { return edges().begin(); } in edges_begin()
96 const Edge *edges_end() const { return edges().end(); } in edges_end()
380 for (const Edge &E : N.edges()) { in trim()
/freebsd/sys/contrib/device-tree/Bindings/soc/qcom/
H A Dqcom,smd.txt15 processor of some sort - or in SMD language an "edge". The name of the edges
61 In turn, subnodes of the "edges" represent devices tied to SMD channels on that
/freebsd/sys/contrib/device-tree/Bindings/iio/dac/
H A Dad5755.txt27 Channel C and Channel D clock on opposite edges.
29 Channel B and Channel D clock on opposite edges.
/freebsd/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-graph.cpp303 assert(!G.edges().empty()); in calculateEdgeStatistics()
304 for (auto &E : G.edges()) { in calculateEdgeStatistics()
338 for (auto &E : G.edges()) { in normalizeStatistics()
410 for (const auto &E : G.edges()) { in exportGraphAsDOT()
/freebsd/sys/contrib/device-tree/Bindings/iio/magnetometer/
H A Dak8974.txt19 edges alike.
/freebsd/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/
H A DGIMatchDag.h
/freebsd/sys/contrib/device-tree/Bindings/mmc/
H A Dmtk-sd.txt47 If present,HS400 command responses are sampled on rising edges.
48 If not present,HS400 command responses are sampled on falling edges.
/freebsd/crypto/openssl/doc/life-cycles/
H A DREADME.md9 [GraphViz](https://www.graphviz.org/) tool. These omit edges and should
/freebsd/sys/contrib/device-tree/Bindings/spi/
H A Dspi-synquacer.txt13 - socionext,set-aces: boolean, if same active clock edges field to be set.
/freebsd/sys/contrib/device-tree/Bindings/iio/gyroscope/
H A Dnxp,fxas21002c.txt15 the interrupts can be triggered on rising or falling edges.
/freebsd/sys/contrib/device-tree/Bindings/gpio/
H A Dabilis,tb10x-gpio.txt14 - #interrupt-cells: Should be <1>. Interrupts are triggered on both edges.
/freebsd/share/examples/BSD_daemon/
H A Deps.patch20 +% This sets round ends on the lines, this looks better than sharp edges

123