Developer Documentation
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Variables
_
a
c
d
e
h
n
p
s
u
w
Typedefs
f
g
i
m
q
r
s
u
v
Enumerations
Enumerator
b
c
d
f
h
l
n
p
r
s
t
u
v
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Typedefs
b
c
e
f
h
i
k
m
n
o
p
q
r
s
t
v
Enumerations
a
c
d
e
f
g
h
l
m
n
o
p
s
t
u
Enumerator
a
b
c
d
e
f
h
i
l
m
n
o
p
r
s
t
v
Properties
Related Functions
Files
File List
File Members
All
a
b
c
d
e
f
g
h
i
k
l
m
o
p
q
r
s
t
v
Functions
a
d
h
m
o
p
r
s
t
Variables
Typedefs
b
c
d
h
i
k
l
m
p
q
s
t
v
Enumerations
Enumerator
Macros
a
d
e
f
g
h
o
p
s
t
v
snappy-stubs-internal.cc
1
// Copyright 2011 Google Inc. All Rights Reserved.
2
//
3
// Redistribution and use in source and binary forms, with or without
4
// modification, are permitted provided that the following conditions are
5
// met:
6
//
7
// * Redistributions of source code must retain the above copyright
8
// notice, this list of conditions and the following disclaimer.
9
// * Redistributions in binary form must reproduce the above
10
// copyright notice, this list of conditions and the following disclaimer
11
// in the documentation and/or other materials provided with the
12
// distribution.
13
// * Neither the name of Google Inc. nor the names of its
14
// contributors may be used to endorse or promote products derived from
15
// this software without specific prior written permission.
16
//
17
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
29
#include <algorithm>
30
#include <string>
31
32
#include "snappy-stubs-internal.h"
33
34
namespace
snappy {
35
36
void
Varint::Append32(
string
* s, uint32 value) {
37
char
buf[Varint::kMax32];
38
const
char
* p = Varint::Encode32(buf, value);
39
s->append(buf, p - buf);
40
}
41
42
}
// namespace snappy
PluginCollection-FilePlugins
Plugin-FilePTS
Snappy
snappy-stubs-internal.cc
Generated on Wed Apr 9 2025 11:39:46 for Developer Documentation by
1.9.4