Home
last modified time | relevance | path

Searched refs:addr (Results 2501 - 2525 of 3054) sorted by relevance

1...<<101102103104105106107108109110>>...123

/drivers/peripheral/distributed_camera/hdi_service/test/sample/
H A Ddcamera_hdf_demo.cpp54 producer = streamCustomer->CreateProducer(CAPTURE_SNAPSHOT, [this](void* addr, const uint32_t size) { in SetStreamInfo()
55 StoreImage(addr, size); in SetStreamInfo()
64 producer = streamCustomer->CreateProducer(CAPTURE_VIDEO, [this](void* addr, const uint32_t size) { in SetStreamInfo()
65 StoreVideo(addr, size); in SetStreamInfo()
/third_party/curl/tests/
H A Dftpserver.pl2660 my $addr;
2681 $addr = "$1.$2.$3.$4";
2693 $addr = $2;
2720 "--ipv$ipvnum", "--connect", $port, "--addr", $addr,
2987 # --addr # server address for listener port binding
3052 elsif($ARGV[0] eq '--addr') {
/third_party/ffmpeg/libavformat/
H A Dlibsrt.c236 static int libsrt_listen(int eid, int fd, const struct sockaddr *addr, socklen_t addrlen, URLContext *h, int64_t timeout) in libsrt_listen() argument
246 if (srt_bind(fd, addr, addrlen)) in libsrt_listen()
268 static int libsrt_listen_connect(int eid, int fd, const struct sockaddr *addr, socklen_t addrlen, int64_t timeout, URLContext *h, int will_try_next) in libsrt_listen_connect() argument
272 if (srt_connect(fd, addr, addrlen) < 0) in libsrt_listen_connect()
/third_party/backends/backend/
H A Du12-shading.c762 SANE_Byte addr, regs[6]; in u12shading_DownloadMapTable() local
775 for( i = 3, addr = _MAP_ADDR_RED; i--; addr += _MAP_ADDR_SIZE ) { in u12shading_DownloadMapTable()
777 regs[5] = addr; in u12shading_DownloadMapTable()
/third_party/icu/icu4c/source/common/
H A Dputil.cpp2434 UVoidFunction* addr = NULL; local
2438 addr = (UVoidFunction*)GetProcAddress(handle, sym);
2440 if(addr==NULL) {
2449 return addr;
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_nir.c1679 nir_ssa_def *addr = nir_iadd_imm(b, base_addr, aligned_offset + i * 64); in brw_nir_load_global_const() local
1680 data[i] = nir_load_global_const_block_intel(b, 16, addr, in brw_nir_load_global_const()
1690 nir_ssa_def *addr = nir_iadd(b, base_addr, nir_u2u64(b, offset32)); in brw_nir_load_global_const() local
1691 sysval = nir_load_global_constant(b, addr, byte_size, in brw_nir_load_global_const()
/third_party/nghttp2/src/
H A Dshrpx_connection_handler.cc473 int ConnectionHandler::handle_connection(int fd, sockaddr *addr, int addrlen, in handle_connection() argument
477 << util::numeric_name(addr, addrlen) << ", fd=" << fd; in handle_connection()
497 tls::accept_connection(single_worker_.get(), fd, addr, addrlen, faddr); in handle_connection()
537 memcpy(&wev.client_addr, addr, addrlen); in handle_connection()
/third_party/node/deps/icu-small/source/common/
H A Dputil.cpp2449 UVoidFunction* addr = nullptr; local
2453 addr = (UVoidFunction*)GetProcAddress(handle, sym);
2455 if(addr==nullptr) {
2464 return addr;
/third_party/mesa3d/src/intel/vulkan/
H A Danv_cmd_buffer.c530 struct anv_address addr = anv_descriptor_set_address(set); in anv_cmd_buffer_bind_descriptor_set() local
531 push->desc_sets[set_index] = anv_address_physical(addr); in anv_cmd_buffer_bind_descriptor_set()
533 if (addr.bo) { in anv_cmd_buffer_bind_descriptor_set()
536 addr.bo); in anv_cmd_buffer_bind_descriptor_set()
/third_party/node/deps/ngtcp2/ngtcp2/lib/includes/ngtcp2/
H A Dngtcp2.h2016 * :member:`addr` points to the buffer which contains endpoint
2019 ngtcp2_sockaddr *addr; member
2021 * :member:`addrlen` is the length of addr.
3087 * from `ngtcp2_conn_get_path()`. Both :member:`dest->local.addr
3088 * <ngtcp2_addr.addr>` and :member:`dest->remote.addr
3089 * <ngtcp2_addr.addr>` point to buffers which are at least
4397 * with which the packet should be sent. Each addr field must point
4876 * `ngtcp2_conn_set_local_addr` sets local endpoint address |addr| to
4880 const ngtcp2_addr *addr);
[all...]
/third_party/node/deps/ngtcp2/ngtcp2/crypto/
H A Dshared.c1054 const uint8_t *addr; in crypto_generate_regular_token_aad() local
1059 addr = (const uint8_t *)&((const ngtcp2_sockaddr_in *)(void *)sa)->sin_addr; in crypto_generate_regular_token_aad()
1063 addr = in crypto_generate_regular_token_aad()
1072 memcpy(dest, addr, addrlen); in crypto_generate_regular_token_aad()
/third_party/node/deps/v8/src/common/
H A Dglobals.h411 // FUNCTION_CAST<F>(addr) casts an address into a function
414 F FUNCTION_CAST(byte* addr) { in FUNCTION_CAST() argument
415 return reinterpret_cast<F>(reinterpret_cast<Address>(addr)); in FUNCTION_CAST()
419 F FUNCTION_CAST(Address addr) { in FUNCTION_CAST() argument
420 return reinterpret_cast<F>(addr); in FUNCTION_CAST()
/third_party/mesa3d/src/gallium/auxiliary/util/
H A Du_simple_shaders.c1098 struct ureg_dst temp, addr; in util_make_tess_ctrl_passthrough_shader() local
1163 addr = ureg_DECL_address(ureg); in util_make_tess_ctrl_passthrough_shader()
1164 ureg_UARL(ureg, ureg_writemask(addr, TGSI_WRITEMASK_X), in util_make_tess_ctrl_passthrough_shader()
1170 struct ureg_src addr_x = ureg_scalar(ureg_src(addr), TGSI_SWIZZLE_X); in util_make_tess_ctrl_passthrough_shader()
/third_party/rust/crates/libc/src/unix/bsd/
H A Dmod.rs672 pub fn posix_madvise(addr: *mut ::c_void, len: ::size_t, advice: ::c_int) -> ::c_int; in posix_madvise()
695 pub fn madvise(addr: *mut ::c_void, len: ::size_t, advice: ::c_int) -> ::c_int; in madvise()
702 pub fn msync(addr: *mut ::c_void, len: ::size_t, flags: ::c_int) -> ::c_int; in msync()
713 addr: *mut ::sockaddr, in recvfrom()
/third_party/pcre2/pcre2/src/sljit/
H A DsljitNativeX86_32.c238 jump->addr++; in generate_far_jump_code()
242 jump->addr++; in generate_far_jump_code()
247 jump->addr += 2; in generate_far_jump_code()
253 sljit_unaligned_store_sw(code_ptr, (sljit_sw)(jump->u.target - (jump->addr + 4) - (sljit_uw)executable_offset)); in generate_far_jump_code()
/third_party/skia/src/core/
H A DSkDraw.cpp136 uint16_t* addr = dst->writable_addr16(0, 0); in bw_pt_rect_16_hair_proc() local
143 ((uint16_t*)((char*)addr + y * rb))[x] = SkToU16(value); in bw_pt_rect_16_hair_proc()
157 SkPMColor* addr = dst->writable_addr32(0, 0); in bw_pt_rect_32_hair_proc() local
164 ((SkPMColor*)((char*)addr + y * rb))[x] = value; in bw_pt_rect_32_hair_proc()
/third_party/skia/tests/
H A DProcessorTest.cpp272 [](void* addr, void* context) { delete[](GrColor*) addr; }, nullptr); in init()
297 [](void* addr, void* context) { delete[](uint8_t*) addr; }, nullptr); in init()
/third_party/skia/src/shaders/
H A DSkImageShader.cpp429 gather->pixels = pm.addr(); in doStages()
743 skvm::Uniform addr; in makeProgram() member
765 uniforms->pushPtr(pm.addr()), in makeProgram()
802 // Load pixels from pm.addr()[(int)sx + (int)sy*stride]. in makeProgram()
805 skvm::Color c = gather(u.pixelFormat, u.addr, index); in makeProgram()
/third_party/skia/third_party/externals/icu/source/common/
H A Dputil.cpp2425 UVoidFunction* addr = NULL; local
2429 addr = (UVoidFunction*)GetProcAddress(handle, sym);
2431 if(addr==NULL) {
2440 return addr;
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_peer/
H A Dikev2.c40 const u8 *addr[2]; in ikev2_derive_keys() local
86 addr[0] = pad; in ikev2_derive_keys()
88 addr[1] = wpabuf_head(shared); in ikev2_derive_keys()
91 2, addr, len, skeyseed) < 0) { in ikev2_derive_keys()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_server/
H A Dikev2.c44 const u8 *addr[2]; in ikev2_derive_keys() local
90 addr[0] = pad; in ikev2_derive_keys()
92 addr[1] = wpabuf_head(shared); in ikev2_derive_keys()
95 2, addr, len, skeyseed) < 0) { in ikev2_derive_keys()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/
H A Dwps_validate.c1122 const u8 *addr) in wps_validate_beacon_probe_resp()
1167 MAC2STR(addr)); in wps_validate_beacon_probe_resp()
1180 int wps_validate_probe_req(const struct wpabuf *wps_ie, const u8 *addr) in wps_validate_probe_req() argument
1219 "frame from " MACSTR, MAC2STR(addr)); in wps_validate_probe_req()
1121 wps_validate_beacon_probe_resp(const struct wpabuf *wps_ie, int probe, const u8 *addr) wps_validate_beacon_probe_resp() argument
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_peer/
H A Dikev2.c40 const u8 *addr[2]; in ikev2_derive_keys() local
86 addr[0] = pad; in ikev2_derive_keys()
88 addr[1] = wpabuf_head(shared); in ikev2_derive_keys()
91 2, addr, len, skeyseed) < 0) { in ikev2_derive_keys()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_server/
H A Dikev2.c44 const u8 *addr[2]; in ikev2_derive_keys() local
90 addr[0] = pad; in ikev2_derive_keys()
92 addr[1] = wpabuf_head(shared); in ikev2_derive_keys()
95 2, addr, len, skeyseed) < 0) { in ikev2_derive_keys()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/
H A Dwps_validate.c1122 const u8 *addr) in wps_validate_beacon_probe_resp()
1167 MAC2STR_SEC(addr)); in wps_validate_beacon_probe_resp()
1180 int wps_validate_probe_req(const struct wpabuf *wps_ie, const u8 *addr) in wps_validate_probe_req() argument
1219 "frame from " MACSTR_SEC, MAC2STR_SEC(addr)); in wps_validate_probe_req()
1121 wps_validate_beacon_probe_resp(const struct wpabuf *wps_ie, int probe, const u8 *addr) wps_validate_beacon_probe_resp() argument

Completed in 54 milliseconds

1...<<101102103104105106107108109110>>...123