Searched refs:is_signed (Results 1 – 10 of 10) sorted by relevance
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | binary.c | 196 long long mp_binary_get_int(size_t size, bool is_signed, bool big_endian, const byte *src) { in mp_binary_get_int() argument 206 if (is_signed && *src & 0x80) { in mp_binary_get_int() 218 #define is_signed(typecode) (typecode > 'Z') macro 235 long long val = mp_binary_get_int(size, is_signed(val_type), (struct_type == '>'), p); in mp_binary_get_val() 254 } else if (is_signed(val_type)) { in mp_binary_get_val()
|
A D | binary.h | 43 long long mp_binary_get_int(size_t size, bool is_signed, bool big_endian, const byte *src);
|
A D | mpz.h | 111 void mpz_set_from_ll(mpz_t *z, long long i, bool is_signed);
|
A D | mpz.c | 650 mpz_t *mpz_from_ll(long long val, bool is_signed) { 652 mpz_set_from_ll(z, val, is_signed); 738 void mpz_set_from_ll(mpz_t *z, long long val, bool is_signed) { in mpz_set_from_ll() argument 742 if (is_signed && val < 0) { in mpz_set_from_ll()
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/ruy/ruy/ |
A D | mat.h | 211 ret.is_signed = std::is_signed<T>::value; in Create() 219 RUY_DCHECK_EQ(is_signed, Create<T>().is_signed); in AssertIs() 224 bool is_signed = false; member 230 return type1.is_signed == type2.is_signed &&
|
A D | size_util.h | 32 static_assert(std::is_signed<Integer>::value, ""); in floor_log2()
|
A D | pack_common.h | 41 if (std::is_signed<Scalar>::value) { in SymmetricZeroPoint()
|
A D | trace.h | 469 } else if (type.is_signed) { in str()
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/kernels/internal/ |
A D | quantization_util.h | 141 if (!std::numeric_limits<IntOut>::is_signed && x < 0) { in SafeCast()
|
A D | common.h | 254 static_assert(std::is_signed<T>::value, "Only signed integer types handled."); in CountLeadingSignBits() 272 static_assert(std::is_signed<Integer>::value, ""); in FloorLog2()
|
Completed in 18 milliseconds