/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/micro/kernels/ |
A D | ceil.cc | 26 namespace ceil { namespace 66 /*prepare=*/ceil::Prepare, in Register_CEIL() 67 /*invoke=*/ceil::Eval, in Register_CEIL()
|
A D | strided_slice.cc | 109 int32_t dim_shape = std::ceil((end - begin) / static_cast<float>(stride)); in CheckOutputSize()
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/examples/ |
A D | pi_bigfloat.js | 41 n = BigInt(Math.ceil(BigFloatEnv.prec / CHUD_BITS_PER_TERM)) + 10n; 59 n_bits = Math.ceil(n_digits * Math.log2(10));
|
A D | pi_bigint.js | 83 n = BigInt(Math.ceil(Number(prec) / CHUD_BITS_PER_TERM)) + 10n; 100 n_bits = BigInt(Math.ceil(n_digits * Math.log2(10))) + 32n;
|
A D | pi_bigdecimal.js | 42 n = BigInt(Math.ceil(prec / CHUD_DIGITS_PER_TERM)) + 10n;
|
/AliOS-Things-master/components/py_engine/tests/float/ |
A D | math_fun_intbig.py | 9 for fun in (math.ceil, math.floor, math.trunc):
|
A D | math_fun_int.py | 9 for fun in (math.ceil, math.floor, math.trunc):
|
A D | math_domain.py | 15 ("ceil", math.ceil, ()),
|
A D | math_fun.py | 32 ("ceil", ceil, test_values),
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/kernels/internal/ |
A D | test_util.h | 94 auto left_it = base_it + std::ceil(0.5 * depth * (1.0 - middle_proportion)); in FillRandomSkyscraper() 96 base_it + std::ceil(0.5 * depth * (1.0 + middle_proportion)); in FillRandomSkyscraper()
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/kernels/internal/reference/ |
A D | ceil.h | 31 output_data[i] = std::ceil(input_data[i]); in Ceil()
|
A D | resize_bilinear.h | 43 std::min(static_cast<int32_t>(std::ceil(*scaled_value)), input_size - 1); in ComputeInterpolationValues()
|
/AliOS-Things-master/components/py_engine/engine/lib/libm_dbl/ |
A D | ceil.c | 10 double ceil(double x) in ceil() function
|
/AliOS-Things-master/components/amp-utility/python/ |
A D | math2.py | 57 def ceil(x): function
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/tools/ |
A D | tiff2ps.c | 730 *ximages = (int)ceil((scale * imagewidth) / (pagewidth - overlap)); in get_subimage_count() 733 … *yimages = (int)ceil((scale * imageheight) / (splitheight - overlap)); /* Max vert pages needed */ in get_subimage_count() 738 … *ximages = (int)ceil((scale * imagewidth) / (pagewidth - overlap)); /* Max horz pages needed */ in get_subimage_count() 750 …*ximages = (int)ceil((scale * imagewidth) / (splitwidth - overlap)); /* Max horz pages needed */ in get_subimage_count() 752 … *yimages = (int)ceil((scale * imageheight) / (pageheight - overlap)); /* Max vert pages needed */ in get_subimage_count() 760 … *yimages = (int)ceil((scale * imageheight) / (pageheight - overlap)); /* Max vert pages needed */ in get_subimage_count() 777 … *yimages = (int)ceil((scale * imagewidth) / (splitheight - overlap)); /* Max vert pages needed */ in get_subimage_count() 779 … *ximages = (int)ceil((scale * imageheight) / (pagewidth - overlap)); /* Max horz pages needed */ in get_subimage_count() 787 …*ximages = (int)ceil((scale * imageheight) / (pagewidth - overlap)); /* Max horz pages needed */ in get_subimage_count() 799 … *yimages = (int)ceil((scale * imagewidth) / (pageheight - overlap)); /* Max vert pages needed */ in get_subimage_count() [all …]
|
/AliOS-Things-master/hardware/chip/rtl872xd/release/aos_burn_tool/ |
A D | ymodem.py | 72 self._task_packets = math.ceil(data_size / 128) 115 self._task_packets = math.ceil(data_size / 128)
|
/AliOS-Things-master/hardware/chip/haas1000/release/aos_burn_tool/ |
A D | ymodem.py | 72 self._task_packets = math.ceil(data_size / 1024) 115 self._task_packets = math.ceil(data_size / 1024)
|
/AliOS-Things-master/components/py_engine/engine/tools/ |
A D | ymodemfile.py | 79 self._task_packets = math.ceil(data_size / 1024) 122 self._task_packets = math.ceil(data_size / 1024)
|
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | modmath.c | 161 MATH_FUN_1_TO_INT(ceil, ceil) in MATH_FUN_2()
|
/AliOS-Things-master/components/SDL2/src/video/winrt/ |
A D | SDL_winrtpointerinput.cpp | 126 return (int)ceil(arg - 0.5f); in _lround()
|
/AliOS-Things-master/solutions/tflite_micro_speech_demo/micro_speech/train/speech_commands/ |
A D | input_data.py | 310 silence_size = int(math.ceil(set_size * silence_percentage / 100)) 318 unknown_size = int(math.ceil(set_size * unknown_percentage / 100))
|
A D | generate_streaming_test_wav.py | 113 math.ceil(output_audio_sample_count / background_segment_stride_samples))
|
/AliOS-Things-master/components/freetype/src/tools/ftrandom/ |
A D | ftrandom.c | 401 return error_count + ceil( error_fraction * item->len ); in getErrorCnt()
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/tests/ |
A D | test_bignum.js | 202 assert(BigFloat.ceil(2.5l) === 3l);
|
/AliOS-Things-master/components/amp/jslib/src/ |
A D | repl.js | 722 n_rows = Math.ceil(tab.length / n_cols); 1156 prec1 = Math.ceil(parseFloat(param) * log2_10);
|