/AliOS-Things-master/components/py_engine/engine/py/ |
A D | mpz.c | 695 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 D | parsenum.c | 52 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 D | mpz.h | 94 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 D | objint_mpz.c | 136 } 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 D | objint_longlong.c | 263 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 D | objint.c | 327 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 D | lcp.c | 774 #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 D | ipcp.c | 762 #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 D | ipv6cp.c | 534 #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 D | utils.c | 140 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 D | strtol.c | 145 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 D | strtoul.c | 147 register int neg = 0, any, cutlim; in _strtoul_r() local 156 neg = 1; in _strtoul_r() 190 } else if (neg) in _strtoul_r()
|
A D | printf.c | 146 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 D | strtoul.c | 54 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 D | strtoull.c | 52 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 D | SDL_stdlib.c | 612 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 D | neg.cc | 25 namespace neg { namespace 57 /*invoke=*/neg::Eval, in Register_NEG()
|
/AliOS-Things-master/components/debug/src/ |
A D | debug_print.c | 213 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 D | inffas32.asm | 197 neg ebp 548 neg ecx 830 neg ecx 1042 neg esi 1061 neg edi
|
/AliOS-Things-master/components/freetype/src/bdf/ |
A D | bdflib.c | 900 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 D | mpy-tool.py | 314 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 D | gvmat64.S | 260 neg r13
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/masmx64/ |
A D | inffasx64.asm | 269 neg ecx ; /* nbytes = -nbytes */
|
/AliOS-Things-master/components/mbedtls/library/ |
A D | bignum.c | 1741 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 D | inffas86.c | 1015 neg ecx /* nbytes = -nbytes */
|