HomeSort by: relevance | last modified time | path
    Searched defs:into (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_quarantine_test.cc 45 QuarantineBatch into; local
46 into.init(kFakePtr, 4UL);
50 into.merge(&from);
52 ASSERT_EQ(into.count, 2UL);
53 ASSERT_EQ(into.batch[0], kFakePtr);
54 ASSERT_EQ(into.batch[1], kFakePtr);
55 ASSERT_EQ(into.size, 12UL + sizeof(QuarantineBatch));
56 ASSERT_EQ(into.quarantined_size(), 12UL);
65 ASSERT_TRUE(into.count + from.count == QuarantineBatch::kSize);
66 ASSERT_TRUE(into.can_merge(&from))
    [all...]
  /src/external/mit/isl/dist/doc/
implementation.tex 264 and negative values and split the context into a part where
400 {\tt PipLib} converts each into a pair of inequalities.
467 It can also be plugged into a new solution.
485 of \autoref{s:pip:experiments} did not take into account
977 final coordinates. The path $P'$ can then be decomposed into
1232 classifying them into variables that are uniquely
1422 \subsection{Decomposing $R$ into strongly connected components}
1772 The domains and ranges can therefore be partitioned into two parts,
  /src/bin/sh/
redir.c 103 int into; member in struct:renamelist
104 int cloexec; /* orig had FD_CLOEXEC set (into always does) */
171 if (rl->into == fd)
172 return &rl->into;
197 if (rl->into < 0) {
202 (" from %d%s\n", rl->into,
204 copyfd(rl->into, rl->orig, rl->cloexec, 1);
209 if (rl->into < 0) {
214 (" close savefd %d\n", rl->into));
215 close(rl->into);
    [all...]
  /src/external/bsd/zstd/dist/lib/dictBuilder/
zdict.c 299 /* reduce maxLength in case of final into repetitive data */
342 const char* const into = (const char*) container; local
346 if (ip[u] != into[u]) break;
388 if (addedLength > 0) { /* otherwise, elt fully included into existing */
509 suffix[bufferSize] = (int)bufferSize; /* leads into noise */
510 suffix0[0] = (int)bufferSize; /* leads into noise */
926 /* First copy the customDictContent into its final location.
928 * do this before any other writes into the output buffer.
929 * Then copy the header & padding into the output buffer.

Completed in 46 milliseconds