Home
last modified time | relevance | path

Searched refs:xdata (Results 1 – 13 of 13) sorted by relevance

/third_party/skia/third_party/externals/microhttpd/src/microhttpd/
Dtest_postprocessor.c164 char xdata[size + 3]; in test_multipart_garbage() local
167 xdata[0] = '-'; in test_multipart_garbage()
168 xdata[1] = 'x'; in test_multipart_garbage()
169 xdata[2] = '\r'; in test_multipart_garbage()
170 memcpy (&xdata[3], FORM_DATA, size); in test_multipart_garbage()
186 MHD_post_process (pp, xdata, splitpoint); in test_multipart_garbage()
187 MHD_post_process (pp, &xdata[splitpoint], size - splitpoint); in test_multipart_garbage()
/third_party/node/deps/icu-small/source/common/unicode/
Dstringpiece.h221 void set(const char* xdata, int32_t len) { ptr_ = xdata; length_ = len; } in set() argument
237 inline void set(const char8_t* xdata, int32_t len) { in set() argument
238 set(reinterpret_cast<const char*>(xdata), len); in set()
/third_party/skia/third_party/externals/icu/source/common/unicode/
Dstringpiece.h221 void set(const char* xdata, int32_t len) { ptr_ = xdata; length_ = len; } in set() argument
237 inline void set(const char8_t* xdata, int32_t len) { in set() argument
238 set(reinterpret_cast<const char*>(xdata), len); in set()
/third_party/icu/icu4c/source/common/unicode/
Dstringpiece.h221 void set(const char* xdata, int32_t len) { ptr_ = xdata; length_ = len; } in set() argument
237 inline void set(const char8_t* xdata, int32_t len) { in set() argument
238 set(reinterpret_cast<const char*>(xdata), len); in set()
/third_party/flutter/skia/third_party/externals/icu/source/common/unicode/
Dstringpiece.h143 void set(const char* xdata, int32_t len) { ptr_ = xdata; length_ = len; } in set() argument
/third_party/skia/third_party/externals/libpng/contrib/gregbook/
Drpng-x.c438 uch *xdata; in rpng_x_create_window() local
652 xdata = (uch *)malloc(4*image_width*image_height); in rpng_x_create_window()
655 xdata = (uch *)malloc(2*image_width*image_height); in rpng_x_create_window()
658 xdata = (uch *)malloc(image_width*image_height); in rpng_x_create_window()
662 if (!xdata) { in rpng_x_create_window()
668 (char *)xdata, image_width, image_height, pad, 0); in rpng_x_create_window()
672 free(xdata); in rpng_x_create_window()
Drpng2-x.c843 uch *xdata; in rpng2_x_create_window() local
1006 xdata = (uch *)malloc(4*rpng2_info.width*rpng2_info.height); in rpng2_x_create_window()
1009 xdata = (uch *)malloc(2*rpng2_info.width*rpng2_info.height); in rpng2_x_create_window()
1012 xdata = (uch *)malloc(rpng2_info.width*rpng2_info.height); in rpng2_x_create_window()
1016 if (!xdata) { in rpng2_x_create_window()
1022 (char *)xdata, rpng2_info.width, rpng2_info.height, pad, 0); in rpng2_x_create_window()
1026 free(xdata); in rpng2_x_create_window()
/third_party/libpng/contrib/gregbook/
Drpng-x.c438 uch *xdata; in rpng_x_create_window() local
652 xdata = (uch *)malloc(4*image_width*image_height); in rpng_x_create_window()
655 xdata = (uch *)malloc(2*image_width*image_height); in rpng_x_create_window()
658 xdata = (uch *)malloc(image_width*image_height); in rpng_x_create_window()
662 if (!xdata) { in rpng_x_create_window()
668 (char *)xdata, image_width, image_height, pad, 0); in rpng_x_create_window()
672 free(xdata); in rpng_x_create_window()
Drpng2-x.c843 uch *xdata; in rpng2_x_create_window() local
1006 xdata = (uch *)malloc(4*rpng2_info.width*rpng2_info.height); in rpng2_x_create_window()
1009 xdata = (uch *)malloc(2*rpng2_info.width*rpng2_info.height); in rpng2_x_create_window()
1012 xdata = (uch *)malloc(rpng2_info.width*rpng2_info.height); in rpng2_x_create_window()
1016 if (!xdata) { in rpng2_x_create_window()
1022 (char *)xdata, rpng2_info.width, rpng2_info.height, pad, 0); in rpng2_x_create_window()
1026 free(xdata); in rpng2_x_create_window()
/third_party/boost/libs/context/src/asm/
Dmake_x86_64_ms_pe_masm.asm91 ; .xdata for a function's structured exception handling unwind behavior
/third_party/boost/tools/build/src/engine/
Dmodules.cpp343 static void bind_variables_for_rule( void * xrule, void * xdata ) in bind_variables_for_rule() argument
346 struct bind_vars_t * data = (struct bind_vars_t *)xdata; in bind_variables_for_rule()
/third_party/vk-gl-cts/framework/delibs/cmake/
DCFlags.cmake86 # and .xdata.
/third_party/icu/icu4c/source/test/intltest/
Ddtfmrgts.cpp1268 const char *xdata, const char *xnormalized) : in Test1684Data() argument
1276 data(xdata,""), in Test1684Data()
1277 normalized((xnormalized==NULL)?xdata:xnormalized,"") in Test1684Data()