| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
util: trim trailing space for files src/util/**/* Using the following bash script doing that cd src/util find . -type f -print0 | xargs -0 -n1 sed -i 's/[ \t]*$//' Signed-off-by: Yonggang Luo <luoyonggang@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/15093> | 11 个月前 | |
util: rename PIPE_ARCH_*_ENDIAN to UTIL_ARCH_*_ENDIAN As requested by Tim. This was generated with: grep 'PIPE_ARCH_.*_ENDIAN' -rIl | xargs sed -ie 's@PIPE_ARCH_\(.*\)_ENDIAN@UTIL_ARCH_\1_ENDIAN@'g v2: - add this patch Reviewed-by: Eric Engestrom <eric@engestrom.ch> | 6 年前 | |
util/sha1: add non-typedef name for the SHA1_CTX struct Using typedef(s) is not always the answer and makes it harder for people to do clever (or one might call nasty) things with the code. Add a struct name which we will use with follow-up commit. Signed-off-by: Emil Velikov <emil.velikov@collabora.com> Reviewed-by: Grazvydas Ignotas <notasas@gmail.com> | 9 年前 |