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

  /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/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/sys/external/bsd/acpica/dist/include/
aclocal.h 809 * Update state - used to traverse complex objects such as packages
941 ACPI_UPDATE_STATE Update;

Completed in 16 milliseconds