Home
last modified time | relevance | path

Searched refs:neg (Results 1 – 25 of 29) sorted by relevance

12

/AliOS-Things-master/components/py_engine/engine/py/
A Dmpz.c695 z->neg = src->neg; in mpz_clone()
709 dest->neg = src->neg; in mpz_set()
1151 dest->neg = lhs->neg; in mpz_add_inpl()
1202 lhs->neg == rhs->neg, 0 != lhs->neg, 0 != rhs->neg); in mpz_and_inpl()
1203 dest->neg = lhs->neg & rhs->neg; in mpz_and_inpl()
1210 (lhs->neg == rhs->neg) ? lhs->neg : 0, lhs->neg, rhs->neg); in mpz_and_inpl()
1211 dest->neg = lhs->neg & rhs->neg; in mpz_and_inpl()
1244 (lhs->neg || rhs->neg), lhs->neg, rhs->neg); in mpz_or_inpl()
1245 dest->neg = lhs->neg | rhs->neg; in mpz_or_inpl()
1282 (lhs->neg != rhs->neg), 0 == lhs->neg, 0 == rhs->neg); in mpz_xor_inpl()
[all …]
A Dparsenum.c52 bool neg = false; in mp_parse_num_integer() local
71 neg = true; in mp_parse_num_integer()
112 if (neg) { in mp_parse_num_integer()
141 ret_val = mp_obj_new_int_from_str_len(&s2, top - str_val_start, neg, base); in mp_parse_num_integer()
A Dmpz.h94 size_t neg : 1; member
115 size_t mpz_set_from_str(mpz_t *z, const char *str, size_t len, bool neg, unsigned int base);
122 return z->len != 0 && z->neg != 0; in mpz_is_neg()
A Dobjint_mpz.c136 } else if (self->mpz.neg == 0) { in mp_obj_int_sign()
162 if (self->mpz.neg == 0) { in mp_obj_int_unary_op()
401 mp_obj_t mp_obj_new_int_from_str_len(const char **str, size_t len, bool neg, unsigned int base) { in mp_obj_new_int_from_str_len() argument
403 size_t n = mpz_set_from_str(&o->mpz, *str, len, neg, base); in mp_obj_new_int_from_str_len()
A Dobjint_longlong.c263 mp_obj_t mp_obj_new_int_from_str_len(const char **str, size_t len, bool neg, unsigned int base) { in mp_obj_new_int_from_str_len() argument
A Dobjint.c327 mp_obj_t mp_obj_new_int_from_str_len(const char **str, size_t len, bool neg, unsigned int base) { in mp_obj_new_int_from_str_len() argument
/AliOS-Things-master/components/lwip/lwip2.0.0/netif/ppp/
A Dlcp.c774 #define LENCIVOID(neg) ((neg) ? CILEN_VOID : 0) in lcp_cilen() argument
776 #define LENCICHAP(neg) ((neg) ? CILEN_CHAP : 0) in lcp_cilen() argument
778 #define LENCISHORT(neg) ((neg) ? CILEN_SHORT : 0) in lcp_cilen() argument
779 #define LENCILONG(neg) ((neg) ? CILEN_LONG : 0) in lcp_cilen() argument
781 #define LENCILQR(neg) ((neg) ? CILEN_LQR: 0) in lcp_cilen() argument
783 #define LENCICBCP(neg) ((neg) ? CILEN_CBCP: 0) in lcp_cilen() argument
1154 no.neg = 1; \ in lcp_nakci()
1167 no.neg = 1; \ in lcp_nakci()
1179 no.neg = 1; \ in lcp_nakci()
1190 no.neg = 1; \ in lcp_nakci()
[all …]
A Dipcp.c762 #define LENCIADDRS(neg) (neg ? CILEN_ADDRS : 0) in ipcp_cilen() argument
766 #define LENCIADDR(neg) (neg ? CILEN_ADDR : 0) in ipcp_cilen() argument
768 #define LENCIDNS(neg) LENCIADDR(neg) in ipcp_cilen() argument
771 #define LENCIWINS(neg) LENCIADDR(neg) in ipcp_cilen()
820 if (neg) { \ in ipcp_addci()
848 neg = 0; \ in ipcp_addci()
862 neg = 0; \ in ipcp_addci()
876 neg = 0; \ in ipcp_addci()
1131 no.neg = 1; \ in ipcp_nakci()
1145 no.neg = 1; \ in ipcp_nakci()
[all …]
A Dipv6cp.c534 #define LENCIVJ(neg) (neg ? CILEN_COMPRESS : 0)
536 #define LENCIIFACEID(neg) (neg ? CILEN_IFACEID : 0)
556 if (neg) { \
564 neg = 0; \
569 if (neg) { \
577 neg = 0; \
614 if (neg) { \
630 if (neg) { \
698 no.neg = 1; \
711 no.neg = 1; \
[all …]
A Dutils.c140 int base, len, neg, quoted; in ppp_vslprintf() local
203 neg = 0; in ppp_vslprintf()
212 neg = 1; in ppp_vslprintf()
231 neg = 1; in ppp_vslprintf()
253 neg = 2; in ppp_vslprintf()
362 while (str > num + neg) { in ppp_vslprintf()
368 switch (neg) { in ppp_vslprintf()
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/soc/realtek/amebad/swlib/string/
A Dstrtol.c145 register int neg = 0, any, cutlim; in _strtol_r() local
156 neg = 1; in _strtol_r()
186 cutoff = neg ? -(unsigned long)LONG_MIN : LONG_MAX; in _strtol_r()
207 acc = neg ? LONG_MIN : LONG_MAX; in _strtol_r()
209 } else if (neg) in _strtol_r()
A Dstrtoul.c147 register int neg = 0, any, cutlim; in _strtoul_r() local
156 neg = 1; in _strtoul_r()
190 } else if (neg) in _strtoul_r()
A Dprintf.c146 bool neg = !!(u.i & (1ULL << 63)); in double_to_string() local
149 if (neg) { in double_to_string()
235 if (neg) in double_to_string()
258 bool neg = !!(u.i & (1ULL << 63)); in double_to_hexstring() local
261 if (neg) { in double_to_hexstring()
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/port/
A Dstrtoul.c54 int neg, any, cutlim; in strtoul() local
64 neg = 1; in strtoul()
67 neg = 0; in strtoul()
103 if (neg && any > 0) in strtoul()
A Dstrtoull.c52 int neg, any, cutlim; in strtoull() local
62 neg = 1; in strtoull()
65 neg = 0; in strtoull()
111 } else if (neg) in strtoull()
/AliOS-Things-master/components/SDL2/src/stdlib/
A DSDL_stdlib.c612 neg eax in _alldiv()
613 neg edx in _alldiv()
623 neg eax in _alldiv()
624 neg edx in _alldiv()
673 neg edx in _alldiv()
674 neg eax in _alldiv()
757 neg eax in _allrem()
758 neg edx in _allrem()
767 neg eax in _allrem()
768 neg edx in _allrem()
[all …]
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/micro/kernels/
A Dneg.cc25 namespace neg { namespace
57 /*invoke=*/neg::Eval, in Register_NEG()
/AliOS-Things-master/components/debug/src/
A Ddebug_print.c213 uint8_t neg = !!(u.i & (1ULL << 63)); in double_to_string() local
216 if (neg) { in double_to_string()
300 if (neg) { in double_to_string()
322 uint8_t neg = !!(u.i & (1ULL << 63)); in double_to_hexstring() local
325 if (neg) { in double_to_hexstring()
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/masmx86/
A Dinffas32.asm197 neg ebp
548 neg ecx
830 neg ecx
1042 neg esi
1061 neg edi
/AliOS-Things-master/components/freetype/src/bdf/
A Dbdflib.c900 long v, neg; in _bdf_atol() local
923 neg = 0; in _bdf_atol()
927 neg = 1; in _bdf_atol()
945 return ( !neg ) ? v : -v; in _bdf_atol()
955 short v, neg; in _bdf_atos() local
978 neg = 0; in _bdf_atos()
982 neg = 1; in _bdf_atos()
1000 return (short)( ( !neg ) ? v : -v ); in _bdf_atos()
/AliOS-Things-master/components/py_engine/engine/tools/
A Dmpy-tool.py314 neg = 0
317 neg = 1
329 % (obj_name, neg, ndigs, ndigs, bits_per_dig, bits_per_dig, digs)
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/gcc_gvmat64/
A Dgvmat64.S260 neg r13
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/masmx64/
A Dinffasx64.asm269 neg ecx ; /* nbytes = -nbytes */
/AliOS-Things-master/components/mbedtls/library/
A Dbignum.c1741 int neg; in mbedtls_mpi_exp_mod() local
1778 neg = ( A->s == -1 ); in mbedtls_mpi_exp_mod()
1779 if( neg ) in mbedtls_mpi_exp_mod()
1924 if( neg && E->n != 0 && ( E->p[0] & 1 ) != 0 ) in mbedtls_mpi_exp_mod()
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/inflate86/
A Dinffas86.c1015 neg ecx /* nbytes = -nbytes */

Completed in 45 milliseconds

12