/third_party/elfutils/libelf/ |
H A D | gelf_update_move.c | 42 gelf_update_move (Elf_Data *data, int ndx, GElf_Move *src) in gelf_update_move() argument 44 Elf_Data_Scn *data_scn = (Elf_Data_Scn *) data; in gelf_update_move() 46 if (data == NULL) in gelf_update_move() 53 /* Check whether we have to resize the data buffer. */ in gelf_update_move() 62 /* The type of the data better should match. */ in gelf_update_move()
|
H A D | gelf_update_lib.c | 42 gelf_update_lib (Elf_Data *data, int ndx, GElf_Lib *src) in gelf_update_lib() argument 44 if (data == NULL) in gelf_update_lib() 47 Elf_Data_Scn *data_scn = (Elf_Data_Scn *) data; in gelf_update_lib() 50 /* The type of the data better should match. */ in gelf_update_lib() 58 /* Check whether we have to resize the data buffer. */ in gelf_update_lib()
|
/third_party/curl/lib/ |
H A D | socks.h | 41 struct Curl_easy *data, 51 struct Curl_easy *data); 55 struct Curl_easy *data);
|
H A D | cf-https-connect.h | 38 CURLcode Curl_cf_http_connect_add(struct Curl_easy *data, 46 struct Curl_easy *data, 51 CURLcode Curl_cf_https_setup(struct Curl_easy *data,
|
H A D | curl_hmac.h | 37 const unsigned char *data, 46 HMAC_hupdate_func hmac_hupdate; /* Update context with data. */ 67 const unsigned char *data, 73 const unsigned char *data, const size_t datalen,
|
H A D | http_proxy.h | 39 struct Curl_easy *data, 46 struct Curl_easy *data, 52 struct Curl_easy *data);
|
/third_party/lzma/CPP/7zip/UI/Common/ |
H A D | PropIDUtils.h | 12 bool ConvertNtReparseToString(const Byte *data, UInt32 size, UString &s);
13 void ConvertNtSecureToString(const Byte *data, UInt32 size, AString &s);
14 bool CheckNtSecure(const Byte *data, UInt32 size) throw();
|
/third_party/json/tests/src/ |
H A D | fuzzer-parse_bson.cpp | 11 array data, it performs the following steps: 13 - j1 = from_bson(data) 29 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) in LLVMFuzzerTestOneInput() argument 34 std::vector<uint8_t> vec1(data, data + size); in LLVMFuzzerTestOneInput()
|
H A D | fuzzer-parse_cbor.cpp | 11 array data, it performs the following steps: 13 - j1 = from_cbor(data) 29 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) in LLVMFuzzerTestOneInput() argument 34 std::vector<uint8_t> vec1(data, data + size); in LLVMFuzzerTestOneInput()
|
H A D | fuzzer-parse_json.cpp | 11 array data, it performs the following steps: 13 - j1 = parse(data) 30 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) in LLVMFuzzerTestOneInput() argument 35 json j1 = json::parse(data, data + size); in LLVMFuzzerTestOneInput()
|
H A D | fuzzer-parse_msgpack.cpp | 11 array data, it performs the following steps: 13 - j1 = from_msgpack(data) 29 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) in LLVMFuzzerTestOneInput() argument 34 std::vector<uint8_t> vec1(data, data + size); in LLVMFuzzerTestOneInput()
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_lower_sysvals_to_varyings.c | 41 switch (var->data.location) { in nir_lower_sysvals_to_varyings() 45 var->data.mode = nir_var_shader_in; \ in nir_lower_sysvals_to_varyings() 46 var->data.location = VARYING_SLOT_ ## varying; \ in nir_lower_sysvals_to_varyings()
|
/third_party/mesa3d/src/freedreno/isa/ |
H A D | isa.h | 41 void (*cb)(void *data, struct isa_decode_value *val); 74 void (*field_cb)(void *data, const char *field_name, struct isa_decode_value *val); 79 void (*instr_cb)(void *data, unsigned n, void *instr);
|
/third_party/littlefs/ |
H A D | lfs_util.c | 23 const uint8_t *data = buffer; in lfs_crc() local 26 crc = (crc >> 4) ^ rtable[(crc ^ (data[i] >> 0)) & 0xf]; in lfs_crc() 27 crc = (crc >> 4) ^ rtable[(crc ^ (data[i] >> 4)) & 0xf]; in lfs_crc()
|
/third_party/ltp/lib/newlib_tests/shell/net/ |
H A D | tst_ipaddr_un.sh | 141 local data cmd i result 144 tst_res TINFO "Testing for IPv${TST_IPVER}, data: \$$var" 146 eval data="\$$var" 149 for i in $data; do
|
/third_party/mesa3d/src/gallium/frontends/nine/ |
H A D | threadpool.h | 43 typedef void (*threadpool_task_func)(void *data); 47 void *data; member 57 void *data);
|
/third_party/mesa3d/src/gallium/include/frontend/ |
H A D | drisw_api.h | 17 void *data); 19 void *data, unsigned width, unsigned height); 21 void *data, int x, int y, unsigned width, unsigned height, unsigned stride);
|
/third_party/node/test/parallel/ |
H A D | test-cluster-fork-env.js | 57 worker.on('message', function(data) { 58 checks.using = (data.prop === 'custom'); 59 checks.overwrite = (data.overwrite === 'new');
|
/third_party/node/test/common/ |
H A D | hijackstdio.js | 10 stream.write = function(data, callback) { 12 listener(data); 17 _write.call(stream, data, callback);
|
/third_party/node/benchmark/buffers/ |
H A D | buffer-base64-decode-wrapped.js | 15 const data = line.repeat(linesCount); 17 data.match(/./); // Flatten the string 22 buffer.base64Write(data, 0, bytesCount);
|
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_cs_tpool.h | 59 typedef void (*lp_cs_tpool_task_func)(void *data, int iter_idx, struct lp_cs_local_mem *lmem); 63 void *data; member 78 void *data, int num_iters);
|
/third_party/libexif/libexif/pentax/ |
H A D | exif-mnote-data-pentax.h | 1 /* exif-mnote-data-pentax.h 25 #include <libexif/exif-mnote-data.h> 26 #include <libexif/exif-mnote-data-priv.h> 28 #include <libexif/exif-data.h>
|
/third_party/libexif/libexif/fuji/ |
H A D | exif-mnote-data-fuji.h | 1 /* exif-mnote-data-fuji.h 24 #include <libexif/exif-mnote-data.h> 25 #include <libexif/exif-mnote-data-priv.h> 26 #include <libexif/exif-data.h>
|
/third_party/libexif/libexif/canon/ |
H A D | exif-mnote-data-canon.h | 1 /* exif-mnote-data-canon.h 25 #include <libexif/exif-mnote-data.h> 26 #include <libexif/exif-mnote-data-priv.h> 28 #include <libexif/exif-data.h>
|
/third_party/lwip/src/include/lwip/ |
H A D | sio.h | 92 * @param data pointer to data buffer for receiving 93 * @param len maximum length (in bytes) of data to receive 96 * @note This function will block until data can be received. The blocking 99 u32_t sio_read(sio_fd_t fd, u8_t *data, u32_t len); 105 * immediately if no data is available and never blocks. 108 * @param data pointer to data buffer for receiving 109 * @param len maximum length (in bytes) of data to receive 112 u32_t sio_tryread(sio_fd_t fd, u8_t *data, u32_ [all...] |