Searched refs:neg (Results 1 - 25 of 35) sorted by relevance

12

/haiku-fatelf/src/system/libroot/posix/stdlib/
H A Dstrtol.c57 int neg, any, cutlim; local
69 neg = 1;
72 neg = 0;
98 * 7 (neg==0) or 8 (neg==1), meaning that if we have accumulated
105 cutoff = neg ? (unsigned long)-(LONG_MIN + LONG_MAX) + LONG_MAX
129 acc = neg ? LONG_MIN : LONG_MAX;
134 } else if (neg)
H A Dstrtoll.c57 int neg, any, cutlim; local
69 neg = 1;
72 neg = 0;
98 * either 7 (neg==0) or 8 (neg==1), meaning that if we have
106 cutoff = neg ? (unsigned long long)-(LONGLONG_MIN + LONGLONG_MAX) + LONGLONG_MAX
130 acc = neg ? LONGLONG_MIN : LONGLONG_MAX;
135 } else if (neg)
H A Dstrtoq.c61 register int neg, any, cutlim; local
73 neg = 1;
76 neg = 0;
99 * either 7 (neg==0) or 8 (neg==1), meaning that if we have
107 cutoff = neg ? QUAD_MIN : QUAD_MAX;
110 if (neg) {
128 if (neg) {
H A Dstrtoul.c57 int neg, any, cutlim; local
67 neg = 1;
70 neg = 0;
113 } else if (neg)
H A Dstrtoull.c57 int neg, any, cutlim; local
67 neg = 1;
70 neg = 0;
113 } else if (neg)
H A Dstrtouq.c60 register int neg, any, cutlim; local
70 neg = 1;
73 neg = 0;
109 if (neg && any > 0)
/haiku-fatelf/src/bin/gdb/libiberty/
H A Dstrtol.c97 register int neg = 0, any, cutlim; local
108 neg = 1;
131 * 7 (neg==0) or 8 (neg==1), meaning that if we have accumulated
138 cutoff = neg ? -(unsigned long)LONG_MIN : LONG_MAX;
159 acc = neg ? LONG_MIN : LONG_MAX;
161 } else if (neg)
H A Dstrtoul.c70 register int neg = 0, any, cutlim; local
79 neg = 1;
113 } else if (neg)
/haiku-fatelf/src/bin/less/
H A Dlessecho.c79 int neg = 0; local
89 neg = 1;
139 if (neg)
H A Doption.c629 register int neg; local
632 neg = FALSE;
635 neg = TRUE;
647 if (neg)
H A Doutput.c365 int neg = (num < 0); \
368 if (neg) num = -num; \
373 if (neg) *--s = '-'; \
/haiku-fatelf/src/libs/stdc++/legacy/
H A Dstream.cc55 static char* itoa(unsigned long i, int size, int neg, int base) argument
70 if (needed < (2+neg) || ptr > EndBuffer)
85 if (neg)
H A Diostream.cc272 static int read_int(istream& stream, unsigned LONGEST& val, int& neg) argument
285 neg = 0;
290 neg = 1;
360 unsigned LONGEST val; int neg;\
361 if (read_int(*this, val, neg)) {\
362 if (neg) val = -val;\
/haiku-fatelf/src/bin/bc/bc/
H A Dload.c131 char neg = FALSE; local
135 neg = TRUE;
141 if (neg)
/haiku-fatelf/src/system/libroot/posix/glibc/arch/ppc/
H A Dsub_n.S76 neg r3,r3
/haiku-fatelf/src/bin/gdb/opcodes/
H A Dd10v-dis.c157 int neg = 0; local
162 neg = 1;
169 if (neg)
H A Dd30v-dis.c322 int neg = 0; local
335 neg = 1;
338 if (neg)
H A Dmmix-opc.c150 {"neg", Z (0x34), OP (neg), N},
153 {"negu", Z (0x36), OP (neg), N},
/haiku-fatelf/src/tools/docbook/libxml2/
H A Dxmlregexp.c161 int neg; /* 0 normal, 1 not, 2 exclude */ member in struct:_xmlRegRange
183 int neg; member in struct:_xmlRegAtom
234 int neg; member in struct:_xmlAutomata
347 int neg, int start, int end, const xmlChar *blockName);
677 ret->neg = 0;
687 * @neg: is that negative
698 int neg, xmlRegAtomType type, int start, int end) {
706 ret->neg = neg;
985 if (range->neg)
697 xmlRegNewRange(xmlRegParserCtxtPtr ctxt, int neg, xmlRegAtomType type, int start, int end) argument
1123 xmlRegAtomAddRange(xmlRegParserCtxtPtr ctxt, xmlRegAtomPtr atom, int neg, xmlRegAtomType type, int start, int end, xmlChar *blockName) argument
1943 int neg = 0; local
2592 xmlRegCheckCharacterRange(xmlRegAtomType type, int codepoint, int neg, int start, int end, const xmlChar *blockName) argument
4917 int neg = ctxt->neg; local
4924 int neg = ctxt->neg; local
[all...]
/haiku-fatelf/src/bin/bash/
H A Dgeneral.c95 int neg; local
98 neg = 0;
103 neg = *s == '-';
108 return (neg ? -ret : ret);
/haiku-fatelf/src/system/libroot/posix/glibc/include/arch/m68k/
H A Dasm-syntax.h107 #define negl neg.l
/haiku-fatelf/src/add-ons/media/plugins/matroska/libMatroskaParser/
H A DMatroskaParser.c224 int neg,unsigned base,int letter,
253 if (neg)
272 int neg,unsigned base,int letter,
275 myvsnprintf_uint_impl(pdest,de,width,zero,neg,base,letter,0,val);
279 int neg,unsigned base,int letter,
283 myvsnprintf_uint_impl(pdest,de,width,zero,neg,base,letter,1,-val);
285 myvsnprintf_uint_impl(pdest,de,width,zero,neg,base,letter,0,val);
291 int state = 0, width, zero, neg, ll; local
305 width = zero = neg = ll = 0;
311 neg
223 myvsnprintf_uint_impl(char **pdest,char *de,int width,int zero, int neg,unsigned base,int letter, int ms,ulonglong val) argument
271 myvsnprintf_uint(char **pdest,char *de,int width,int zero, int neg,unsigned base,int letter, ulonglong val) argument
278 myvsnprintf_int(char **pdest,char *de,int width,int zero, int neg,unsigned base,int letter, longlong val) argument
[all...]
/haiku-fatelf/src/bin/bc/lib/
H A Dnumber.c1246 char neg; local
1266 neg = TRUE;
1272 neg = FALSE;
1302 if (neg)
1620 char neg = 0; local
1625 neg = 1;
1645 if (neg) (*num)->n_sign = MINUS;
/haiku-fatelf/src/bin/unzip/
H A Dtimezone.c330 register int neg = 0; local
333 neg = 1;
340 if (neg)
/haiku-fatelf/src/bin/gdb/include/opcode/
H A Dpyr.h260 {"mnegp", { 2, "", UNKNOWN, 0x00} }, /move-neg phys?*/

Completed in 183 milliseconds

12