/aosp_15_r20/external/jemalloc_new/include/jemalloc/internal/ |
H A D | smoothstep.h | 30 /* STEP(step, h, x, y) */ \ 31 STEP( 1, UINT64_C(0x0000000000000014), 0.005, 0.000001240643750) \ 32 STEP( 2, UINT64_C(0x00000000000000a5), 0.010, 0.000009850600000) \ 33 STEP( 3, UINT64_C(0x0000000000000229), 0.015, 0.000032995181250) \ 34 STEP( 4, UINT64_C(0x0000000000000516), 0.020, 0.000077619200000) \ 35 STEP( 5, UINT64_C(0x00000000000009dc), 0.025, 0.000150449218750) \ 36 STEP( 6, UINT64_C(0x00000000000010e8), 0.030, 0.000257995800000) \ 37 STEP( 7, UINT64_C(0x0000000000001aa4), 0.035, 0.000406555756250) \ 38 STEP( 8, UINT64_C(0x0000000000002777), 0.040, 0.000602214400000) \ 39 STEP( 9, UINT64_C(0x00000000000037c2), 0.045, 0.000850847793750) \ [all …]
|
/aosp_15_r20/external/libvpx/vpx_dsp/ |
H A D | fwd_txfm.c | 30 tran_high_t step[4]; // canbe16 in vpx_fdct4x4_c() local 52 step[0] = in_high[0] + in_high[3]; in vpx_fdct4x4_c() 53 step[1] = in_high[1] + in_high[2]; in vpx_fdct4x4_c() 54 step[2] = in_high[1] - in_high[2]; in vpx_fdct4x4_c() 55 step[3] = in_high[0] - in_high[3]; in vpx_fdct4x4_c() 56 temp1 = (step[0] + step[1]) * cospi_16_64; in vpx_fdct4x4_c() 57 temp2 = (step[0] - step[1]) * cospi_16_64; in vpx_fdct4x4_c() 60 temp1 = step[2] * cospi_24_64 + step[3] * cospi_8_64; in vpx_fdct4x4_c() 61 temp2 = -step[2] * cospi_8_64 + step[3] * cospi_24_64; in vpx_fdct4x4_c() 127 // fdct4(step, step); in vpx_fdct8x8_c() [all …]
|
/aosp_15_r20/build/make/ |
H A D | CleanSpec.mk | 17 # a file or delete some intermediate files, add a clean step to the end 22 # $(call add-clean-step, touch -c external/sqlite/sqlite3.h) 23 # $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/STATIC_LIBRARIES/libz_intermediates) 35 # touch step and add it to the end of the list. 42 #$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/AndroidTests_intermediates) 43 #$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/core_intermediates) 44 #$(call add-clean-step, find $(OUT_DIR) -type f -name "IGTalkSession*" -print0 | xargs -0 rm -f) 45 #$(call add-clean-step, rm -rf $(PRODUCT_OUT)/data/*) 47 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS) 48 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/APPS) [all …]
|
/aosp_15_r20/build/ |
D | CleanSpec.mk | 17 # a file or delete some intermediate files, add a clean step to the end 22 # $(call add-clean-step, touch -c external/sqlite/sqlite3.h) 23 # $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/STATIC_LIBRARIES/libz_intermediates) 35 # touch step and add it to the end of the list. 42 #$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/AndroidTests_intermediates) 43 #$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/core_intermediates) 44 #$(call add-clean-step, find $(OUT_DIR) -type f -name "IGTalkSession*" -print0 | xargs -0 rm -f) 45 #$(call add-clean-step, rm -rf $(PRODUCT_OUT)/data/*) 47 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS) 48 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/APPS) [all …]
|
/aosp_15_r20/external/ComputeLibrary/cl_kernels/ |
H A D | tile_helpers.hembed | 151 #define UNROLL_INCR(idx, step, macro) idx += (step); (macro) 153 #define LOOP_UNROLLING_1(idx, step, macro) (macro) 154 #define LOOP_UNROLLING_2(idx, step, macro) LOOP_UNROLLING_1(idx, step, macro); UNROLL_INCR(idx, ste… 155 #define LOOP_UNROLLING_3(idx, step, macro) LOOP_UNROLLING_2(idx, step, macro); UNROLL_INCR(idx, ste… 156 #define LOOP_UNROLLING_4(idx, step, macro) LOOP_UNROLLING_3(idx, step, macro); UNROLL_INCR(idx, ste… 157 #define LOOP_UNROLLING_5(idx, step, macro) LOOP_UNROLLING_4(idx, step, macro); UNROLL_INCR(idx, ste… 158 #define LOOP_UNROLLING_6(idx, step, macro) LOOP_UNROLLING_5(idx, step, macro); UNROLL_INCR(idx, ste… 159 #define LOOP_UNROLLING_7(idx, step, macro) LOOP_UNROLLING_6(idx, step, macro); UNROLL_INCR(idx, ste… 160 #define LOOP_UNROLLING_8(idx, step, macro) LOOP_UNROLLING_7(idx, step, macro); UNROLL_INCR(idx, ste… 161 #define LOOP_UNROLLING_9(idx, step, macro) LOOP_UNROLLING_8(idx, step, macro); UNROLL_INCR(idx, ste… [all …]
|
/aosp_15_r20/external/coreboot/src/lib/ |
H A D | reg_script.c | 50 const struct reg_script *step) in reg_script_set_step() argument 52 ctx->step = step; in reg_script_set_step() 58 return ctx->step; in reg_script_get_step() 67 const struct reg_script *step = reg_script_get_step(ctx); in reg_script_get_resource() 71 if (res != NULL && res->index == step->res_index) in reg_script_get_resource() 74 res = find_resource(ctx->dev, step->res_index); in reg_script_get_resource() 82 const struct reg_script *step = reg_script_get_step(ctx); in reg_script_read_pci() local 84 switch (step->size) { in reg_script_read_pci() 86 return pci_read_config8(ctx->dev, step->reg); in reg_script_read_pci() 88 return pci_read_config16(ctx->dev, step->reg); in reg_script_read_pci() [all …]
|
/aosp_15_r20/external/oj-libjdwp/src/share/back/ |
H A D | stepControl.c | 53 * They usually require multiple events step, and otherwise, before they 54 * complete. While a step request is pending, we may need to temporarily 57 * events. So, for step events only, we directly enable and disable stepping. 58 * This is safe because there can only ever be one pending step request 71 EXIT_ERROR(error, "enabling single step"); in enableStepping() 85 EXIT_ERROR(error, "disabling single step"); in disableStepping() 166 initState(JNIEnv *env, jthread thread, StepRequest *step) in initState() argument 173 step->fromLine = -1; in initState() 174 step->fromNative = JNI_FALSE; in initState() 175 step->frameExited = JNI_FALSE; in initState() [all …]
|
/aosp_15_r20/frameworks/base/ |
H A D | CleanSpec.mk | 17 # a file or delete some intermediate files, add a clean step to the end 22 # $(call add-clean-step, touch -c external/sqlite/sqlite3.h) 23 # $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/STATIC_LIBRARIES/libz_intermediates) 35 # touch step and add it to the end of the list. 42 #$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/AndroidTests_intermediates) 43 #$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/core_intermediates) 44 #$(call add-clean-step, find $(OUT_DIR) -type f -name "IGTalkSession*" -print0 | xargs -0 rm -f) 45 #$(call add-clean-step, rm -rf $(PRODUCT_OUT)/data/*) 46 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework_intermediates/s… 47 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework_intermediates/s… [all …]
|
/aosp_15_r20/external/ComputeLibrary/src/core/CL/cl_kernels/ |
H A D | tile_helpers.h | 194 #define UNROLL_INCR(idx, step, macro) idx += (step); (macro) argument 196 #define LOOP_UNROLLING_1(idx, step, macro) (macro) argument 197 #define LOOP_UNROLLING_2(idx, step, macro) LOOP_UNROLLING_1(idx, step, macro); UNROLL_INCR(idx, ste… argument 198 #define LOOP_UNROLLING_3(idx, step, macro) LOOP_UNROLLING_2(idx, step, macro); UNROLL_INCR(idx, ste… argument 199 #define LOOP_UNROLLING_4(idx, step, macro) LOOP_UNROLLING_3(idx, step, macro); UNROLL_INCR(idx, ste… argument 200 #define LOOP_UNROLLING_5(idx, step, macro) LOOP_UNROLLING_4(idx, step, macro); UNROLL_INCR(idx, ste… argument 201 #define LOOP_UNROLLING_6(idx, step, macro) LOOP_UNROLLING_5(idx, step, macro); UNROLL_INCR(idx, ste… argument 202 #define LOOP_UNROLLING_7(idx, step, macro) LOOP_UNROLLING_6(idx, step, macro); UNROLL_INCR(idx, ste… argument 203 #define LOOP_UNROLLING_8(idx, step, macro) LOOP_UNROLLING_7(idx, step, macro); UNROLL_INCR(idx, ste… argument 204 #define LOOP_UNROLLING_9(idx, step, macro) LOOP_UNROLLING_8(idx, step, macro); UNROLL_INCR(idx, ste… argument [all …]
|
/aosp_15_r20/device/google/comet/audio/comet/tuning/pts/ |
D | speaker_post_processing_volume_spec.xml | 4 <vol step="1">-55.3429,-56.462852</vol> 5 <vol step="2">-51.476486,-52.629974</vol> 6 <vol step="3">-47.429344,-48.577915</vol> 7 <vol step="4">-44.404938,-45.54104</vol> 8 <vol step="5">-41.34484,-42.47274</vol> 9 <vol step="6">-38.26381,-39.386524</vol> 10 <vol step="7">-35.17891,-36.297333</vol> 11 <vol step="8">-32.07109,-33.184692</vol> 12 <vol step="9">-30.30139,-31.407984</vol> 13 <vol step="10">-28.531578,-29.626408</vol> [all …]
|
/aosp_15_r20/external/ComputeLibrary/cl_kernels/nhwc/ |
H A D | transposed_convolution.clembed | 1397 #define UNROLL_INCR(idx, step, macro) idx += (step); (macro) 1399 #define LOOP_UNROLLING_1(idx, step, macro) (macro) 1400 #define LOOP_UNROLLING_2(idx, step, macro) LOOP_UNROLLING_1(idx, step, macro); UNROLL_INCR(idx, ste… 1401 #define LOOP_UNROLLING_3(idx, step, macro) LOOP_UNROLLING_2(idx, step, macro); UNROLL_INCR(idx, ste… 1402 #define LOOP_UNROLLING_4(idx, step, macro) LOOP_UNROLLING_3(idx, step, macro); UNROLL_INCR(idx, ste… 1403 #define LOOP_UNROLLING_5(idx, step, macro) LOOP_UNROLLING_4(idx, step, macro); UNROLL_INCR(idx, ste… 1404 #define LOOP_UNROLLING_6(idx, step, macro) LOOP_UNROLLING_5(idx, step, macro); UNROLL_INCR(idx, ste… 1405 #define LOOP_UNROLLING_7(idx, step, macro) LOOP_UNROLLING_6(idx, step, macro); UNROLL_INCR(idx, ste… 1406 #define LOOP_UNROLLING_8(idx, step, macro) LOOP_UNROLLING_7(idx, step, macro); UNROLL_INCR(idx, ste… 1407 #define LOOP_UNROLLING_9(idx, step, macro) LOOP_UNROLLING_8(idx, step, macro); UNROLL_INCR(idx, ste… [all …]
|
H A D | dwc_native_quantized_nhwc.clembed | 1397 #define UNROLL_INCR(idx, step, macro) idx += (step); (macro) 1399 #define LOOP_UNROLLING_1(idx, step, macro) (macro) 1400 #define LOOP_UNROLLING_2(idx, step, macro) LOOP_UNROLLING_1(idx, step, macro); UNROLL_INCR(idx, ste… 1401 #define LOOP_UNROLLING_3(idx, step, macro) LOOP_UNROLLING_2(idx, step, macro); UNROLL_INCR(idx, ste… 1402 #define LOOP_UNROLLING_4(idx, step, macro) LOOP_UNROLLING_3(idx, step, macro); UNROLL_INCR(idx, ste… 1403 #define LOOP_UNROLLING_5(idx, step, macro) LOOP_UNROLLING_4(idx, step, macro); UNROLL_INCR(idx, ste… 1404 #define LOOP_UNROLLING_6(idx, step, macro) LOOP_UNROLLING_5(idx, step, macro); UNROLL_INCR(idx, ste… 1405 #define LOOP_UNROLLING_7(idx, step, macro) LOOP_UNROLLING_6(idx, step, macro); UNROLL_INCR(idx, ste… 1406 #define LOOP_UNROLLING_8(idx, step, macro) LOOP_UNROLLING_7(idx, step, macro); UNROLL_INCR(idx, ste… 1407 #define LOOP_UNROLLING_9(idx, step, macro) LOOP_UNROLLING_8(idx, step, macro); UNROLL_INCR(idx, ste… [all …]
|
H A D | pooling_3d_layer.clembed | 1396 #define UNROLL_INCR(idx, step, macro) idx += (step); (macro) 1398 #define LOOP_UNROLLING_1(idx, step, macro) (macro) 1399 #define LOOP_UNROLLING_2(idx, step, macro) LOOP_UNROLLING_1(idx, step, macro); UNROLL_INCR(idx, ste… 1400 #define LOOP_UNROLLING_3(idx, step, macro) LOOP_UNROLLING_2(idx, step, macro); UNROLL_INCR(idx, ste… 1401 #define LOOP_UNROLLING_4(idx, step, macro) LOOP_UNROLLING_3(idx, step, macro); UNROLL_INCR(idx, ste… 1402 #define LOOP_UNROLLING_5(idx, step, macro) LOOP_UNROLLING_4(idx, step, macro); UNROLL_INCR(idx, ste… 1403 #define LOOP_UNROLLING_6(idx, step, macro) LOOP_UNROLLING_5(idx, step, macro); UNROLL_INCR(idx, ste… 1404 #define LOOP_UNROLLING_7(idx, step, macro) LOOP_UNROLLING_6(idx, step, macro); UNROLL_INCR(idx, ste… 1405 #define LOOP_UNROLLING_8(idx, step, macro) LOOP_UNROLLING_7(idx, step, macro); UNROLL_INCR(idx, ste… 1406 #define LOOP_UNROLLING_9(idx, step, macro) LOOP_UNROLLING_8(idx, step, macro); UNROLL_INCR(idx, ste… [all …]
|
H A D | scale.clembed | 1396 #define UNROLL_INCR(idx, step, macro) idx += (step); (macro) 1398 #define LOOP_UNROLLING_1(idx, step, macro) (macro) 1399 #define LOOP_UNROLLING_2(idx, step, macro) LOOP_UNROLLING_1(idx, step, macro); UNROLL_INCR(idx, ste… 1400 #define LOOP_UNROLLING_3(idx, step, macro) LOOP_UNROLLING_2(idx, step, macro); UNROLL_INCR(idx, ste… 1401 #define LOOP_UNROLLING_4(idx, step, macro) LOOP_UNROLLING_3(idx, step, macro); UNROLL_INCR(idx, ste… 1402 #define LOOP_UNROLLING_5(idx, step, macro) LOOP_UNROLLING_4(idx, step, macro); UNROLL_INCR(idx, ste… 1403 #define LOOP_UNROLLING_6(idx, step, macro) LOOP_UNROLLING_5(idx, step, macro); UNROLL_INCR(idx, ste… 1404 #define LOOP_UNROLLING_7(idx, step, macro) LOOP_UNROLLING_6(idx, step, macro); UNROLL_INCR(idx, ste… 1405 #define LOOP_UNROLLING_8(idx, step, macro) LOOP_UNROLLING_7(idx, step, macro); UNROLL_INCR(idx, ste… 1406 #define LOOP_UNROLLING_9(idx, step, macro) LOOP_UNROLLING_8(idx, step, macro); UNROLL_INCR(idx, ste… [all …]
|
H A D | normalization_layer.clembed | 1396 #define UNROLL_INCR(idx, step, macro) idx += (step); (macro) 1398 #define LOOP_UNROLLING_1(idx, step, macro) (macro) 1399 #define LOOP_UNROLLING_2(idx, step, macro) LOOP_UNROLLING_1(idx, step, macro); UNROLL_INCR(idx, ste… 1400 #define LOOP_UNROLLING_3(idx, step, macro) LOOP_UNROLLING_2(idx, step, macro); UNROLL_INCR(idx, ste… 1401 #define LOOP_UNROLLING_4(idx, step, macro) LOOP_UNROLLING_3(idx, step, macro); UNROLL_INCR(idx, ste… 1402 #define LOOP_UNROLLING_5(idx, step, macro) LOOP_UNROLLING_4(idx, step, macro); UNROLL_INCR(idx, ste… 1403 #define LOOP_UNROLLING_6(idx, step, macro) LOOP_UNROLLING_5(idx, step, macro); UNROLL_INCR(idx, ste… 1404 #define LOOP_UNROLLING_7(idx, step, macro) LOOP_UNROLLING_6(idx, step, macro); UNROLL_INCR(idx, ste… 1405 #define LOOP_UNROLLING_8(idx, step, macro) LOOP_UNROLLING_7(idx, step, macro); UNROLL_INCR(idx, ste… 1406 #define LOOP_UNROLLING_9(idx, step, macro) LOOP_UNROLLING_8(idx, step, macro); UNROLL_INCR(idx, ste… [all …]
|
H A D | direct_convolution3d.clembed | 1397 #define UNROLL_INCR(idx, step, macro) idx += (step); (macro) 1399 #define LOOP_UNROLLING_1(idx, step, macro) (macro) 1400 #define LOOP_UNROLLING_2(idx, step, macro) LOOP_UNROLLING_1(idx, step, macro); UNROLL_INCR(idx, ste… 1401 #define LOOP_UNROLLING_3(idx, step, macro) LOOP_UNROLLING_2(idx, step, macro); UNROLL_INCR(idx, ste… 1402 #define LOOP_UNROLLING_4(idx, step, macro) LOOP_UNROLLING_3(idx, step, macro); UNROLL_INCR(idx, ste… 1403 #define LOOP_UNROLLING_5(idx, step, macro) LOOP_UNROLLING_4(idx, step, macro); UNROLL_INCR(idx, ste… 1404 #define LOOP_UNROLLING_6(idx, step, macro) LOOP_UNROLLING_5(idx, step, macro); UNROLL_INCR(idx, ste… 1405 #define LOOP_UNROLLING_7(idx, step, macro) LOOP_UNROLLING_6(idx, step, macro); UNROLL_INCR(idx, ste… 1406 #define LOOP_UNROLLING_8(idx, step, macro) LOOP_UNROLLING_7(idx, step, macro); UNROLL_INCR(idx, ste… 1407 #define LOOP_UNROLLING_9(idx, step, macro) LOOP_UNROLLING_8(idx, step, macro); UNROLL_INCR(idx, ste… [all …]
|
H A D | channel_shuffle.clembed | 1396 #define UNROLL_INCR(idx, step, macro) idx += (step); (macro) 1398 #define LOOP_UNROLLING_1(idx, step, macro) (macro) 1399 #define LOOP_UNROLLING_2(idx, step, macro) LOOP_UNROLLING_1(idx, step, macro); UNROLL_INCR(idx, ste… 1400 #define LOOP_UNROLLING_3(idx, step, macro) LOOP_UNROLLING_2(idx, step, macro); UNROLL_INCR(idx, ste… 1401 #define LOOP_UNROLLING_4(idx, step, macro) LOOP_UNROLLING_3(idx, step, macro); UNROLL_INCR(idx, ste… 1402 #define LOOP_UNROLLING_5(idx, step, macro) LOOP_UNROLLING_4(idx, step, macro); UNROLL_INCR(idx, ste… 1403 #define LOOP_UNROLLING_6(idx, step, macro) LOOP_UNROLLING_5(idx, step, macro); UNROLL_INCR(idx, ste… 1404 #define LOOP_UNROLLING_7(idx, step, macro) LOOP_UNROLLING_6(idx, step, macro); UNROLL_INCR(idx, ste… 1405 #define LOOP_UNROLLING_8(idx, step, macro) LOOP_UNROLLING_7(idx, step, macro); UNROLL_INCR(idx, ste… 1406 #define LOOP_UNROLLING_9(idx, step, macro) LOOP_UNROLLING_8(idx, step, macro); UNROLL_INCR(idx, ste… [all …]
|
H A D | pooling_3d_layer_quantized.clembed | 1396 #define UNROLL_INCR(idx, step, macro) idx += (step); (macro) 1398 #define LOOP_UNROLLING_1(idx, step, macro) (macro) 1399 #define LOOP_UNROLLING_2(idx, step, macro) LOOP_UNROLLING_1(idx, step, macro); UNROLL_INCR(idx, ste… 1400 #define LOOP_UNROLLING_3(idx, step, macro) LOOP_UNROLLING_2(idx, step, macro); UNROLL_INCR(idx, ste… 1401 #define LOOP_UNROLLING_4(idx, step, macro) LOOP_UNROLLING_3(idx, step, macro); UNROLL_INCR(idx, ste… 1402 #define LOOP_UNROLLING_5(idx, step, macro) LOOP_UNROLLING_4(idx, step, macro); UNROLL_INCR(idx, ste… 1403 #define LOOP_UNROLLING_6(idx, step, macro) LOOP_UNROLLING_5(idx, step, macro); UNROLL_INCR(idx, ste… 1404 #define LOOP_UNROLLING_7(idx, step, macro) LOOP_UNROLLING_6(idx, step, macro); UNROLL_INCR(idx, ste… 1405 #define LOOP_UNROLLING_8(idx, step, macro) LOOP_UNROLLING_7(idx, step, macro); UNROLL_INCR(idx, ste… 1406 #define LOOP_UNROLLING_9(idx, step, macro) LOOP_UNROLLING_8(idx, step, macro); UNROLL_INCR(idx, ste… [all …]
|
H A D | winograd_input_transform.clembed | 1396 #define UNROLL_INCR(idx, step, macro) idx += (step); (macro) 1398 #define LOOP_UNROLLING_1(idx, step, macro) (macro) 1399 #define LOOP_UNROLLING_2(idx, step, macro) LOOP_UNROLLING_1(idx, step, macro); UNROLL_INCR(idx, ste… 1400 #define LOOP_UNROLLING_3(idx, step, macro) LOOP_UNROLLING_2(idx, step, macro); UNROLL_INCR(idx, ste… 1401 #define LOOP_UNROLLING_4(idx, step, macro) LOOP_UNROLLING_3(idx, step, macro); UNROLL_INCR(idx, ste… 1402 #define LOOP_UNROLLING_5(idx, step, macro) LOOP_UNROLLING_4(idx, step, macro); UNROLL_INCR(idx, ste… 1403 #define LOOP_UNROLLING_6(idx, step, macro) LOOP_UNROLLING_5(idx, step, macro); UNROLL_INCR(idx, ste… 1404 #define LOOP_UNROLLING_7(idx, step, macro) LOOP_UNROLLING_6(idx, step, macro); UNROLL_INCR(idx, ste… 1405 #define LOOP_UNROLLING_8(idx, step, macro) LOOP_UNROLLING_7(idx, step, macro); UNROLL_INCR(idx, ste… 1406 #define LOOP_UNROLLING_9(idx, step, macro) LOOP_UNROLLING_8(idx, step, macro); UNROLL_INCR(idx, ste… [all …]
|
/aosp_15_r20/external/ComputeLibrary/cl_kernels/nchw/ |
H A D | channel_shuffle.clembed | 1396 #define UNROLL_INCR(idx, step, macro) idx += (step); (macro) 1398 #define LOOP_UNROLLING_1(idx, step, macro) (macro) 1399 #define LOOP_UNROLLING_2(idx, step, macro) LOOP_UNROLLING_1(idx, step, macro); UNROLL_INCR(idx, ste… 1400 #define LOOP_UNROLLING_3(idx, step, macro) LOOP_UNROLLING_2(idx, step, macro); UNROLL_INCR(idx, ste… 1401 #define LOOP_UNROLLING_4(idx, step, macro) LOOP_UNROLLING_3(idx, step, macro); UNROLL_INCR(idx, ste… 1402 #define LOOP_UNROLLING_5(idx, step, macro) LOOP_UNROLLING_4(idx, step, macro); UNROLL_INCR(idx, ste… 1403 #define LOOP_UNROLLING_6(idx, step, macro) LOOP_UNROLLING_5(idx, step, macro); UNROLL_INCR(idx, ste… 1404 #define LOOP_UNROLLING_7(idx, step, macro) LOOP_UNROLLING_6(idx, step, macro); UNROLL_INCR(idx, ste… 1405 #define LOOP_UNROLLING_8(idx, step, macro) LOOP_UNROLLING_7(idx, step, macro); UNROLL_INCR(idx, ste… 1406 #define LOOP_UNROLLING_9(idx, step, macro) LOOP_UNROLLING_8(idx, step, macro); UNROLL_INCR(idx, ste… [all …]
|
H A D | normalization_layer.clembed | 1396 #define UNROLL_INCR(idx, step, macro) idx += (step); (macro) 1398 #define LOOP_UNROLLING_1(idx, step, macro) (macro) 1399 #define LOOP_UNROLLING_2(idx, step, macro) LOOP_UNROLLING_1(idx, step, macro); UNROLL_INCR(idx, ste… 1400 #define LOOP_UNROLLING_3(idx, step, macro) LOOP_UNROLLING_2(idx, step, macro); UNROLL_INCR(idx, ste… 1401 #define LOOP_UNROLLING_4(idx, step, macro) LOOP_UNROLLING_3(idx, step, macro); UNROLL_INCR(idx, ste… 1402 #define LOOP_UNROLLING_5(idx, step, macro) LOOP_UNROLLING_4(idx, step, macro); UNROLL_INCR(idx, ste… 1403 #define LOOP_UNROLLING_6(idx, step, macro) LOOP_UNROLLING_5(idx, step, macro); UNROLL_INCR(idx, ste… 1404 #define LOOP_UNROLLING_7(idx, step, macro) LOOP_UNROLLING_6(idx, step, macro); UNROLL_INCR(idx, ste… 1405 #define LOOP_UNROLLING_8(idx, step, macro) LOOP_UNROLLING_7(idx, step, macro); UNROLL_INCR(idx, ste… 1406 #define LOOP_UNROLLING_9(idx, step, macro) LOOP_UNROLLING_8(idx, step, macro); UNROLL_INCR(idx, ste… [all …]
|
H A D | scale.clembed | 1396 #define UNROLL_INCR(idx, step, macro) idx += (step); (macro) 1398 #define LOOP_UNROLLING_1(idx, step, macro) (macro) 1399 #define LOOP_UNROLLING_2(idx, step, macro) LOOP_UNROLLING_1(idx, step, macro); UNROLL_INCR(idx, ste… 1400 #define LOOP_UNROLLING_3(idx, step, macro) LOOP_UNROLLING_2(idx, step, macro); UNROLL_INCR(idx, ste… 1401 #define LOOP_UNROLLING_4(idx, step, macro) LOOP_UNROLLING_3(idx, step, macro); UNROLL_INCR(idx, ste… 1402 #define LOOP_UNROLLING_5(idx, step, macro) LOOP_UNROLLING_4(idx, step, macro); UNROLL_INCR(idx, ste… 1403 #define LOOP_UNROLLING_6(idx, step, macro) LOOP_UNROLLING_5(idx, step, macro); UNROLL_INCR(idx, ste… 1404 #define LOOP_UNROLLING_7(idx, step, macro) LOOP_UNROLLING_6(idx, step, macro); UNROLL_INCR(idx, ste… 1405 #define LOOP_UNROLLING_8(idx, step, macro) LOOP_UNROLLING_7(idx, step, macro); UNROLL_INCR(idx, ste… 1406 #define LOOP_UNROLLING_9(idx, step, macro) LOOP_UNROLLING_8(idx, step, macro); UNROLL_INCR(idx, ste… [all …]
|
H A D | winograd_input_transform.clembed | 1396 #define UNROLL_INCR(idx, step, macro) idx += (step); (macro) 1398 #define LOOP_UNROLLING_1(idx, step, macro) (macro) 1399 #define LOOP_UNROLLING_2(idx, step, macro) LOOP_UNROLLING_1(idx, step, macro); UNROLL_INCR(idx, ste… 1400 #define LOOP_UNROLLING_3(idx, step, macro) LOOP_UNROLLING_2(idx, step, macro); UNROLL_INCR(idx, ste… 1401 #define LOOP_UNROLLING_4(idx, step, macro) LOOP_UNROLLING_3(idx, step, macro); UNROLL_INCR(idx, ste… 1402 #define LOOP_UNROLLING_5(idx, step, macro) LOOP_UNROLLING_4(idx, step, macro); UNROLL_INCR(idx, ste… 1403 #define LOOP_UNROLLING_6(idx, step, macro) LOOP_UNROLLING_5(idx, step, macro); UNROLL_INCR(idx, ste… 1404 #define LOOP_UNROLLING_7(idx, step, macro) LOOP_UNROLLING_6(idx, step, macro); UNROLL_INCR(idx, ste… 1405 #define LOOP_UNROLLING_8(idx, step, macro) LOOP_UNROLLING_7(idx, step, macro); UNROLL_INCR(idx, ste… 1406 #define LOOP_UNROLLING_9(idx, step, macro) LOOP_UNROLLING_8(idx, step, macro); UNROLL_INCR(idx, ste… [all …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/numeric/odeint/include/boost/numeric/odeint/stepper/ |
D | controlled_runge_kutta.hpp | 116 // returns the decreased time step in decrease_step() 134 // returns the increased time step in increase_step() 199 * \brief Implements step size control for Runge-Kutta steppers with error 202 * This class implements the step size control for standard Runge-Kutta 263 * \brief Tries to perform one step. 265 * This method tries to do one step with step size dt. If the error estimate 266 * is to large, the step is rejected and the method returns fail and the 267 * step size dt is reduced. If the error estimate is acceptably small, the 268 * step is performed, success is returned and dt might be increased to make 269 * the steps as large as possible. This method also updates t if a step is [all …]
|
/aosp_15_r20/system/sepolicy/ |
H A D | CleanSpec.mk | 17 # a file or delete some intermediate files, add a clean step to the end 22 # $(call add-clean-step, touch -c external/sqlite/sqlite3.h) 23 # $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/STATIC_LIBRARIES/libz_intermediates) 35 # touch step and add it to the end of the list. 42 #$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/AndroidTests_intermediates) 43 #$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/core_intermediates) 44 #$(call add-clean-step, find $(OUT_DIR) -type f -name "IGTalkSession*" -print0 | xargs -0 rm -f) 45 #$(call add-clean-step, rm -rf $(PRODUCT_OUT)/data/*) 51 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/root/file_contexts) 52 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/recovery/root/file_contexts) [all …]
|