/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/soc/realtek/amebad/swlib/string/ |
A D | strtod.c | 112 struct DWstruct {unsigned int low, high;}; in mul64_8() member 129 w.s.high = ( uu.s.low >> 24) * vv ; in mul64_8() 130 w.s.high += (((uu.s.low & 0xFFFFFF)*vv)>>24); in mul64_8() 132 temp = w.s.high <<24; in mul64_8() 134 w.s.high = (w.s.high >> 8); in mul64_8() 135 w.s.high += uu.s.high * vv; in mul64_8()
|
/AliOS-Things-master/components/py_engine/tests/basics/ |
A D | async_for2.py | 22 def __init__(self, high): argument 25 self.high = high 34 if self.cur < self.high:
|
/AliOS-Things-master/components/SDL2/src/libm/ |
A D | s_fabs.c | 24 u_int32_t high; in fabs() local 25 GET_HIGH_WORD(high,x); in fabs() 26 SET_HIGH_WORD(x,high&0x7fffffff); in fabs()
|
A D | e_rem_pio2.c | 114 u_int32_t high; in __ieee754_rem_pio2() local 117 GET_HIGH_WORD(high,y[0]); in __ieee754_rem_pio2() 118 i = j-((high>>20)&0x7ff); in __ieee754_rem_pio2() 125 GET_HIGH_WORD(high,y[0]); in __ieee754_rem_pio2() 126 i = j-((high>>20)&0x7ff); in __ieee754_rem_pio2()
|
/AliOS-Things-master/components/py_engine/engine/lib/libm/ |
A D | ef_rem_pio2.c | 157 __uint32_t high; local 160 GET_FLOAT_WORD(high,y[0]); 161 i = j-((high>>23)&0xff); 168 GET_FLOAT_WORD(high,y[0]); 169 i = j-((high>>23)&0xff);
|
/AliOS-Things-master/components/sensor/drv/ |
A D | drv_rtc_maxim_ds1307.c | 99 uint8_t high = 0; in TM_DS1307_Bin2Bcd() local 102 high = bin / 10; in TM_DS1307_Bin2Bcd() 104 low = bin - (high * 10); in TM_DS1307_Bin2Bcd() 107 return high << 4 | low; in TM_DS1307_Bin2Bcd()
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/cmsis/CMSIS/DSP/Include/dsp/ |
A D | basic_math_functions.h | 707 float32_t high, 723 q31_t high, 739 q15_t high, 755 q7_t high,
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/micro/tools/make/downloads/cmsis/CMSIS/DSP/Include/dsp/ |
A D | basic_math_functions.h | 707 float32_t high, 723 q31_t high, 739 q15_t high, 755 q7_t high,
|
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/ |
A D | CONTRIBUTING.md | 3 We work hard to provide a high-quality and useful SDK for Alibaba Cloud, and 13 - We maintain a high percentage of code coverage in our unit tests. If you make
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/ |
A D | libregexp.c | 179 int i, n, low, high; in lre_is_space() local 185 high = char_range_s[2 * i + 2]; in lre_is_space() 186 if (c < high) in lre_is_space() 827 uint32_t high; in re_emit_range() local 837 high = cr->points[cr->len - 1]; in re_emit_range() 838 if (high == UINT32_MAX) in re_emit_range() 840 if (high <= 0xffff) { in re_emit_range() 848 high = 0xffff; in re_emit_range() 2382 if (c > high) in lre_exec_backtrack() 2390 else if (c > high) in lre_exec_backtrack() [all …]
|
/AliOS-Things-master/components/SDL2/src/image/Xcode/pkg-support/resources/ |
A D | Welcome.txt | 2 <your home directory>/Library/Frameworks if your access privileges are not high enough.
|
/AliOS-Things-master/components/freetype/src/tools/ftrandom/ |
A D | ftrandom.c | 407 int high ) in getRandom() argument 409 if ( low - high < 0x10000L ) in getRandom() 410 return low + ( ( random() >> 8 ) % ( high + 1 - low ) ); in getRandom() 412 return low + ( random() % ( high + 1 - low ) ); in getRandom()
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/libtiff/ |
A D | tif_aux.c | 322 int32 low, high; member 336 if (i.part.high >= 0) { in _TIFFUInt64ToFloat() 352 if (i.part.high >= 0) { in _TIFFUInt64ToDouble()
|
/AliOS-Things-master/hardware/chip/rtl872xd/aos/ |
A D | aos_osdep.c | 57 unsigned int high = rem >> 32; in __div64_32() local 61 if (high >= base) { in __div64_32() 62 high /= base; in __div64_32() 63 res = (u64) high << 32; in __div64_32() 64 rem -= (u64) (high * base) << 32; in __div64_32()
|
/AliOS-Things-master/components/lwip/lwip2.0.0/ |
A D | FILES | 1 api/ - The code for the high-level wrapper API. Not needed if
|
/AliOS-Things-master/components/mqtt/example/ |
A D | aiot_mqtt_sign.c | 299 unsigned long int high, low; in utils_sha256_finish() local 302 high = (ctx->total[0] >> 29) in utils_sha256_finish() 306 PUT_UINT32_BE(high, msglen, 0); in utils_sha256_finish()
|
/AliOS-Things-master/components/lwip/lwip2.0.0/netif/ppp/polarssl/ |
A D | md4.c | 247 unsigned long high, low; in md4_finish() local 250 high = ( ctx->total[0] >> 29 ) in md4_finish() 255 PUT_ULONG_LE( high, msglen, 4 ); in md4_finish()
|
A D | md5.c | 266 unsigned long high, low; in md5_finish() local 269 high = ( ctx->total[0] >> 29 ) in md5_finish() 274 PUT_ULONG_LE( high, msglen, 4 ); in md5_finish()
|
/AliOS-Things-master/components/py_engine/tests/pyb/ |
A D | pin.py | 24 p.high()
|
/AliOS-Things-master/components/linksdk/components/ota/ |
A D | ota_md5.c | 251 uint32_t high, low; in utils_md5_finish() local 277 high = (ctx->total[0] >> 29) in utils_md5_finish() 282 PUT_UINT32_LE(high, ctx->buffer, 60); in utils_md5_finish()
|
/AliOS-Things-master/components/ble_host/bt_host/host/ |
A D | at.c | 499 bt_u32_t low, high; in at_list_get_range() local 516 ret = at_get_number(at, &high); in at_list_get_range() 522 *max = high; in at_list_get_range()
|
/AliOS-Things-master/components/py_engine/engine/lib/mbedtls_errors/ |
A D | error.fmt | 52 // Table of high level error codes 137 // If high level code is present, make a concatenation between both error strings.
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/experimental/mlir/testing/op_tests/ |
A D | is_finite.py | 54 result.append(np.random.randint(low=0, high=dim))
|
/AliOS-Things-master/components/linksdk/core/utils/ |
A D | core_sha256.c | 228 uint32_t high, low; in core_sha256_finish() local 231 high = (ctx->total[0] >> 29) in core_sha256_finish() 235 PUT_UINT32_BE(high, msglen, 0); in core_sha256_finish()
|
/AliOS-Things-master/components/linkkit/infra/ |
A D | infra_md5.c | 257 uint32_t high, low; in utils_md5_finish() local 260 high = (ctx->total[0] >> 29) | (ctx->total[1] << 3); in utils_md5_finish() 264 IOT_MD5_PUT_UINT32_LE(high, msglen, 4); in utils_md5_finish()
|