Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
bytes-sgx
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Markus Becker
bytes-sgx
Commits
41059012
"README.md" did not exist on "15f46dff69c18c846783ee253b2e89fa6ed91dbf"
Commit
41059012
authored
8 years ago
by
Carl Lerche
Browse files
Options
Downloads
Patches
Plain Diff
Rename RingBuf::new -> with_capacity
parent
1f188b56
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/buf/ring.rs
+1
-1
1 addition, 1 deletion
src/buf/ring.rs
test/test_ring.rs
+7
-7
7 additions, 7 deletions
test/test_ring.rs
with
8 additions
and
8 deletions
src/buf/ring.rs
+
1
−
1
View file @
41059012
...
...
@@ -22,7 +22,7 @@ pub struct RingBuf {
// TODO: There are most likely many optimizations that can be made
impl
RingBuf
{
/// Allocates a new `RingBuf` with the specified capacity.
pub
fn
new
(
mut
capacity
:
usize
)
->
RingBuf
{
pub
fn
with_capacity
(
mut
capacity
:
usize
)
->
RingBuf
{
// Round to the next power of 2 for better alignment
capacity
=
capacity
.next_power_of_two
();
...
...
This diff is collapsed.
Click to expand it.
test/test_ring.rs
+
7
−
7
View file @
41059012
...
...
@@ -2,7 +2,7 @@ use bytes::{RingBuf, Buf, MutBuf};
#[test]
pub
fn
test_initial_buf_empty
()
{
let
mut
buf
=
RingBuf
::
new
(
16
);
let
mut
buf
=
RingBuf
::
with_capacity
(
16
);
assert_eq!
(
MutBuf
::
remaining
(
&
buf
),
16
);
assert_eq!
(
Buf
::
remaining
(
&
buf
),
0
);
...
...
@@ -32,7 +32,7 @@ pub fn test_initial_buf_empty() {
#[test]
fn
test_wrapping_write
()
{
let
mut
buf
=
RingBuf
::
new
(
16
);
let
mut
buf
=
RingBuf
::
with_capacity
(
16
);
let
mut
out
=
[
0
;
10
];
buf
.copy_from
(
&
[
42
;
12
][
..
]);
...
...
@@ -54,7 +54,7 @@ fn test_wrapping_write() {
#[test]
fn
test_io_write_and_read
()
{
let
mut
buf
=
RingBuf
::
new
(
16
);
let
mut
buf
=
RingBuf
::
with_capacity
(
16
);
let
mut
out
=
[
0u8
;
8
];
let
written
=
buf
.copy_from
(
&
[
1
;
8
][
..
]);
...
...
@@ -74,7 +74,7 @@ fn test_io_write_and_read() {
#[test]
#[should_panic]
fn
test_wrap_reset
()
{
let
mut
buf
=
RingBuf
::
new
(
8
);
let
mut
buf
=
RingBuf
::
with_capacity
(
8
);
buf
.copy_from
(
&
[
1
,
2
,
3
,
4
,
5
,
6
,
7
][
..
]);
buf
.mark
();
buf
.copy_to
(
&
mut
[
0
;
4
][
..
]);
...
...
@@ -85,7 +85,7 @@ fn test_wrap_reset() {
#[test]
// Test that writes across a mark/reset are preserved.
fn
test_mark_write
()
{
let
mut
buf
=
RingBuf
::
new
(
8
);
let
mut
buf
=
RingBuf
::
with_capacity
(
8
);
buf
.copy_from
(
&
[
1
,
2
,
3
,
4
,
5
,
6
,
7
][
..
]);
buf
.mark
();
buf
.copy_from
(
&
[
8
][
..
]);
...
...
@@ -100,7 +100,7 @@ fn test_mark_write() {
// Test that "RingBuf::reset" does not reset the length of a
// full buffer to zero.
fn
test_reset_full
()
{
let
mut
buf
=
RingBuf
::
new
(
8
);
let
mut
buf
=
RingBuf
::
with_capacity
(
8
);
buf
.copy_from
(
&
[
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
][
..
]);
assert_eq!
(
MutBuf
::
remaining
(
&
buf
),
0
);
buf
.mark
();
...
...
@@ -112,7 +112,7 @@ fn test_reset_full() {
#[test]
// Test that "RingBuf::clear" does the full reset
fn
test_clear
()
{
let
mut
buf
=
RingBuf
::
new
(
8
);
let
mut
buf
=
RingBuf
::
with_capacity
(
8
);
buf
.copy_from
(
&
[
0
;
8
][
..
]);
assert_eq!
(
MutBuf
::
remaining
(
&
buf
),
0
);
assert_eq!
(
Buf
::
remaining
(
&
buf
),
8
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment