Home
last modified time | relevance | path

Searched refs:high (Results 1 – 25 of 89) sorted by relevance

1234

/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/soc/realtek/amebad/swlib/string/
A Dstrtod.c112 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 Dasync_for2.py22 def __init__(self, high): argument
25 self.high = high
34 if self.cur < self.high:
/AliOS-Things-master/components/SDL2/src/libm/
A Ds_fabs.c24 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 De_rem_pio2.c114 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 Def_rem_pio2.c157 __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 Ddrv_rtc_maxim_ds1307.c99 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 Dbasic_math_functions.h707 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 Dbasic_math_functions.h707 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 DCONTRIBUTING.md3 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 Dlibregexp.c179 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 DWelcome.txt2 <your home directory>/Library/Frameworks if your access privileges are not high enough.
/AliOS-Things-master/components/freetype/src/tools/ftrandom/
A Dftrandom.c407 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 Dtif_aux.c322 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 Daos_osdep.c57 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 DFILES1 api/ - The code for the high-level wrapper API. Not needed if
/AliOS-Things-master/components/mqtt/example/
A Daiot_mqtt_sign.c299 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 Dmd4.c247 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 Dmd5.c266 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 Dpin.py24 p.high()
/AliOS-Things-master/components/linksdk/components/ota/
A Dota_md5.c251 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 Dat.c499 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 Derror.fmt52 // 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 Dis_finite.py54 result.append(np.random.randint(low=0, high=dim))
/AliOS-Things-master/components/linksdk/core/utils/
A Dcore_sha256.c228 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 Dinfra_md5.c257 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()

Completed in 47 milliseconds

1234