OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:max_text
(Results
1 - 7
of
7
) sorted by null
/external/fio/
ghelpers.h
19
unsigned int
max_text
;
member in struct:multitext_widget
/external/libpng/
pnginfo.h
121
int
max_text
; /* current size of text array */
member in struct:png_info_def
pngset.c
725
* because
max_text
>= num_text (anyway, subtract of two positive integers
728
if (num_text > info_ptr->
max_text
- info_ptr->num_text)
731
int
max_text
;
local
734
/* Calculate an appropriate
max_text
, checking for overflow. */
735
max_text
= old_num_text;
736
if (num_text <= INT_MAX -
max_text
)
738
max_text
+= num_text;
741
if (
max_text
< INT_MAX-8)
742
max_text
= (
max_text
+ 8) & ~0x7
[
all
...]
/external/opencv3/3rdparty/libpng/
pnginfo.h
109
int
max_text
; /* current size of text array */
member in struct:png_info_def
/external/pdfium/third_party/lpng_v163/
pnginfo.h
122
int
max_text
; /* current size of text array */
member in struct:png_info_def
pngset.c
706
* because
max_text
>= num_text (anyway, subtract of two positive integers
709
if (num_text > info_ptr->
max_text
- info_ptr->num_text)
712
int
max_text
;
local
715
/* Calculate an appropriate
max_text
, checking for overflow. */
716
max_text
= old_num_text;
717
if (num_text <= INT_MAX -
max_text
)
719
max_text
+= num_text;
722
if (
max_text
< INT_MAX-8)
723
max_text
= (
max_text
+ 8) & ~0x7;
[
all
...]
/ndk/tests/build/issue20862-libpng-O0/jni/
pnginfo.h
109
int
max_text
; /* current size of text array */
member in struct:png_info_def
Completed in 393 milliseconds