OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:iSrcLen
(Results
1 - 3
of
3
) sorted by null
/external/pdfium/xfa/src/fgas/src/crt/
fx_algorithm.cpp
52
int32_t FX_Base64EncodeA(const uint8_t* pSrc, int32_t
iSrcLen
, FX_CHAR* pDst) {
54
if (
iSrcLen
< 1) {
58
int32_t iDstLen =
iSrcLen
/ 3 * 4;
59
if ((
iSrcLen
% 3) != 0) {
67
while (
iSrcLen
> 0) {
68
if (
iSrcLen
> 2) {
72
iSrcLen
-= 3;
76
if (
iSrcLen
> 1) {
79
iBytes =
iSrcLen
;
80
iSrcLen
= 0;
[
all
...]
fx_encode.cpp
122
int32_t
iSrcLen
= *pSrcLen;
123
if (
iSrcLen
< 1) {
135
while (iIndex <
iSrcLen
) {
/external/pdfium/xfa/src/fgas/include/
fx_alg.h
13
int32_t FX_Base64EncodeA(const uint8_t* pSrc, int32_t
iSrcLen
, FX_CHAR* pDst);
14
int32_t FX_Base64DecodeA(const FX_CHAR* pSrc, int32_t
iSrcLen
, uint8_t* pDst);
15
int32_t FX_Base64DecodeW(const FX_WCHAR* pSrc, int32_t
iSrcLen
, uint8_t* pDst);
Completed in 712 milliseconds