HomeSort by: relevance | last modified time | path
    Searched defs:Update (Results 1 - 25 of 31) sorted by relevancy

1 2

  /src/common/dist/zlib/contrib/dotzlib/DotZLib/
ChecksumImpl.cs 58 /// <param name="data">The data to update the checksum with</param>
64 /// <remarks>All the other <c>Update</c> methods are implemented in terms of this one.
66 public abstract void Update(byte[] data, int offset, int count);
71 /// <param name="data">The data to update the checksum with</param>
72 public void Update(byte[] data)
74 Update(data, 0, data.Length);
80 /// <param name="data">The string to update the checksum with</param>
82 public void Update(string data)
84 Update(Encoding.UTF8.GetBytes(data));
90 /// <param name="data">The string to update the checksum with</param>
    [all...]
DotZLib.cs 129 /// <param name="data">The data to update the checksum with</param>
130 void Update(byte[] data);
135 /// <param name="data">The data to update the checksum with</param>
141 void Update(byte[] data, int offset, int count);
146 /// <param name="data">The string to update the checksum with</param>
148 void Update(string data);
153 /// <param name="data">The string to update the checksum with</param>
155 void Update(string data, Encoding encoding);
  /src/external/gpl3/binutils/dist/zlib/contrib/dotzlib/DotZLib/
ChecksumImpl.cs 58 /// <param name="data">The data to update the checksum with</param>
64 /// <remarks>All the other <c>Update</c> methods are implemented in terms of this one.
66 public abstract void Update(byte[] data, int offset, int count);
71 /// <param name="data">The data to update the checksum with</param>
72 public void Update(byte[] data)
74 Update(data, 0, data.Length);
80 /// <param name="data">The string to update the checksum with</param>
82 public void Update(string data)
84 Update(Encoding.UTF8.GetBytes(data));
90 /// <param name="data">The string to update the checksum with</param>
    [all...]
DotZLib.cs 129 /// <param name="data">The data to update the checksum with</param>
130 void Update(byte[] data);
135 /// <param name="data">The data to update the checksum with</param>
141 void Update(byte[] data, int offset, int count);
146 /// <param name="data">The string to update the checksum with</param>
148 void Update(string data);
153 /// <param name="data">The string to update the checksum with</param>
155 void Update(string data, Encoding encoding);
  /src/external/gpl3/binutils.old/dist/zlib/contrib/dotzlib/DotZLib/
ChecksumImpl.cs 58 /// <param name="data">The data to update the checksum with</param>
64 /// <remarks>All the other <c>Update</c> methods are implmeneted in terms of this one.
66 public abstract void Update(byte[] data, int offset, int count);
71 /// <param name="data">The data to update the checksum with</param>
72 public void Update(byte[] data)
74 Update(data, 0, data.Length);
80 /// <param name="data">The string to update the checksum with</param>
82 public void Update(string data)
84 Update(Encoding.UTF8.GetBytes(data));
90 /// <param name="data">The string to update the checksum with</param>
    [all...]
DotZLib.cs 129 /// <param name="data">The data to update the checksum with</param>
130 void Update(byte[] data);
135 /// <param name="data">The data to update the checksum with</param>
141 void Update(byte[] data, int offset, int count);
146 /// <param name="data">The string to update the checksum with</param>
148 void Update(string data);
153 /// <param name="data">The string to update the checksum with</param>
155 void Update(string data, Encoding encoding);
  /src/external/gpl3/gdb/dist/zlib/contrib/dotzlib/DotZLib/
ChecksumImpl.cs 58 /// <param name="data">The data to update the checksum with</param>
64 /// <remarks>All the other <c>Update</c> methods are implmeneted in terms of this one.
66 public abstract void Update(byte[] data, int offset, int count);
71 /// <param name="data">The data to update the checksum with</param>
72 public void Update(byte[] data)
74 Update(data, 0, data.Length);
80 /// <param name="data">The string to update the checksum with</param>
82 public void Update(string data)
84 Update(Encoding.UTF8.GetBytes(data));
90 /// <param name="data">The string to update the checksum with</param>
    [all...]
DotZLib.cs 129 /// <param name="data">The data to update the checksum with</param>
130 void Update(byte[] data);
135 /// <param name="data">The data to update the checksum with</param>
141 void Update(byte[] data, int offset, int count);
146 /// <param name="data">The string to update the checksum with</param>
148 void Update(string data);
153 /// <param name="data">The string to update the checksum with</param>
155 void Update(string data, Encoding encoding);
  /src/external/gpl3/gdb.old/dist/zlib/contrib/dotzlib/DotZLib/
ChecksumImpl.cs 58 /// <param name="data">The data to update the checksum with</param>
64 /// <remarks>All the other <c>Update</c> methods are implmeneted in terms of this one.
66 public abstract void Update(byte[] data, int offset, int count);
71 /// <param name="data">The data to update the checksum with</param>
72 public void Update(byte[] data)
74 Update(data, 0, data.Length);
80 /// <param name="data">The string to update the checksum with</param>
82 public void Update(string data)
84 Update(Encoding.UTF8.GetBytes(data));
90 /// <param name="data">The string to update the checksum with</param>
    [all...]
DotZLib.cs 129 /// <param name="data">The data to update the checksum with</param>
130 void Update(byte[] data);
135 /// <param name="data">The data to update the checksum with</param>
141 void Update(byte[] data, int offset, int count);
146 /// <param name="data">The string to update the checksum with</param>
148 void Update(string data);
153 /// <param name="data">The string to update the checksum with</param>
155 void Update(string data, Encoding encoding);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
CFGUpdate.h 1 //===- CFGUpdate.h - Encode a CFG Edge Update. ------------------*- C++ -*-===//
9 // This file defines a CFG Edge Update: Insert or Delete, and two Nodes as the
27 template <typename NodePtr> class Update {
33 Update(UpdateKind Kind, NodePtr From, NodePtr To)
39 bool operator==(const Update &RHS) const {
62 void LegalizeUpdates(ArrayRef<Update<NodePtr>> AllUpdates,
63 SmallVectorImpl<Update<NodePtr>> &Result,
106 llvm::sort(Result, [&](const Update<NodePtr> &A, const Update<NodePtr> &B) {
GenericDomTreeConstruction.h 87 // current batch update.
97 // If BUI is a nullptr, then there's no batch update in progress.
103 // Don't reset the pointer to BatchUpdateInfo here -- if there's an update
253 // Path compression. Point each vertex's Parent to the root and update its
372 // the ongoing batch update, but we cannot really pretend that they don't
564 // If the update is using the actual CFG, BUI is null. If it's using a view,
573 // used in case the caller needs a DT update with a CFGView.
690 return false; // To is not a root, nothing to update.
716 // The tree has only trivial roots -- nothing to update.
732 // It may be possible to update the tree without recalculating it, bu
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
RegisterClassInfo.cpp 44 bool Update = false;
51 Update = true;
59 if (Update || CSR != CalleeSavedRegs) {
67 Update = true;
76 Update = true;
81 if (Update) {
  /src/external/apache2/llvm/dist/llvm/tools/dsymutil/
LinkUtils.h 39 /// Update
40 bool Update = false;
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/ASTDiff/
ASTDiff.h 30 Update, // (Src, Dst): update the value of node Src to match Dst.
33 UpdateMove // Same as Move plus Update.
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Dominators.cpp 70 template class llvm::cfg::Update<BasicBlock *>;
  /src/external/bsd/elftosb/dist/common/
SHA1.cpp 132 void CSHA1::Update(const uint8_t *data, uint32_t len)
189 Update((uint8_t *)uData, SHA1_MAX_FILE_BUFFER);
195 Update((uint8_t *)uData, ulRest);
212 Update((uint8_t *)"\200", 1);
215 Update((uint8_t *)"\0", 1);
217 Update(finalcount, 8); // Cause a SHA1Transform()
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonAsmBackend.cpp 56 // Update the fragment.
663 bool Update = false;
669 Update = true;
685 (void)Update;
686 assert(Update && "Didn't find relaxation target");
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ExprOpenMP.h 241 /// Update expression for the originally specified iteration variable,
243 Expr *Update = nullptr;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Frontend/OpenMP/
OMPIRBuilder.h 384 /// to update the loop counter.
494 /// Update the internal location to \p Loc.
885 /// Callback type for Atomic Expression update
889 /// #pragma omp atomic update
893 /// \param XOld the value of the atomic memory address to use for update
896 /// \returns Value to update X to.
901 enum AtomicKind { Read, Write, Update, Capture };
913 /// Emit atomic update for constructs: X = X BinOp Expr ,or X = Expr BinOp X
919 /// \param Expr The value to update X with.
922 /// \param RMWOp The binary operation used for update. I
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCAssembler.h 96 unsigned Update;
268 unsigned Update,
274 VersionInfo.Update = Update;
278 unsigned Minor, unsigned Update,
284 VersionInfo.Update = Update;
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCAsmStreamer.cpp 166 unsigned Update, VersionTuple SDKVersion) override;
168 unsigned Update, VersionTuple SDKVersion) override;
597 unsigned Minor, unsigned Update,
600 if (Update)
601 OS << ", " << Update;
623 unsigned Minor, unsigned Update,
627 if (Update)
628 OS << ", " << Update;
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/scripts/
cpplint.py 1528 """Update preprocessor stack.
1584 def Update(self, filename, clean_lines, linenum, error):
1585 """Update nesting state with current line.
1595 # Update pp_stack first
1678 # Update access control if we are inside a class/struct
2097 # Found an operator, update nesting stack
2159 # Found an operator, update nesting stack
3798 nesting_state.Update(filename, clean_lines, line, error)
  /src/sys/opencrypto/
cryptosoft_xform.c 69 int (*Update)(void *, const uint8_t *, uint16_t);
  /src/external/apache2/llvm/dist/llvm/include/llvm/DWARFLinker/
DWARFLinker.h 179 /// \p Dwarf and offsetting them. Update the location attributes to point to
281 /// update existing DWARF info(for the linked binary).
282 void setUpdate(bool Update) { Options.Update = Update; }
358 /// Given a DIE, update its incompleteness based on whether its children are
361 /// Given a DIE, update its incompleteness based on whether the DIEs it
546 bool Update;
552 bool Update)
554 DIEAlloc(DIEAlloc), CompileUnits(CompileUnits), Update(Update) {
    [all...]

Completed in 60 milliseconds

1 2