Home
last modified time | relevance | path

Searched refs:first_copy (Results 1 – 25 of 55) sorted by relevance

123

/dports/comms/gnuradio/gnuradio-3.8.4.0/gnuradio-runtime/lib/
H A Dvmcircbuf_sysv_shm.cc93 void* first_copy = shmat(shmid2, 0, 0); in vmcircbuf_sysv_shm()
94 if (first_copy == (void*)-1) { in vmcircbuf_sysv_shm()
111 shmdt(first_copy); in vmcircbuf_sysv_shm()
114 if (shmat(shmid_guard, first_copy, SHM_RDONLY) == (void*)-1) { in vmcircbuf_sysv_shm()
122 if (shmat(shmid1, (char*)first_copy + pagesize, 0) == (void*)-1) { in vmcircbuf_sysv_shm()
126 shmdt(first_copy); in vmcircbuf_sysv_shm()
135 shmdt((char*)first_copy + pagesize); in vmcircbuf_sysv_shm()
145 shmdt(first_copy); in vmcircbuf_sysv_shm()
146 shmdt((char*)first_copy + pagesize); in vmcircbuf_sysv_shm()
147 shmdt((char*)first_copy + pagesize + size); in vmcircbuf_sysv_shm()
[all …]
H A Dvmcircbuf_mmap_tmpfile.cc101 void* first_copy = in vmcircbuf_mmap_tmpfile()
104 if (first_copy == MAP_FAILED) { in vmcircbuf_mmap_tmpfile()
111 if (munmap((char*)first_copy + size, size) == -1) { in vmcircbuf_mmap_tmpfile()
119 void* second_copy = mmap((char*)first_copy + size, in vmcircbuf_mmap_tmpfile()
127 munmap(first_copy, size); // cleanup in vmcircbuf_mmap_tmpfile()
134 if ((char*)second_copy != (char*)first_copy + size) { in vmcircbuf_mmap_tmpfile()
135 munmap(first_copy, size); // cleanup in vmcircbuf_mmap_tmpfile()
144 munmap(first_copy, size); // cleanup in vmcircbuf_mmap_tmpfile()
155 d_base = (char*)first_copy; in vmcircbuf_mmap_tmpfile()
H A Dvmcircbuf_mmap_shm_open.cc116 void* first_copy = in vmcircbuf_mmap_shm_open()
119 if (first_copy == MAP_FAILED) { in vmcircbuf_mmap_shm_open()
126 if (munmap((char*)first_copy + size, size) == -1) { in vmcircbuf_mmap_shm_open()
134 void* second_copy = mmap((char*)first_copy + size, in vmcircbuf_mmap_shm_open()
165 d_base = (char*)first_copy; in vmcircbuf_mmap_shm_open()
/dports/emulators/yuzu/yuzu-0b47f7a46/src/common/
H A Dring_buffer.h46 const std::size_t first_copy = std::min(capacity - pos, push_count); in Push() local
47 const std::size_t second_copy = push_count - first_copy; in Push()
50 std::memcpy(m_data.data() + pos * granularity, in, first_copy * slot_size); in Push()
51 in += first_copy * slot_size; in Push()
73 const std::size_t first_copy = std::min(capacity - pos, pop_count); variable
74 const std::size_t second_copy = pop_count - first_copy;
77 std::memcpy(out, m_data.data() + pos * granularity, first_copy * slot_size);
78 out += first_copy * slot_size;
/dports/emulators/citra/citra-ac98458e0/src/common/
H A Dring_buffer.h47 const std::size_t first_copy = std::min(capacity - pos, push_count); in Push() local
48 const std::size_t second_copy = push_count - first_copy; in Push()
51 std::memcpy(m_data.data() + pos * granularity, in, first_copy * slot_size); in Push()
52 in += first_copy * slot_size; in Push()
74 const std::size_t first_copy = std::min(capacity - pos, pop_count); variable
75 const std::size_t second_copy = pop_count - first_copy;
78 std::memcpy(out, m_data.data() + pos * granularity, first_copy * slot_size);
79 out += first_copy * slot_size;
/dports/emulators/citra-qt5/citra-ac98458e0/src/common/
H A Dring_buffer.h47 const std::size_t first_copy = std::min(capacity - pos, push_count); in Push() local
48 const std::size_t second_copy = push_count - first_copy; in Push()
51 std::memcpy(m_data.data() + pos * granularity, in, first_copy * slot_size); in Push()
52 in += first_copy * slot_size; in Push()
74 const std::size_t first_copy = std::min(capacity - pos, pop_count); variable
75 const std::size_t second_copy = pop_count - first_copy;
78 std::memcpy(out, m_data.data() + pos * granularity, first_copy * slot_size);
79 out += first_copy * slot_size;
/dports/graphics/py-geopandas/geopandas-0.10.2/geopandas/tests/
H A Dtest_dissolve.py92 first_copy = first.copy()
93 first_copy["dup_col"] = first_copy.index
94 first_copy = first_copy.set_index([first_copy.index, "dup_col"])
96 assert_frame_equal(multi_test, first_copy, check_column_type=False)
/dports/devel/hyperscan/boost_1_75_0/libs/stl_interfaces/test/
H A Drandom_access.cpp432 auto first_copy = first; in main() local
433 first_copy += 10; in main()
434 BOOST_TEST(first_copy == last); in main()
533 auto first_copy = first; in main() local
534 first_copy += 10; in main()
535 BOOST_TEST(first_copy == last); in main()
608 const_random_access first_copy(first); in main() local
610 std::equal(first, last, first_copy, last_copy); in main()
746 auto first_copy = first; in main() local
747 first_copy += 10; in main()
[all …]
H A Dbidirectional.cpp446 const_bidirectional first_copy(first); in main() local
448 std::equal(first, last, first_copy, last_copy); in main()
454 adapted_bidirectional_ptr_iter<int const> first_copy( in main() local
458 std::equal(first, last, first_copy, last_copy); in main()
H A Dforward.cpp247 const_forward first_copy(first); in main() local
249 std::equal(first, last, first_copy, last_copy); in main()
H A Dinput.cpp282 const_int_input first_copy(first); in main() local
284 std::equal(first, last, first_copy, last_copy); in main()
/dports/graphics/ossim/ossim-OrchidIsland-2.11.1/src/parallel/
H A DossimImageChainMtAdaptor.cpp236 std::vector< ossimRefPtr<ossimImageSource> >::iterator first_copy = m_clones.begin();
237 first_copy++;
238 m_clones.erase(first_copy, m_clones.end());
/dports/sysutils/iat/iat-0.1.7/src/
H A Ddebug.c322 if ( !memcmp ( (unsigned char*) sub_header.first_copy, sub_header.second_copy, 4 ) ) { in display_mode_info()
323 memmove ( &copy_header, ( unsigned char* ) sub_header.first_copy, sizeof ( copy_header ) ); in display_mode_info()
370 if ( !memcmp ( (unsigned char*) sub_header.first_copy, sub_header.second_copy, 4 ) ) { in display_mode_info()
371 memmove ( &copy_header, ( unsigned char* ) sub_header.first_copy, sizeof ( copy_header ) ); in display_mode_info()
H A Dconvert_2_iso.c182 if ( !memcmp ( sub_header.first_copy, sub_header.second_copy, 4 ) ) { in mode_2()
184 …n_mode = ( ( n_mode = ( ( (int) *( sub_header.first_copy + 2 ) ) & 0x20 ) ) == 32 ) ? 1 : ( n_mode… in mode_2()
H A Dmmc2r11.h96 unsigned char first_copy [ MMCLEN ( 0, 4 ) ]; member
/dports/science/dvc/dvc-0.30.1/dvc/
H A Dconfig.py542 first_copy = first.get(section, {}).copy()
544 first_copy.update(second_copy)
545 res[section] = first_copy
/dports/devel/zpu-gcc/zpu-toolchain-1.0/toolchain/gcc/gcc/
H A Djump.c306 rtx copy = 0, first_copy = 0; in duplicate_loop_exit_test() local
506 if (! first_copy) in duplicate_loop_exit_test()
507 first_copy = copy; in duplicate_loop_exit_test()
521 if (! first_copy) in duplicate_loop_exit_test()
522 first_copy = copy; in duplicate_loop_exit_test()
533 reg_scan_update (first_copy, copy, max_reg); in duplicate_loop_exit_test()
/dports/devel/zpu-binutils/zpu-toolchain-1.0/toolchain/gcc/gcc/
H A Djump.c306 rtx copy = 0, first_copy = 0; in duplicate_loop_exit_test() local
506 if (! first_copy) in duplicate_loop_exit_test()
507 first_copy = copy; in duplicate_loop_exit_test()
521 if (! first_copy) in duplicate_loop_exit_test()
522 first_copy = copy; in duplicate_loop_exit_test()
533 reg_scan_update (first_copy, copy, max_reg); in duplicate_loop_exit_test()
/dports/lang/fpc/fpc-3.2.2/compiler/jvm/
H A Dnjvminl.pas39 function first_copy: tnode; override; in first_copy() function
161 function tjvminlinenode.first_copy: tnode; in tjvminlinenode.first_copy()
227 result:=inherited first_copy;
/dports/lang/fpc-source/fpc-3.2.2/compiler/jvm/
H A Dnjvminl.pas39 function first_copy: tnode; override; in first_copy() function
161 function tjvminlinenode.first_copy: tnode; in tjvminlinenode.first_copy()
227 result:=inherited first_copy;
/dports/editors/fpc-ide/fpc-3.2.2/compiler/jvm/
H A Dnjvminl.pas39 function first_copy: tnode; override; in first_copy() function
161 function tjvminlinenode.first_copy: tnode; in tjvminlinenode.first_copy()
227 result:=inherited first_copy;
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/third_party/botocore/
H A Dhooks.py31 first_copy = copy.copy(self.first)
34 copied = NodeList(first_copy, middle_copy, last_copy)
/dports/devel/py-botocore/botocore-1.21.61/botocore/
H A Dhooks.py31 first_copy = copy.copy(self.first)
34 copied = NodeList(first_copy, middle_copy, last_copy)
/dports/math/piranha/piranha-0.11/src/
H A Ddivisor_series.hpp182 auto first(*it), first_copy(*it); in d_partial_impl() local
207 tmp_div_01.m_container.insert(std::move(first_copy)); in d_partial_impl()
/dports/math/py-piranha/piranha-0.11/src/
H A Ddivisor_series.hpp182 auto first(*it), first_copy(*it); in vector_hasher()
207 tmp_div_01.m_container.insert(std::move(first_copy)); in vector_hasher()

123