Home
last modified time | relevance | path

Searched refs:tailptr (Results 1 – 25 of 122) sorted by relevance

12345

/dports/net/freeswitch/freeswitch-1.10.3.-release/libs/xmlrpc-c/lib/util/
H A Dstring_parser.c186 char * tailptr; in interpretBinUint() local
187 long const mantissa_long = strtol(string, &tailptr, 10); in interpretBinUint()
201 if (*tailptr == '\0') in interpretBinUint()
204 else if (stripcaseeq(tailptr, "K")) in interpretBinUint()
206 else if (stripcaseeq(tailptr, "M")) in interpretBinUint()
208 else if (stripcaseeq(tailptr, "G")) in interpretBinUint()
210 else if (stripcaseeq(tailptr, "T")) in interpretBinUint()
212 else if (stripcaseeq(tailptr, "P")) in interpretBinUint()
216 casprintf(errorP, "Garbage suffix '%s' on number", tailptr); in interpretBinUint()
/dports/net/xmlrpc-c/xmlrpc-c-1.51.07/lib/util/
H A Dstring_parser.c186 char * tailptr; in interpretBinUint() local
187 long const mantissa_long = strtol(string, &tailptr, 10); in interpretBinUint()
201 if (*tailptr == '\0') in interpretBinUint()
204 else if (stripcaseeq(tailptr, "K")) in interpretBinUint()
206 else if (stripcaseeq(tailptr, "M")) in interpretBinUint()
208 else if (stripcaseeq(tailptr, "G")) in interpretBinUint()
210 else if (stripcaseeq(tailptr, "T")) in interpretBinUint()
212 else if (stripcaseeq(tailptr, "P")) in interpretBinUint()
216 casprintf(errorP, "Garbage suffix '%s' on number", tailptr); in interpretBinUint()
/dports/multimedia/v4l_compat/linux-5.13-rc2/sound/pci/mixart/
H A Dmixart_core.c39 u32 headptr, tailptr; in retrieve_msg_frame() local
44 if (tailptr == headptr) in retrieve_msg_frame()
47 if (tailptr < MSG_OUTBOUND_POST_STACK) in retrieve_msg_frame()
52 *msg_frame = readl_be(MIXART_MEM(mgr, tailptr)); in retrieve_msg_frame()
55 tailptr += 4; in retrieve_msg_frame()
57 tailptr = MSG_OUTBOUND_POST_STACK; in retrieve_msg_frame()
135 u32 headptr, tailptr; in send_msg() local
146 if (tailptr == headptr) { in send_msg()
151 …if( (tailptr < MSG_INBOUND_FREE_STACK) || (tailptr >= (MSG_INBOUND_FREE_STACK+MSG_BOUND_STACK_SIZE… in send_msg()
159 tailptr += 4; in send_msg()
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/sound/pci/mixart/
H A Dmixart_core.c39 u32 headptr, tailptr; in retrieve_msg_frame() local
44 if (tailptr == headptr) in retrieve_msg_frame()
47 if (tailptr < MSG_OUTBOUND_POST_STACK) in retrieve_msg_frame()
52 *msg_frame = readl_be(MIXART_MEM(mgr, tailptr)); in retrieve_msg_frame()
55 tailptr += 4; in retrieve_msg_frame()
57 tailptr = MSG_OUTBOUND_POST_STACK; in retrieve_msg_frame()
135 u32 headptr, tailptr; in send_msg() local
146 if (tailptr == headptr) { in send_msg()
151 …if( (tailptr < MSG_INBOUND_FREE_STACK) || (tailptr >= (MSG_INBOUND_FREE_STACK+MSG_BOUND_STACK_SIZE… in send_msg()
159 tailptr += 4; in send_msg()
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/sound/pci/mixart/
H A Dmixart_core.c39 u32 headptr, tailptr; in retrieve_msg_frame() local
44 if (tailptr == headptr) in retrieve_msg_frame()
47 if (tailptr < MSG_OUTBOUND_POST_STACK) in retrieve_msg_frame()
52 *msg_frame = readl_be(MIXART_MEM(mgr, tailptr)); in retrieve_msg_frame()
55 tailptr += 4; in retrieve_msg_frame()
57 tailptr = MSG_OUTBOUND_POST_STACK; in retrieve_msg_frame()
135 u32 headptr, tailptr; in send_msg() local
146 if (tailptr == headptr) { in send_msg()
151 …if( (tailptr < MSG_INBOUND_FREE_STACK) || (tailptr >= (MSG_INBOUND_FREE_STACK+MSG_BOUND_STACK_SIZE… in send_msg()
159 tailptr += 4; in send_msg()
[all …]
/dports/sysutils/tarsnap/tarsnap-autoconf-1.0.39/lib/network/
H A Dtsnetwork_writeq.c28 struct network_writeq_buf ** tailptr; member
78 if (Q->tailptr == &head_old->next) in callback_bufdone()
79 Q->tailptr = &Q->head; in callback_bufdone()
134 Q->tailptr = &Q->head; in network_writeq_init()
180 tailptr_old = Q->tailptr; in _network_writeq_add()
181 *Q->tailptr = QB; in _network_writeq_add()
182 Q->tailptr = &QB->next; in _network_writeq_add()
198 Q->tailptr = tailptr_old; in _network_writeq_add()
199 *Q->tailptr = NULL; in _network_writeq_add()
/dports/net/freeswitch/freeswitch-1.10.3.-release/libs/xmlrpc-c/tools/xmlrpc_pstream/
H A Dxmlrpc_pstream.cpp145 char * tailptr; in intValFromParm() local
158 if (*tailptr != '\0') in intValFromParm()
160 tailptr); in intValFromParm()
198 char * tailptr; in doubleValFromParm() local
200 value = strtod(valueString.c_str(), &tailptr); in doubleValFromParm()
202 if (*tailptr != '\0') in doubleValFromParm()
204 tailptr); in doubleValFromParm()
237 char * tailptr; in i8ValFromParm() local
241 value = strtoll(valueString.c_str(), &tailptr, 10); in i8ValFromParm()
250 if (*tailptr != '\0') in i8ValFromParm()
[all …]
/dports/net/xmlrpc-c/xmlrpc-c-1.51.07/tools/xmlrpc_pstream/
H A Dxmlrpc_pstream.cpp148 char * tailptr; in intValFromParm() local
161 if (*tailptr != '\0') in intValFromParm()
163 tailptr); in intValFromParm()
201 char * tailptr; in doubleValFromParm() local
203 value = strtod(valueString.c_str(), &tailptr); in doubleValFromParm()
205 if (*tailptr != '\0') in doubleValFromParm()
207 tailptr); in doubleValFromParm()
240 char * tailptr; in i8ValFromParm() local
244 value = strtoll(valueString.c_str(), &tailptr, 10); in i8ValFromParm()
253 if (*tailptr != '\0') in i8ValFromParm()
[all …]
/dports/emulators/mess/mame-mame0226/src/devices/machine/
H A Dz80daisy.cpp136 device_z80daisy_interface **tailptr = &m_chain; in daisy_init() local
154 device_z80daisy_interface **oldtailptr = tailptr; in daisy_init()
164 intf->m_daisy_next = *tailptr; in daisy_init()
165 *tailptr = intf; in daisy_init()
166 tailptr = &(*tailptr)->m_daisy_next; in daisy_init()
/dports/emulators/mame/mame-mame0226/src/devices/machine/
H A Dz80daisy.cpp136 device_z80daisy_interface **tailptr = &m_chain; in daisy_init() local
154 device_z80daisy_interface **oldtailptr = tailptr; in daisy_init()
164 intf->m_daisy_next = *tailptr; in daisy_init()
165 *tailptr = intf; in daisy_init()
166 tailptr = &(*tailptr)->m_daisy_next; in daisy_init()
/dports/astro/gnuastro/gnuastro-0.16/lib/
H A Dtxt.c162 char *line, *aline, *tailptr; in txt_info_from_comment() local
213 index=strtol(number, &tailptr, 0); in txt_info_from_comment()
735 char *tailptr, emptystr[1]="\0"; in txt_read_token() local
845 f[i]=strtod(token, &tailptr); in txt_read_token()
846 if( (*tailptr=='h' || *tailptr=='d') && isdigit(*(tailptr+1)) ) in txt_read_token()
848 f[i] = ( *tailptr=='h' in txt_read_token()
864 if( (*tailptr=='h' || *tailptr=='d') && isdigit(*(tailptr+1)) ) in txt_read_token()
866 d[i] = ( *tailptr=='h' in txt_read_token()
884 if( tailptr!=token in txt_read_token()
885 && isdigit(*(tailptr-1)) in txt_read_token()
[all …]
H A Dtype.c467 char *tailptr; in gal_type_from_string() local
500 d=strtod(string, &tailptr); in gal_type_from_string()
501 if(*tailptr!='\0') in gal_type_from_string()
512 l=strtol(string, &tailptr, 0); in gal_type_from_string()
513 if(*tailptr!='\0') in gal_type_from_string()
566 char *c, *tailptr, *cp; in gal_type_string_to_number() local
574 d=strtod(string, &tailptr); in gal_type_string_to_number()
575 if(*tailptr=='f') { if(tailptr[1]=='\0') forcedfloat=1; else return NULL; } in gal_type_string_to_number()
576 else if (*tailptr!='\0') return NULL; in gal_type_string_to_number()
/dports/math/py-cypari2/cypari2-2.1.2/venv/lib/python3.7/site-packages/Cython/Includes/libc/
H A Dstdlib.pxd14 long strtol (const char *string, char **tailptr, int base)
15 unsigned long int strtoul (const char *string, char **tailptr, int base)
16 long long int strtoll (const char *string, char **tailptr, int base)
17 unsigned long long int strtoull (const char *string, char **tailptr, int base)
18 float strtof (const char *string, char **tailptr)
19 double strtod (const char *string, char **tailptr)
20 long double strtold (const char *string, char **tailptr)
/dports/lang/cython/Cython-0.29.24/build/lib.dragonfly-6.3-DEVELOPMENT-x86_64-3.8/Cython/Includes/libc/
H A Dstdlib.pxd14 long strtol (const char *string, char **tailptr, int base)
15 unsigned long int strtoul (const char *string, char **tailptr, int base)
16 long long int strtoll (const char *string, char **tailptr, int base)
17 unsigned long long int strtoull (const char *string, char **tailptr, int base)
18 float strtof (const char *string, char **tailptr)
19 double strtod (const char *string, char **tailptr)
20 long double strtold (const char *string, char **tailptr)
/dports/lang/cython/Cython-0.29.24/Cython/Includes/libc/
H A Dstdlib.pxd14 long strtol (const char *string, char **tailptr, int base)
15 unsigned long int strtoul (const char *string, char **tailptr, int base)
16 long long int strtoll (const char *string, char **tailptr, int base)
17 unsigned long long int strtoull (const char *string, char **tailptr, int base)
18 float strtof (const char *string, char **tailptr)
19 double strtod (const char *string, char **tailptr)
20 long double strtold (const char *string, char **tailptr)
/dports/lang/cython-devel/cython-2b1e743/Cython/Includes/libc/
H A Dstdlib.pxd14 long strtol (const char *string, char **tailptr, int base)
15 unsigned long int strtoul (const char *string, char **tailptr, int base)
16 long long int strtoll (const char *string, char **tailptr, int base)
17 unsigned long long int strtoull (const char *string, char **tailptr, int base)
18 float strtof (const char *string, char **tailptr)
19 double strtod (const char *string, char **tailptr)
20 long double strtold (const char *string, char **tailptr)
/dports/lang/cython/stage/usr/local/lib/python3.8/site-packages/Cython/Includes/libc/
H A Dstdlib.pxd14 long strtol (const char *string, char **tailptr, int base)
15 unsigned long int strtoul (const char *string, char **tailptr, int base)
16 long long int strtoll (const char *string, char **tailptr, int base)
17 unsigned long long int strtoull (const char *string, char **tailptr, int base)
18 float strtof (const char *string, char **tailptr)
19 double strtod (const char *string, char **tailptr)
20 long double strtold (const char *string, char **tailptr)
/dports/biology/mummer/mummer-4.0.0beta2-2-g277dac5/src/kurtz/streesrc/
H A Dconstruct.c221 secondchar = *(stree->tailptr-1); in getlargelinkconstruction()
326 secondchar = *(stree->tailptr-1); in getlargelinkconstruction()
384 secondchar = *(stree->tailptr-1); in getlargelinkconstruction()
491 if (stree->tailptr == stree->sentinel || in insertbranchnode()
667 tailchar = *(stree->tailptr); in scanprefix()
677 (stree->tailptr) += prefixlen; in scanprefix()
687 (stree->tailptr)+= prefixlen; in scanprefix()
720 tailchar = *(stree->tailptr); in scanprefix()
756 (stree->tailptr) += prefixlen; in scanprefix()
766 (stree->tailptr) += prefixlen; in scanprefix()
[all …]
/dports/graphics/mupdf/mupdf-1.18.0-source/source/fitz/
H A Dstrtof.c329 #define SET_TAILPTR(tailptr, s) \ argument
331 if (tailptr) \
332 *tailptr = (char *) s; \
336 fz_strtof(const char *string, char **tailptr) in fz_strtof() argument
408 SET_TAILPTR(tailptr, s); in fz_strtof()
413 SET_TAILPTR(tailptr, s); in fz_strtof()
418 SET_TAILPTR(tailptr, string); in fz_strtof()
457 SET_TAILPTR(tailptr, s); in fz_strtof()
/dports/astro/gnuastro/gnuastro-0.16/bin/fits/
H A Dui.c224 char *tailptr; in ui_check_copykeys() local
279 read=strtol(pt, &tailptr, 0); in ui_check_copykeys()
286 if(tailptr==pt) continue; /* No number was read! */ in ui_check_copykeys()
290 pt=tailptr; in ui_check_copykeys()
499 char *c, *cf, *start, *tailptr; in ui_fill_fits_headerll() local
506 tailptr=NULL; in ui_fill_fits_headerll()
588 l=strtol(value, &tailptr, 10); in ui_fill_fits_headerll()
589 if(*tailptr=='\0' && errno==0) in ui_fill_fits_headerll()
603 d=strtod(value, &tailptr); in ui_fill_fits_headerll()
604 if(*tailptr=='\0' && errno==0) in ui_fill_fits_headerll()
/dports/accessibility/py-speech-dispatcher/speech-dispatcher-0.10.2/src/clients/spdsend/
H A Dspdsend.c92 char *tailptr; in string_to_number() local
94 long int number = strtol(string, &tailptr, 0); in string_to_number()
95 if (errno || *tailptr || number < low_limit || number > high_limit) in string_to_number()
/dports/accessibility/speech-dispatcher/speech-dispatcher-0.10.2/src/clients/spdsend/
H A Dspdsend.c92 char *tailptr; in string_to_number() local
94 long int number = strtol(string, &tailptr, 0); in string_to_number()
95 if (errno || *tailptr || number < low_limit || number > high_limit) in string_to_number()
/dports/multimedia/gstreamer1-plugins-v4l2/gst-plugins-good-1.16.2/gst/rtp/
H A Dgstrtpopusdepay.c119 gchar *tailptr; in gst_rtp_opus_depay_setcaps() local
121 rate = strtoul (sprop_maxcapturerate, &tailptr, 10); in gst_rtp_opus_depay_setcaps()
122 if (rate > INT_MAX || *tailptr != '\0') { in gst_rtp_opus_depay_setcaps()
/dports/multimedia/gstreamer1-plugins-vpx/gst-plugins-good-1.16.2/gst/rtp/
H A Dgstrtpopusdepay.c119 gchar *tailptr; in gst_rtp_opus_depay_setcaps() local
121 rate = strtoul (sprop_maxcapturerate, &tailptr, 10); in gst_rtp_opus_depay_setcaps()
122 if (rate > INT_MAX || *tailptr != '\0') { in gst_rtp_opus_depay_setcaps()
/dports/graphics/gstreamer1-plugins-aalib/gst-plugins-good-1.16.2/gst/rtp/
H A Dgstrtpopusdepay.c119 gchar *tailptr; in gst_rtp_opus_depay_setcaps() local
121 rate = strtoul (sprop_maxcapturerate, &tailptr, 10); in gst_rtp_opus_depay_setcaps()
122 if (rate > INT_MAX || *tailptr != '\0') { in gst_rtp_opus_depay_setcaps()

12345