Home
last modified time | relevance | path

Searched refs:INT16_MAX (Results 1 - 25 of 97) sorted by relevance

1234

/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/cpp/util/
H A DWaveFileWriter.cpp109 float temp = (INT16_MAX * value) + 0.5 - INT16_MIN; in writePCM16()
111 if (sample > INT16_MAX) { in writePCM16()
112 sample = INT16_MAX; in writePCM16()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/build/Windows/include/llvm/Support/
H A DDataTypes.h86 #define INT16_MAX 32767 macro
124 #ifndef INT16_MAX
125 #define INT16_MAX 32767 macro
/third_party/mesa3d/src/amd/compiler/tests/
H A Dtest_assembler.cpp78 for (unsigned i = 0; i < INT16_MAX + 1; i++)
109 for (unsigned i = 0; i < INT16_MAX + 1; i++)
130 for (unsigned i = 0; i < INT16_MAX + 1; i++)
157 for (unsigned i = 0; i < INT16_MAX + 1; i++)
192 for (unsigned i = 0; i < INT16_MAX + 1; i++)
212 for (unsigned i = 0; i < INT16_MAX + 1; i++)
/third_party/ffmpeg/libavfilter/
H A Dvf_atadenoise.c85 { "0s", "set sigma for 1st plane", OFFSET(sigma[0]), AV_OPT_TYPE_FLOAT, {.dbl=INT16_MAX}, 0, INT16_MAX, FLAGS },
86 { "1s", "set sigma for 2nd plane", OFFSET(sigma[1]), AV_OPT_TYPE_FLOAT, {.dbl=INT16_MAX}, 0, INT16_MAX, FLAGS },
87 { "2s", "set sigma for 3rd plane", OFFSET(sigma[2]), AV_OPT_TYPE_FLOAT, {.dbl=INT16_MAX}, 0, INT16_MAX, FLAGS },
403 if (depth == 8 && s->sigma[p] == INT16_MAX) in config_input()
405 else if (s->sigma[p] == INT16_MAX) in config_input()
407 else if (depth == 8 && s->sigma[p] < INT16_MAX) in config_input()
409 else if (s->sigma[p] < INT16_MAX) in config_input()
[all...]
H A Davf_showwaves.c187 return height/2 - av_rescale(sample, height/2, INT16_MAX); in get_lin_h()
192 return av_rescale(FFABS(sample), height, INT16_MAX); in get_lin_h2()
197 return height/2 - FFSIGN(sample) * (log10(1 + FFABS(sample)) * (height/2) / log10(1 + INT16_MAX)); in get_log_h()
202 return log10(1 + FFABS(sample)) * height / log10(1 + INT16_MAX); in get_log_h2()
207 return height/2 - FFSIGN(sample) * (sqrt(FFABS(sample)) * (height/2) / sqrt(INT16_MAX)); in get_sqrt_h()
212 return sqrt(FFABS(sample)) * height / sqrt(INT16_MAX); in get_sqrt_h2()
217 return height/2 - FFSIGN(sample) * (cbrt(FFABS(sample)) * (height/2) / cbrt(INT16_MAX)); in get_cbrt_h()
222 return cbrt(FFABS(sample)) * height / cbrt(INT16_MAX); in get_cbrt_h2()
/third_party/ffmpeg/libavfilter/x86/
H A Dvf_atadenoise_init.c42 if (ARCH_X86_64 && EXTERNAL_SSE4(cpu_flags) && depth <= 8 && algorithm == PARALLEL && sigma[p] == INT16_MAX) { in ff_atadenoise_init_x86()
46 if (ARCH_X86_64 && EXTERNAL_SSE4(cpu_flags) && depth <= 8 && algorithm == SERIAL && sigma[p] == INT16_MAX) { in ff_atadenoise_init_x86()
/third_party/node/deps/uv/include/uv/
H A Dstdint-msvc2008.h135 #define INT16_MAX _I16_MAX macro
149 #define INT_LEAST16_MAX INT16_MAX
163 #define INT_FAST16_MAX INT16_MAX
/third_party/ffmpeg/libavcodec/
H A Dopus_metadata_bsf.c45 AV_OPT_TYPE_INT, { .i64 = 0 }, -(INT16_MAX + 1), INT16_MAX, .flags = FLAGS },
H A Dqsvenc_h264.c143 { "int_ref_qp_delta", "QP difference for the refresh MBs", OFFSET(qsv.int_ref_qp_delta), AV_OPT_TYPE_INT, { .i64 = INT16_MIN }, INT16_MIN, INT16_MAX, VE },
145 { "int_ref_cycle_dist", "Distance between the beginnings of the intra-refresh cycles in frames", OFFSET(qsv.int_ref_cycle_dist), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT16_MAX, VE },
/third_party/openssl/ohos_lite/include/internal/
H A Dnumbers.h45 # ifndef INT16_MAX
47 # define INT16_MAX __MAXINT__(int16_t) macro
/third_party/ffmpeg/libavformat/
H A Dnistspheredec.c94 if (st->codecpar->ch_layout.nb_channels <= 0 || st->codecpar->ch_layout.nb_channels > INT16_MAX) in nist_read_header()
115 if (bps > INT16_MAX/8U) in nist_read_header()
121 if (st->codecpar->bits_per_coded_sample <= 0 || st->codecpar->bits_per_coded_sample > INT16_MAX) in nist_read_header()
/third_party/node/deps/openssl/openssl/include/internal/
H A Dnumbers.h46 # ifndef INT16_MAX
48 # define INT16_MAX __MAXINT__(int16_t) macro
/third_party/openssl/include/internal/
H A Dnumbers.h46 # ifndef INT16_MAX
48 # define INT16_MAX __MAXINT__(int16_t) macro
/third_party/ffmpeg/compat/
H A Dw32dlfcn.h37 path_size = path_size ? FFMIN(2 * path_size, INT16_MAX + 1) : MAX_PATH; in get_module_filename()
48 } while (path_len && path_size <= INT16_MAX && path_size <= path_len); in get_module_filename()
/third_party/icu/icu4c/source/common/unicode/
H A Dumachine.h202 #ifndef INT16_MAX
204 # define INT16_MAX ((int16_t)(32767)) macro
/third_party/musl/porting/liteos_m/kernel/include/
H A Dstdint.h44 #define INT16_MAX (0x7fff) macro
65 #define INT_LEAST16_MAX INT16_MAX
/third_party/musl/porting/liteos_m/user/include/
H A Dstdint.h44 #define INT16_MAX (0x7fff) macro
65 #define INT_LEAST16_MAX INT16_MAX
/third_party/musl/porting/liteos_a/kernel/include/
H A Dstdint.h44 #define INT16_MAX (0x7fff) macro
65 #define INT_LEAST16_MAX INT16_MAX
/third_party/musl/porting/uniproton/kernel/include/
H A Dstdint.h44 #define INT16_MAX (0x7fff) macro
65 #define INT_LEAST16_MAX INT16_MAX
/third_party/node/deps/icu-small/source/common/unicode/
H A Dumachine.h180 #ifndef INT16_MAX
182 # define INT16_MAX ((int16_t)(32767)) macro
/third_party/musl/include/
H A Dstdint.h44 #define INT16_MAX (0x7fff) macro
65 #define INT_LEAST16_MAX INT16_MAX
/third_party/skia/third_party/externals/icu/source/common/unicode/
H A Dumachine.h202 #ifndef INT16_MAX
204 # define INT16_MAX ((int16_t)(32767)) macro
/third_party/skia/src/core/
H A DSkDraw_text.cpp32 return !(gt(position.fX, INT_MAX - (INT16_MAX + SkTo<int>(UINT16_MAX))) || in check_glyph_position()
34 gt(position.fY, INT_MAX - (INT16_MAX + SkTo<int>(UINT16_MAX))) || in check_glyph_position()
/third_party/ffmpeg/libavcodec/tests/
H A Diirfilter.c44 x[i] = lrint(0.75 * INT16_MAX * sin(0.5 * M_PI * i * i / SIZE)); in main()
/third_party/skia/third_party/externals/oboe/src/flowgraph/
H A DSinkI16.cpp51 *shortData++ = std::min(INT16_MAX, std::max(INT16_MIN, n)); // clip in read()

Completed in 19 milliseconds

1234