/third_party/elfio/elfio/ |
H A D | elfio_strings.hpp | 46 const char* data = string_section->get_data(); in get_string() local 47 if ( index < string_section->get_size() && nullptr != data ) { in get_string() 49 strnlen( data + index, string_section->get_size() - index ); in get_string() 51 return data + index; in get_string() 64 // Strings are addeded to the end of the current section data in add_string()
|
/third_party/curl/lib/vquic/ |
H A D | vquic-tls.h | 55 struct Curl_easy *data); 62 * @param data the transfer involved 72 struct Curl_easy *data, 79 * Cleanup all data that has been initialized. 85 struct Curl_easy *data); 93 struct Curl_easy *data,
|
/third_party/curl/lib/ |
H A D | ws.h | 55 * converting payloads, tracking remaining data in current frame */ 68 struct Curl_easy *data; /* used for write callback handling */ member 71 struct bufq recvbuf; /* raw data from the server */ 72 struct bufq sendbuf; /* raw data to be sent to the server */ 76 CURLcode Curl_ws_request(struct Curl_easy *data, REQTYPE *req); 77 CURLcode Curl_ws_accept(struct Curl_easy *data, const char *mem, size_t len); 78 void Curl_ws_done(struct Curl_easy *data);
|
H A D | hsts.h | 56 CURLcode Curl_hsts_save(struct Curl_easy *data, struct hsts *h, 58 CURLcode Curl_hsts_loadfile(struct Curl_easy *data, 60 CURLcode Curl_hsts_loadcb(struct Curl_easy *data, 62 void Curl_hsts_loadfiles(struct Curl_easy *data);
|
/third_party/curl/docs/examples/ |
H A D | shared-connection-cache.c | 31 static void my_lock(CURL *handle, curl_lock_data data, in my_lock() argument 35 (void)data; in my_lock() 41 static void my_unlock(CURL *handle, curl_lock_data data, void *useptr) in my_unlock() argument 44 (void)data; in my_unlock()
|
/third_party/FreeBSD/stand/kshim/ |
H A D | bsd_kernel.c | 73 debug_module_register(void *data) in debug_module_register() argument 75 struct debug_module_data *mdata = data; in debug_module_register() 80 debug_module_unregister(void *data) in debug_module_unregister() argument 82 struct debug_module_data *mdata = data; in debug_module_unregister()
|
/third_party/PyYAML/tests/lib/ |
H A D | test_reader.py | 4 def _run_reader(data, verbose): 6 stream = yaml.reader.Reader(data) 23 data = file.read().decode(encoding) 29 _run_reader(data, verbose)
|
/third_party/libuv/docs/code/progress/ |
H A D | main.c | 13 int size = *((int*) req->data); in fake_download() 17 async.data = (void*) &percentage; in fake_download() 32 double percentage = *((double*) handle->data); in print_progress() 41 req.data = (void*) &size; in main()
|
/third_party/libuv/test/ |
H A D | test-loop-close.c | 37 loop.data = &loop; in TEST_IMPL() 39 ASSERT_PTR_EQ(loop.data, (void*) &loop); in TEST_IMPL() 52 ASSERT_PTR_EQ(loop.data, (void*) &loop); in TEST_IMPL() 54 ASSERT_PTR_EQ(loop.data, (void*) &loop); in TEST_IMPL()
|
/third_party/libcoap/include/coap3/ |
H A D | coap_crypto_internal.h | 88 * Encrypt the provided plaintext data 91 * @param data The data to encrypt. 93 * @param result Where to put the encrypted data. 97 * @return @c 1 if the data was successfully encrypted, else @c 0. 100 coap_bin_const_t *data, 106 * Decrypt the provided encrypted data into plaintext. 109 * @param data The data to decrypt. 111 * @param result Where to put the decrypted data [all...] |
/third_party/lzma/CPP/7zip/Compress/ |
H A D | ByteSwap.cpp | 21 Z7_COM7F_IMF2(UInt32, CByteSwap2::Filter(Byte *data, UInt32 size))
in Z7_COM7F_IMF2() argument 26 if ((unsigned)(ptrdiff_t)data & kMask)
in Z7_COM7F_IMF2() 30 const Byte *end = data + (size_t)size;
in Z7_COM7F_IMF2() 33 const Byte b0 = data[0];
in Z7_COM7F_IMF2() 34 data[0] = data[1];
in Z7_COM7F_IMF2() 35 data[1] = b0;
in Z7_COM7F_IMF2() 36 data += kStep;
in Z7_COM7F_IMF2() 38 while (data != end);
in Z7_COM7F_IMF2() 42 z7_SwapBytes2((UInt16 *)(void *)data, siz in Z7_COM7F_IMF2() 49 Z7_COM7F_IMF2(UInt32, CByteSwap4::Filter(Byte *data, UInt32 size)) Z7_COM7F_IMF2() argument [all...] |
/third_party/mbedtls/tests/scripts/ |
H A D | test-ref-configs.pl | 84 my $data = $_[1]; 114 my $compat = $data->{'compat'}; 126 my $opt = $data->{'opt'}; 129 if( $data->{'opt_needs_debug'} )
|
/third_party/mbedtls/include/psa/ |
H A D | crypto_compat.h | 116 * data in persistent storage is not affected and can be opened again later 174 * \param[in] data Ignored. 182 psa_key_type_t type, const uint8_t *data, size_t data_length) in psa_set_key_domain_parameters() 184 (void) data; in psa_set_key_domain_parameters() 200 * \param[out] data Ignored. 208 uint8_t *data, size_t data_size, size_t *data_length) in psa_get_key_domain_parameters() 211 (void) data; in psa_get_key_domain_parameters() 180 psa_set_key_domain_parameters( psa_key_attributes_t *attributes, psa_key_type_t type, const uint8_t *data, size_t data_length) psa_set_key_domain_parameters() argument 206 psa_get_key_domain_parameters( const psa_key_attributes_t *attributes, uint8_t *data, size_t data_size, size_t *data_length) psa_get_key_domain_parameters() argument
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_opt_barriers.c | 28 nir_function_impl *impl, nir_combine_memory_barrier_cb combine_cb, void *data) in nir_opt_combine_memory_barriers_impl() 48 if (prev && combine_cb(prev, current, data)) { in nir_opt_combine_memory_barriers_impl() 71 nir_shader *shader, nir_combine_memory_barrier_cb combine_cb, void *data) in nir_opt_combine_memory_barriers() 79 nir_opt_combine_memory_barriers_impl(function->impl, combine_cb, data)) { in nir_opt_combine_memory_barriers() 27 nir_opt_combine_memory_barriers_impl( nir_function_impl *impl, nir_combine_memory_barrier_cb combine_cb, void *data) nir_opt_combine_memory_barriers_impl() argument 70 nir_opt_combine_memory_barriers( nir_shader *shader, nir_combine_memory_barrier_cb combine_cb, void *data) nir_opt_combine_memory_barriers() argument
|
/third_party/node/test/parallel/ |
H A D | test-https-truncate.js | 36 const data = Buffer.alloc(1024 * 32 + 1); 44 res.setHeader('content-length', data.length); 45 res.end(data); 61 assert.strictEqual(bytes, data.length); 67 res.on('data', function(chunk) {
|
/third_party/node/test/addons/null-buffer-neuter/ |
H A D | binding.cc | 9 static void FreeCallback(char* data, void* hint) { in FreeCallback() argument 10 assert(data == nullptr); in FreeCallback() 31 char* data = node::Buffer::Data(buf); in Run() local 32 assert(data == nullptr); in Run()
|
/third_party/node/test/addons/worker-buffer-callback/ |
H A D | binding.cc | 24 char* data = new char; in Initialize() local 31 data, in Initialize() 33 [](char* data, void* hint) { in Initialize() 34 delete data; in Initialize()
|
/third_party/nghttp2/lib/ |
H A D | nghttp2_map.h | 44 void *data; member 70 * given the |data| object. The |ptr| will be passed to the |func| as 73 void nghttp2_map_each_free(nghttp2_map *map, int (*func)(void *data, void *ptr), 77 * Inserts the new |data| with the |key| to the map |map|. 87 int nghttp2_map_insert(nghttp2_map *map, nghttp2_map_key_type key, void *data); 90 * Returns the data associated by the key |key|. If there is no such 91 * data, this function returns NULL. 96 * Removes the data associated by the key |key| from the |map|. The 97 * removed data is not freed by this function. 103 * The data associate [all...] |
/third_party/node/benchmark/assert/ |
H A D | deepequal-buffer.js | 13 const data = Buffer.allocUnsafe(len + 1); 17 data.copy(actual); 18 data.copy(expected); 19 data.copy(expectedWrong);
|
/third_party/node/deps/ngtcp2/ngtcp2/lib/ |
H A D | ngtcp2_map.h | 44 void *data; member 70 * given the |data| object. The |ptr| will be passed to the |func| as 73 void ngtcp2_map_each_free(ngtcp2_map *map, int (*func)(void *data, void *ptr), 77 * Inserts the new |data| with the |key| to the map |map|. 87 int ngtcp2_map_insert(ngtcp2_map *map, ngtcp2_map_key_type key, void *data); 90 * Returns the data associated by the key |key|. If there is no such 91 * data, this function returns NULL. 96 * Removes the data associated by the key |key| from the |map|. The 97 * removed data is not freed by this function. 103 * The data associate [all...] |
/third_party/node/deps/nghttp2/lib/ |
H A D | nghttp2_map.h | 44 void *data; member 70 * given the |data| object. The |ptr| will be passed to the |func| as 73 void nghttp2_map_each_free(nghttp2_map *map, int (*func)(void *data, void *ptr), 77 * Inserts the new |data| with the |key| to the map |map|. 87 int nghttp2_map_insert(nghttp2_map *map, nghttp2_map_key_type key, void *data); 90 * Returns the data associated by the key |key|. If there is no such 91 * data, this function returns NULL. 96 * Removes the data associated by the key |key| from the |map|. The 97 * removed data is not freed by this function. 103 * The data associate [all...] |
/third_party/node/deps/ngtcp2/nghttp3/lib/ |
H A D | nghttp3_map.h | 45 void *data; member 71 * given the |data| object. The |ptr| will be passed to the |func| as 74 void nghttp3_map_each_free(nghttp3_map *map, int (*func)(void *data, void *ptr), 78 * Inserts the new |data| with the |key| to the map |map|. 88 int nghttp3_map_insert(nghttp3_map *map, nghttp3_map_key_type key, void *data); 91 * Returns the data associated by the key |key|. If there is no such 92 * data, this function returns NULL. 97 * Removes the data associated by the key |key| from the |map|. The 98 * removed data is not freed by this function. 104 * The data associate [all...] |
/third_party/mesa3d/src/intel/tools/ |
H A D | aub_mem.h | 57 const void *data, uint32_t size); 59 const void *data, uint32_t size); 61 const void *data, uint32_t size); 63 const void *data, uint32_t size);
|
/third_party/lz4/ossfuzz/ |
H A D | compress_frame_fuzzer.c | 2 * This fuzz target attempts to compress the fuzzed data with the simple 18 int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) in LLVMFuzzerTestOneInput() argument 20 FUZZ_dataProducer_t *producer = FUZZ_dataProducer_create(data, size); in LLVMFuzzerTestOneInput() 36 LZ4F_compressFrame(dst, dstCapacity, data, size, &prefs); in LLVMFuzzerTestOneInput() 40 FUZZ_ASSERT_MSG(!memcmp(data, rt, size), "Corruption!"); in LLVMFuzzerTestOneInput()
|
H A D | round_trip_frame_fuzzer.c | 17 int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) in LLVMFuzzerTestOneInput() argument 19 FUZZ_dataProducer_t* producer = FUZZ_dataProducer_create(data, size); in LLVMFuzzerTestOneInput() 32 LZ4F_compressFrame(dst, dstCapacity, data, size, &prefs); in LLVMFuzzerTestOneInput() 36 FUZZ_ASSERT_MSG(!memcmp(data, rt, size), "Corruption!"); in LLVMFuzzerTestOneInput()
|