Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Macros | Variables
SkBase64.cpp File Reference
#include "src/base/SkBase64.h"
#include "include/private/base/SkAssert.h"
#include <cstdint>

Go to the source code of this file.

Macros

#define DecodePad   -2
 
#define EncodePad   64
 

Variables

static const char default_encode []
 
static const signed char decodeData []
 

Macro Definition Documentation

◆ DecodePad

#define DecodePad   -2

Definition at line 15 of file SkBase64.cpp.

◆ EncodePad

#define EncodePad   64

Definition at line 16 of file SkBase64.cpp.

Variable Documentation

◆ decodeData

const signed char decodeData[]
static
Initial value:
= {
62, -1, -1, -1, 63,
52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, -1, DecodePad, -1, -1,
-1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, -1,
-1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51
}
#define DecodePad
Definition SkBase64.cpp:15

Definition at line 23 of file SkBase64.cpp.

23 {
24 62, -1, -1, -1, 63,
25 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, -1, DecodePad, -1, -1,
26 -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
27 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, -1,
28 -1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
29 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51
30};

◆ default_encode

const char default_encode[]
static
Initial value:
=
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz"
"0123456789+/="

Definition at line 18 of file SkBase64.cpp.