Home
last modified time | relevance | path

Searched refs:size_p (Results 1 – 5 of 5) sorted by relevance

/third_party/skia/third_party/externals/freetype/src/base/
Dftmac.c590 unsigned char *buffer, *p, *size_p = NULL; in read_lwfn() local
658 if ( size_p ) in read_lwfn()
660 *size_p++ = (FT_Byte)( pfb_chunk_size & 0xFF ); in read_lwfn()
661 *size_p++ = (FT_Byte)( ( pfb_chunk_size >> 8 ) & 0xFF ); in read_lwfn()
662 *size_p++ = (FT_Byte)( ( pfb_chunk_size >> 16 ) & 0xFF ); in read_lwfn()
663 *size_p++ = (FT_Byte)( ( pfb_chunk_size >> 24 ) & 0xFF ); in read_lwfn()
678 size_p = p; /* save for later */ in read_lwfn()
/third_party/skia/third_party/externals/freetype/builds/mac/
Dftmac.c970 unsigned char *buffer, *p, *size_p = NULL; in read_lwfn() local
1038 if ( size_p != NULL ) in read_lwfn()
1040 *size_p++ = (FT_Byte)( pfb_chunk_size & 0xFF ); in read_lwfn()
1041 *size_p++ = (FT_Byte)( ( pfb_chunk_size >> 8 ) & 0xFF ); in read_lwfn()
1042 *size_p++ = (FT_Byte)( ( pfb_chunk_size >> 16 ) & 0xFF ); in read_lwfn()
1043 *size_p++ = (FT_Byte)( ( pfb_chunk_size >> 24 ) & 0xFF ); in read_lwfn()
1058 size_p = p; /* save for later */ in read_lwfn()
/third_party/jerryscript/jerry-core/ecma/base/
Decma-helpers-string.c131 lit_utf8_size_t *size_p) /**< [out] size of the ecma string */ in ecma_string_get_chars_fast() argument
143 *size_p = lit_get_magic_string_ex_size (id); in ecma_string_get_chars_fast()
147 *size_p = lit_get_magic_string_size (id); in ecma_string_get_chars_fast()
158 *size_p = ((ecma_utf8_string_t *) string_p)->size; in ecma_string_get_chars_fast()
163 *size_p = ((ecma_long_utf8_string_t *) string_p)->size; in ecma_string_get_chars_fast()
168 *size_p = ((ecma_ascii_string_t *) string_p)->size; in ecma_string_get_chars_fast()
176 *size_p = lit_get_magic_string_ex_size (id); in ecma_string_get_chars_fast()
1365 lit_utf8_size_t *size_p, /**< [out] size of the ecma string */ in ecma_string_get_chars() argument
1506 *size_p = size; in ecma_string_get_chars()
Decma-helpers.h343 lit_utf8_size_t *size_p,
/third_party/skia/third_party/externals/freetype/docs/oldlogs/
DChangeLog.218533 (read_lwfn): Initialize `size_p'.
8534 Check for size_p == NULL.