Home
last modified time | relevance | path

Searched refs:_s_ (Results 1 – 25 of 276) sorted by relevance

12345678910>>...12

/dports/www/ephemera/ephemera-6.34/
H A Ddata.h30 #define STACK_PUSH( _s_, _o_ ) { if (( _s_ )->free )\ argument
32 if (( _s_ )->used ) ++( _s_ )->top;\
33 --( _s_ )->free;\
34 ++( _s_ )->used;\
35 *( _s_ )->top = ( _o_ );\
39 #define STRING_APPEND( _s_, _c_ ) { if (( _s_ )->free )\ argument
41 --( _s_ )->free;\
42 ++( _s_ )->used;\
43 *( _s_ )->top++ = _c_;\
44 *( _s_ )->top = '\0';\
[all …]
/dports/net/kamailio/kamailio-5.4.5/src/core/
H A Dtrim.h102 #define trim_spaces_lr(_s_) \ argument
104 for(;(_s_).s[(_s_).len-1]==' ';(_s_).s[--(_s_).len]=0); \
105 for(;(_s_).s[0]==' ';(_s_).s=(_s_).s+1,(_s_).len--); \
116 #define trim_zeros_lr(_s_) \ argument
118 for(;(_s_)->s[(_s_)->len-1]=='\0';(_s_)->s[--(_s_)->len]=0); \
119 for(;(_s_)->s[0]=='\0';(_s_)->s=(_s_)->s+1,(_s_)->len--); \
/dports/audio/streamripper/streamripper-1.64.6/lib/
H A Dcompat.h78 #define SemInit(_s_) {_s_ = CreateEvent(NULL, TRUE, FALSE, NULL);}
79 #define SemWait(_s_) {WaitForSingleObject(_s_, INFINITE); ResetEvent(_s_);}
80 #define SemPost(_s_) SetEvent(_s_)
81 #define SemDestroy(_s_) CloseHandle(_s_)
94 #define SemInit(_s_) sem_init(&(_s_), 0, 0)
95 #define SemWait(_s_) sem_wait(&(_s_))
96 #define SemPost(_s_) sem_post(&(_s_))
97 #define SemDestroy(_s_) sem_destroy(&(_s_))
/dports/net-mgmt/yaf/yaf-2.11.0/airframe/include/airframe/
H A Dautoinc.h149 #define ag_slice_alloc0(_s_) g_malloc0(_s_) argument
150 #define ag_slice_alloc(_s_) g_malloc(_s_) argument
152 #define ag_slice_free1(_s_, _p_) g_free(_p_) argument
155 #define ag_slice_alloc0(_s_) g_slice_alloc0(_s_) argument
156 #define ag_slice_alloc(_s_) g_slice_alloc(_s_) argument
158 #define ag_slice_free1(_s_, _p_) g_slice_free1(_s_, _p_) argument
H A Dmio_sink_multi.h100 #define mio_smc(_s_) (GPOINTER_TO_UINT((_s_)->cfg)) argument
107 #define mio_smn(_s_, _n_) (((MIOSink *)(_s_)->vsp)[(_n_)]) argument
H A Dmio.h462 #define mio_fd(_s_) GPOINTER_TO_INT((_s_)->vsp) argument
468 #define mio_fp(_s_) ((FILE *)(_s_)->vsp) argument
H A Dmio_source_pcap.h76 #define mio_pcap(_s_) ((pcap_t *)(_s_)->vsp) argument
/dports/lang/munger/munger-5.12/
H A Dlisp.h72 #define STACK_PUSH( _s_, _o_ ) { if (( _s_ )->free )\ argument
74 if (( _s_ )->used ) ++( _s_ )->top;\
83 if (( _s_ )->used ) ++( _s_ )->top;\
90 #define STACK_POP( _s_ ) ( !( _s_ )->used ? NULL : \ argument
91 ( ++( _s_ )->free, --( _s_ )->used, \
92 ((( _s_ )->top == ( _s_ )->values ) ? ( _s_ )->top->ptr : \
93 ( --( _s_ )->top, (( _s_ )->top + 1 )->ptr ))))
96 ( ++( _s_ )->free, --( _s_ )->used, \
97 ((( _s_ )->top == ( _s_ )->values ) ? ( _s_ )->top->integer : \
109 #define STRING_CHOP( _s_ ) if (( _s_ )->used ) { *--( _s_ )->top = '\0'; --( _s_ )->used; ++( _s_ )… argument
[all …]
/dports/net-mgmt/yaf/yaf-2.11.0/include/yaf/
H A Dautoinc.h152 #define yg_slice_alloc0(_s_) g_malloc0(_s_) argument
153 #define yg_slice_alloc(_s_) g_malloc(_s_) argument
155 #define yg_slice_free1(_s_, _p_) g_free(_p_) argument
158 #define yg_slice_alloc0(_s_) g_slice_alloc0(_s_) argument
159 #define yg_slice_alloc(_s_) g_slice_alloc(_s_) argument
161 #define yg_slice_free1(_s_, _p_) g_slice_free1(_s_, _p_) argument
/dports/devel/radare2/radare2-5.1.1/libr/debug/p/
H A Ddebug_io.c43 char *_s_ = strstr (str, " s "); in __io_maps() local
44 if (_s_) { in __io_maps()
45 memmove (_s_, _s_ + 2, strlen (_s_)); in __io_maps()
47 _s_ = strstr (str, " ? "); in __io_maps()
48 if (_s_) { in __io_maps()
49 memmove (_s_, _s_ + 2, strlen (_s_)); in __io_maps()
/dports/astro/xearth/xearth-1.2/
H A Dxearth.h136 double _c_, _s_, _t_; \
141 _s_ = vpi.sin_lon; \
142 _t_ = (_c_ * _p0_) - (_s_ * _p2_); \
143 _p2_ = (_s_ * _p0_) + (_c_ * _p2_); \
146 _s_ = vpi.sin_lat; \
147 _t_ = (_c_ * _p1_) - (_s_ * _p2_); \
148 _p2_ = (_s_ * _p1_) + (_c_ * _p2_); \
151 _s_ = vpi.sin_rot; \
152 _t_ = (_c_ * _p0_) - (_s_ * _p1_); \
153 _p1_ = (_s_ * _p0_) + (_c_ * _p1_); \
/dports/devel/tinygo/tinygo-0.14.1/lib/picolibc/newlib/libc/tinystdio/
H A Dvfprintf.c101 #define arg_to_t(flags, _s_) ({ \ argument
102 _s_ long long __v__; \
107 __v__ = va_arg(ap, _s_ long); \
110 __v__ = (_s_ char) va_arg(ap, _s_ int); \
112 __v__ = (_s_ short) va_arg(ap, _s_ int); \
114 __v__ = va_arg(ap, _s_ int); \
122 #define arg_to_t(flags, _s_) ({ \ argument
123 _s_ long __v__; \
125 __v__ = va_arg(ap, _s_ long); \
127 __v__ = (_s_ short) va_arg(ap, _s_ int); \
[all …]
/dports/sysutils/du2ps/du2ps-3.1/
H A Ddu2ps.h42 #define strdup(_s_) strcpy(malloc(strlen(_s_)+ 1),_s_) argument
/dports/net/nng/nng-1.5.2/docs/man/
H A Dnng_recvmsg.3.adoc27 The `nng_recvmsg()` receives a message on socket _s_, storing the
38 by the socket _s_, or any configured timer expires.
56 `NNG_ECLOSED`:: The socket _s_ is not open.
59 `NNG_ENOTSUP`:: The protocol for socket _s_ does not support receiving.
60 `NNG_ESTATE`:: The socket _s_ cannot receive data in this state.
H A Dnng_sendmsg.3.adoc27 The `nng_sendmsg()` sends message _msg_ using the socket _s_.
30 delivery, then the _msg_ is owned by the socket _s_, and the caller
77 `NNG_ECLOSED`:: The socket _s_ is not open.
81 `NNG_ENOTSUP`:: The protocol for socket _s_ does not support sending.
82 `NNG_ESTATE`:: The socket _s_ cannot send data in this state.
H A Dnng_recv_aio.3.adoc28 xref:nng_socket.5.adoc[socket] _s_ asynchronously.
65 `NNG_ECLOSED`:: The socket _s_ is not open.
67 `NNG_ENOTSUP`:: The protocol for socket _s_ does not support receiving.
68 `NNG_ESTATE`:: The socket _s_ cannot receive data in this state.
H A Dnng_listen.3.adoc28 xref:nng_listener.5.adoc[`nng_listener`] object, associated with socket _s_,
35 xref:nng_pipe.5.adoc[`nng_pipe`] object being created and attached to the socket _s_.
54 their pipes with the socket, until either it or the socket _s_ is closed.
65 `NNG_ECLOSED`:: The socket _s_ is not open.
/dports/net/libcoap/libcoap-4.3.0/man/
H A Dcoap_string.txt.in106 where _s_ points to uninitialized data of length _size_ with an extra trailing
113 where _s_ is filled in with _data_ and has a trailing NULL added.
114 _length_ is set to _size_. _s_ is read-only.
128 where _s_ points to uninitialized data of length _size_. _length_ is set
131 The *coap_resize_binary*() function is used resize the size of _s_ to the new
139 where _s_ is filled in with in with _data_ and has a trailing NULL added.
140 _length_ is set to _size_. _s_ is read-only.
/dports/www/libmicrohttpd/libmicrohttpd-0.9.74/src/lib/
H A Dmhd_sockets.h328 fd_set*const _s_ = (fd_set*) (pset); \
329 while ((_i_ < _s_->fd_count) && ((fd) != _s_->fd_array [_i_])) {++_i_;} \
330 if ((_i_ == _s_->fd_count)) {_s_->fd_array [_s_->fd_count ++] = (fd);} \
/dports/multimedia/musikcube/musikcube-0.96.7/src/3rdparty/win32_src/microhttpd/
H A Dmhd_sockets.h315 fd_set* const _s_ = (fd_set*)(pset); \
316 while((_i_ < _s_->fd_count) && ((fd) != _s_->fd_array[_i_])) {++_i_;} \
317 if ((_i_ == _s_->fd_count)) {_s_->fd_array[_s_->fd_count++] = (fd);} \
/dports/multimedia/libv4l/linux-5.13-rc2/include/linux/usb/
H A Dtypec_tbt.h50 #define TBT_SET_CABLE_SPEED(_s_) (((_s_) & GENMASK(2, 0)) << 16) argument
/dports/multimedia/v4l_compat/linux-5.13-rc2/include/linux/usb/
H A Dtypec_tbt.h50 #define TBT_SET_CABLE_SPEED(_s_) (((_s_) & GENMASK(2, 0)) << 16) argument
/dports/multimedia/v4l-utils/linux-5.13-rc2/include/linux/usb/
H A Dtypec_tbt.h50 #define TBT_SET_CABLE_SPEED(_s_) (((_s_) & GENMASK(2, 0)) << 16) argument
/dports/print/a2ps/a2ps-4.13/lib/
H A Droutines.h174 #define astrcpy(_d_,_s_) \ argument
176 const char * _tmp_ = (const char *) (_s_); \
181 #define austrcpy(_d_,_s_) \ argument
183 const uchar * _tmp_ = (const uchar *) (_s_); \
/dports/devel/idutils/idutils-4.6/libidu/
H A Didfile.h153 char const *_s_ = (str); \
154 if (strstr (_s_, (arg)) == _s_) \

12345678910>>...12