OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:inlength
(Results
1 - 7
of
7
) sorted by null
/external/curl/lib/
escape.c
68
char *curl_escape(const char *string, int
inlength
)
70
return curl_easy_escape(NULL, string,
inlength
);
79
char *curl_easy_escape(CURL *handle, const char *string, int
inlength
)
81
size_t alloc = (
inlength
?(size_t)
inlength
:strlen(string))+1;
x509asn1.c
250
size_t
inlength
= end - from;
local
282
if(
inlength
% size)
284
buf = malloc(4 * (
inlength
/ size) + 1);
290
outlength =
inlength
;
[
all
...]
/external/curl/tests/server/
fake_ntlm.c
50
static char *printable(char *inbuf, size_t
inlength
)
64
if(!
inlength
)
65
inlength
= strlen(inbuf);
67
if(
inlength
) {
68
outincr = ((
inlength
/2) < (HEX_STR_LEN+1)) ? HEX_STR_LEN+1 :
inlength
/2;
69
outsize =
inlength
+ outincr;
78
if(!
inlength
) {
83
for(i=0; i<
inlength
; i++) {
/external/libvpx/libvpx/vp9/encoder/
vp9_resize.c
218
static const interp_kernel *choose_interp_filter(int
inlength
, int outlength) {
220
if (outlength16 >=
inlength
* 16)
222
else if (outlength16 >=
inlength
* 13)
224
else if (outlength16 >=
inlength
* 11)
226
else if (outlength16 >=
inlength
* 9)
232
static void interpolate(const uint8_t *const input, int
inlength
,
234
const int64_t delta = (((uint64_t)
inlength
<< 32) + outlength / 2) /
236
const int64_t offset =
inlength
> outlength ?
237
(((int64_t)(
inlength
- outlength) << 31) + outlength / 2) / outlength :
238
-(((int64_t)(outlength -
inlength
) << 31) + outlength / 2) / outlength
[
all
...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_resize.c
214
static const interp_kernel *choose_interp_filter(int
inlength
, int outlength) {
216
if (outlength16 >=
inlength
* 16)
218
else if (outlength16 >=
inlength
* 13)
220
else if (outlength16 >=
inlength
* 11)
222
else if (outlength16 >=
inlength
* 9)
228
static void interpolate(const uint8_t *const input, int
inlength
,
230
const int64_t delta = (((uint64_t)
inlength
<< 32) + outlength / 2) /
232
const int64_t offset =
inlength
> outlength ?
233
(((int64_t)(
inlength
- outlength) << 31) + outlength / 2) / outlength :
234
-(((int64_t)(outlength -
inlength
) << 31) + outlength / 2) / outlength
[
all
...]
/external/zopfli/src/zopflipng/lodepng/
lodepng_util.cpp
394
unsigned long huffmanDecodeSymbol(const unsigned char* in, size_t& bp, const HuffmanTree& codetree, size_t
inlength
)
400
if((bp & 0x07) == 0 && (bp >> 3) >
inlength
) { error = 10; return 0; } //error: end reached without endcode
408
const unsigned char* in, size_t& bp, size_t
inlength
)
413
if(bp >> 3 >=
inlength
- 2) { error = 49; return; } //the bit pointer is or will go past the memory
428
unsigned long code = huffmanDecodeSymbol(in, bp, codelengthcodetree,
inlength
); if(error) return;
433
if(bp >> 3 >=
inlength
) { error = 50; return; } //error, bit pointer jumps past memory
446
if(bp >> 3 >=
inlength
) { error = 50; return; } //error, bit pointer jumps past memory
457
if(bp >> 3 >=
inlength
) { error = 50; return; } //error, bit pointer jumps past memory
481
const unsigned char* in, size_t& bp, size_t& pos, size_t
inlength
, unsigned long btype)
485
else if(btype == 2) { getTreeInflateDynamic(codetree, codetreeD, in, bp,
inlength
); if(error) return;
[
all
...]
lodepng.cpp
939
const unsigned char* in, size_t* bp, size_t
inlength
)
944
size_t inbitlength =
inlength
* 8;
953
if((*bp) >> 3 >=
inlength
- 2) return 49; /*error: the bit pointer is or will go past the memory*/
[
all
...]
Completed in 186 milliseconds