HomeSort by: relevance | last modified time | path
    Searched refs:pair (Results 1 - 25 of 1987) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/public-domain/xz/dist/src/xz/
file_io.c 91 static bool io_write_buf(file_pair *pair, const uint8_t *buf, size_t size);
237 io_wait(file_pair *pair, int timeout, bool is_reading)
242 pfd[0].fd = pair->src_fd;
245 pfd[0].fd = pair->dest_fd;
263 is_reading ? pair->src_name
264 : pair->dest_name,
351 io_copy_attrs(const file_pair *pair)
363 if (fchown(pair->dest_fd, pair->src_st.st_uid, -1) && warn_fchown)
365 pair->dest_name, strerror(errno))
746 static file_pair pair; local
    [all...]
file_io.h 94 extern bool io_open_dest(file_pair *pair);
104 extern void io_close(file_pair *pair, bool success);
109 /// \param pair File pair having the source file open for reading
114 /// file zero is returned and pair->src_eof set to true.
116 extern size_t io_read(file_pair *pair, io_buf *buf, size_t size);
126 /// \param pair File pair having the source file open for reading
129 extern void io_fix_src_pos(file_pair *pair, size_t rewind_size);
137 /// \param pair Seekable source fil
    [all...]
  /src/external/ibm-public/postfix/dist/src/util/
stream_connect.c 68 int pair[2]; local
87 if (pipe(pair) < 0)
89 if (ioctl(fifo, I_SENDFD, pair[1]) < 0)
91 close(pair[1]);
97 non_blocking(pair[0], NON_BLOCKING);
107 return (pair[0]);
  /src/external/gpl3/gcc/dist/libgcc/config/gcn/
lib2-divmod-di.c 29 struct {DItype quot, rem;} pair; member in union:pack
33 struct {UDItype quot, rem;} pair; member in union:upack
52 res.pair.quot |= bit;
57 res.pair.rem = num;
82 res.pair.rem = -res.pair.rem;
84 res.pair.quot = -res.pair.quot;
95 return u.pair.quot;
103 return u.pair.rem
    [all...]
lib2-divmod.c 29 struct {SItype quot, rem;} pair; member in union:pack
33 struct {USItype quot, rem;} pair; member in union:upack
52 res.pair.quot |= bit;
57 res.pair.rem = num;
82 res.pair.rem = -res.pair.rem;
84 res.pair.quot = -res.pair.quot;
95 return u.pair.quot;
103 return u.pair.rem
    [all...]
lib2-vec_divmod-di.c 72 v64uti pair = __udivmodv64di4_aux (ua, ub, __mask); local
74 v64di quot = UNPACK_DI_LOW (v64di, pair);
75 v64di rem = UNPACK_DI_HIGH (v64di, pair);
78 pair = PACK_DI_PAIR (quot, rem);
80 return pair;
87 v64uti pair = __divmodv64di4_aux (a, b, __mask); local
88 return UNPACK_DI_LOW (v64di, pair);
94 v64uti pair = __divmodv64di4_aux (a, b, __mask); local
95 return UNPACK_DI_HIGH (v64di, pair);
102 v64uti pair = __udivmodv64di4_aux (a, b, __mask) local
109 v64uti pair = __udivmodv64di4_aux (a, b, __mask); local
    [all...]
lib2-vec_divmod-hi.c 72 v64udi pair = __udivmodv64hi4_aux (ua, ub, __mask); local
74 v64hi quot = UNPACK_SI_LOW (v64hi, pair);
75 v64hi rem = UNPACK_SI_HIGH (v64hi, pair);
78 pair = PACK_SI_PAIR (quot, rem);
80 return pair;
87 v64udi pair = __divmodv64hi4_aux (a, b, __mask); local
88 return UNPACK_SI_LOW (v64hi, pair);
94 v64udi pair = __divmodv64hi4_aux (a, b, __mask); local
95 return UNPACK_SI_HIGH (v64hi, pair);
102 v64udi pair = __udivmodv64hi4_aux (a, b, __mask) local
109 v64udi pair = __udivmodv64hi4_aux (a, b, __mask); local
    [all...]
lib2-vec_divmod-qi.c 72 v64udi pair = __udivmodv64qi4_aux (ua, ub, __mask); local
74 v64qi quot = UNPACK_SI_LOW (v64qi, pair);
75 v64qi rem = UNPACK_SI_HIGH (v64qi, pair);
78 pair = PACK_SI_PAIR (quot, rem);
80 return pair;
87 v64udi pair = __divmodv64qi4_aux (a, b, __mask); local
88 return UNPACK_SI_LOW (v64qi, pair);
94 v64udi pair = __divmodv64qi4_aux (a, b, __mask); local
95 return UNPACK_SI_HIGH (v64qi, pair);
102 v64udi pair = __udivmodv64qi4_aux (a, b, __mask) local
109 v64udi pair = __udivmodv64qi4_aux (a, b, __mask); local
    [all...]
lib2-vec_divmod.c 72 v64udi pair = __udivmodv64si4_aux (ua, ub, __mask); local
74 v64si quot = UNPACK_SI_LOW (v64si, pair);
75 v64si rem = UNPACK_SI_HIGH (v64si, pair);
78 pair = PACK_SI_PAIR (quot, rem);
80 return pair;
87 v64udi pair = __divmodv64si4_aux (a, b, __mask); local
88 return UNPACK_SI_LOW (v64si, pair);
94 v64udi pair = __divmodv64si4_aux (a, b, __mask); local
95 return UNPACK_SI_HIGH (v64si, pair);
102 v64udi pair = __udivmodv64si4_aux (a, b, __mask) local
109 v64udi pair = __udivmodv64si4_aux (a, b, __mask); local
    [all...]
  /src/external/bsd/atf/dist/tools/
user.hpp 43 void drop_privileges(const std::pair< int, int >);
44 std::pair< int, int > get_user_ids(const std::string&);
  /src/external/bsd/kyua-cli/dist/utils/process/
status.hpp 55 optional< std::pair< int, bool > > _signaled;
57 status(const optional< int >&, const optional< std::pair< int, bool > >&);
  /src/external/cddl/osnet/dist/lib/libzfs_core/common/
libzfs_core_compat.c 36 nvpair_t *pair, *hpair; local
65 pair = nvlist_next_nvpair(nvl, NULL);
66 if (pair != NULL) {
67 buf = nvpair_name(pair);
74 if (!error && nvlist_next_nvpair(nvl, pair) != NULL)
87 pair = nvlist_next_nvpair(nvl, NULL);
88 if (pair != NULL) {
89 buf = nvpair_name(pair);
95 if (!error && nvlist_next_nvpair(nvl, pair) != NULL)
101 pair = nvlist_next_nvpair(nvl, NULL)
    [all...]
  /src/external/mit/isl/dist/include/isl/
typed_cpp.h 19 struct pair {}; struct in namespace:isl::typed
277 inline typed::multi_aff<pair<Anonymous, Range>> product(const typed::multi_aff<Range> &multi2) const;
279 inline typed::multi_pw_aff<pair<Anonymous, Range>> product(const typed::multi_pw_aff<Range> &multi2) const;
281 inline typed::pw_multi_aff<pair<Anonymous, Range>> product(const typed::pw_multi_aff<Range> &pma2) const;
489 inline typed::multi_aff<pair<Domain, Domain2>, pair<Anonymous, Range2>> product(const typed::multi_aff<Domain2, Range2> &multi2) const;
491 inline typed::multi_pw_aff<pair<Domain, Domain2>, pair<Anonymous, Range2>> product(const typed::multi_pw_aff<Domain2, Range2> &multi2) const;
493 inline typed::pw_multi_aff<pair<Domain, Domain2>, pair<Anonymous, Range2>> product(const typed::pw_multi_aff<Domain2, Range2> &pma2) const
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
stl_pair.h 0 // Pair implementation -*- C++ -*-
79 /// Tag type for piecewise construction of std::pair objects.
82 /// Tag for piecewise construction of std::pair objects.
166 template<typename _T1, typename _T2> friend struct pair;
187 struct pair struct in inherits:__pair_base
197 constexpr pair(const pair&) = default; ///< Copy constructor
198 constexpr pair(pair&&) = default; ///< Move constructor
202 pair(piecewise_construct_t, tuple<_Args1...>, tuple<_Args2...>)
386 constexpr pair() function in struct:pair
398 explicit constexpr pair() function in struct:pair
413 constexpr pair(const _T1& __a, const _T2& __b) function in struct:pair
423 explicit constexpr pair(const _T1& __a, const _T2& __b) function in struct:pair
440 constexpr pair(const pair<_U1, _U2>& __p) function in struct:pair
449 explicit constexpr pair(const pair<_U1, _U2>& __p) function in struct:pair
489 pair(_U1&& __x, __zero_as_null_pointer_constant, ...) function in struct:pair
501 pair(_U1&& __x, __zero_as_null_pointer_constant, ...) function in struct:pair
513 pair(__zero_as_null_pointer_constant, _U2&& __y, ...) function in struct:pair
525 pair(__zero_as_null_pointer_constant, _U2&& __y, ...) function in struct:pair
536 constexpr pair(_U1&& __x, _U2&& __y) function in struct:pair
545 explicit constexpr pair(_U1&& __x, _U2&& __y) function in struct:pair
555 constexpr pair(pair<_U1, _U2>&& __p) function in struct:pair
565 explicit constexpr pair(pair<_U1, _U2>&& __p) function in struct:pair
620 pair() : first(), second() { } function in struct:pair
623 pair(const _T1& __a, const _T2& __b) function in struct:pair
628 pair(const pair<_U1, _U2>& __p) function in struct:pair
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUGlobalISelUtils.h 22 std::pair<Register, unsigned>
  /src/share/doc/psd/20.ipctut/
pipe.c 50 perror("opening stream socket pair");
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
stl_pair.h 0 // Pair implementation -*- C++ -*-
78 /// Tag type for piecewise construction of std::pair objects.
81 /// Tag for piecewise construction of std::pair objects.
89 struct pair;
97 // visible to the P2165R4 tuple-like constructors of pair and tuple.
105 constexpr typename tuple_element<_Int, pair<_Tp1, _Tp2>>::type&
106 get(pair<_Tp1, _Tp2>& __in) noexcept;
109 constexpr typename tuple_element<_Int, pair<_Tp1, _Tp2>>::type&&
110 get(pair<_Tp1, _Tp2>&& __in) noexcept;
113 constexpr const typename tuple_element<_Int, pair<_Tp1, _Tp2>>::type
284 struct pair struct in inherits:__pair_base
525 pair(_UPair&& __p) function in struct:pair
725 constexpr pair() function in struct:pair
737 explicit constexpr pair() function in struct:pair
752 constexpr pair(const _T1& __a, const _T2& __b) function in struct:pair
762 explicit constexpr pair(const _T1& __a, const _T2& __b) function in struct:pair
779 constexpr pair(const pair<_U1, _U2>& __p) function in struct:pair
789 explicit constexpr pair(const pair<_U1, _U2>& __p) function in struct:pair
830 pair(_U1&& __x, __zero_as_null_pointer_constant, ...) function in struct:pair
843 pair(_U1&& __x, __zero_as_null_pointer_constant, ...) function in struct:pair
856 pair(__zero_as_null_pointer_constant, _U2&& __y, ...) function in struct:pair
869 pair(__zero_as_null_pointer_constant, _U2&& __y, ...) function in struct:pair
881 constexpr pair(_U1&& __x, _U2&& __y) function in struct:pair
891 explicit constexpr pair(_U1&& __x, _U2&& __y) function in struct:pair
902 constexpr pair(pair<_U1, _U2>&& __p) function in struct:pair
913 explicit constexpr pair(pair<_U1, _U2>&& __p) function in struct:pair
971 pair() : first(), second() { } function in struct:pair
974 pair(const _T1& __a, const _T2& __b) function in struct:pair
979 pair(const pair<_U1, _U2>& __p) function in struct:pair
    [all...]
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
dsl_userhold.c 93 for (nvpair_t *pair = nvlist_next_nvpair(dduha->dduha_holds, NULL);
94 pair != NULL; pair = nvlist_next_nvpair(dduha->dduha_holds, pair)) {
100 name = nvpair_name(pair);
105 error = nvpair_value_string(pair, &htag);
263 for (nvpair_t *pair = nvlist_next_nvpair(dduha->dduha_chkholds, NULL);
264 pair != NULL;
265 pair = nvlist_next_nvpair(dduha->dduha_chkholds, pair)) {
307 nvpair_t *pair; local
552 nvpair_t *pair; local
    [all...]
  /src/external/bsd/libevent/dist/test/
test-closed.c 81 evutil_socket_t pair[2]; local
95 /* Create a pair of sockets */
96 if (evutil_socketpair(AF_UNIX, SOCK_STREAM, 0, pair) == -1)
100 if (send(pair[0], test, (int)strlen(test)+1, 0) < 0)
102 shutdown(pair[0], EVUTIL_SHUT_WR);
105 ev = event_new(base, pair[1], EV_CLOSED | EV_TIMEOUT, closed_cb, event_self_cbarg());
test-eof.c 89 evutil_socket_t pair[2]; local
100 if (evutil_socketpair(AF_UNIX, SOCK_STREAM, 0, pair) == -1)
104 if (send(pair[0], test, (int)strlen(test)+1, 0) < 0)
106 shutdown(pair[0], EVUTIL_SHUT_WR);
112 event_set(&ev, pair[1], EV_READ | EV_TIMEOUT, read_cb, &ev);
  /src/external/bsd/ntp/dist/sntp/libevent/test/
test-closed.c 80 evutil_socket_t pair[2]; local
94 /* Create a pair of sockets */
95 if (evutil_socketpair(AF_UNIX, SOCK_STREAM, 0, pair) == -1)
99 if (send(pair[0], test, (int)strlen(test)+1, 0) < 0)
101 shutdown(pair[0], EVUTIL_SHUT_WR);
104 ev = event_new(base, pair[1], EV_CLOSED | EV_TIMEOUT, closed_cb, event_self_cbarg());
test-eof.c 88 evutil_socket_t pair[2]; local
99 if (evutil_socketpair(AF_UNIX, SOCK_STREAM, 0, pair) == -1)
103 if (send(pair[0], test, (int)strlen(test)+1, 0) < 0)
105 shutdown(pair[0], EVUTIL_SHUT_WR);
111 event_set(&ev, pair[1], EV_READ | EV_TIMEOUT, read_cb, &ev);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
SchedClassResolution.h 34 std::vector<std::pair<uint16_t, float>>
43 static std::pair<unsigned /*SchedClassId*/, bool /*WasVariant*/>
55 const std::vector<std::pair<uint16_t, float>> IdealizedProcResPressure;
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.dwarf2/
formdata16.exp 34 set pair $high,$low
38 set pair $low,$high
46 global pair pair2 negative
67 {const_value $pair DW_FORM_data16}
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.dwarf2/
formdata16.exp 34 set pair $high,$low
38 set pair $low,$high
46 global pair pair2 negative
67 {const_value $pair DW_FORM_data16}

Completed in 50 milliseconds

1 2 3 4 5 6 7 8 91011>>