Home
last modified time | relevance | path

Searched refs:order (Results 1 - 25 of 951) sorted by relevance

12345678910>>...39

/third_party/ffmpeg/libavcodec/
H A Diirfilter.c38 int order; member
51 /// maximum supported filter order
57 int order, float cutoff_ratio, in butterworth_init_coeffs()
69 if (order & 1) { in butterworth_init_coeffs()
78 for (i = 1; i < (order >> 1) + 1; i++) in butterworth_init_coeffs()
79 c->cx[i] = c->cx[i - 1] * (order - i + 1LL) / i; in butterworth_init_coeffs()
83 for (i = 1; i <= order; i++) in butterworth_init_coeffs()
85 for (i = 0; i < order; i++) { in butterworth_init_coeffs()
87 double th = (i + (order >> 1) + 0.5) * M_PI / order; in butterworth_init_coeffs()
54 butterworth_init_coeffs(void *avc, struct FFIIRFilterCoeffs *c, enum IIRFilterMode filt_mode, int order, float cutoff_ratio, float stopband) butterworth_init_coeffs() argument
119 biquad_init_coeffs(void *avc, struct FFIIRFilterCoeffs *c, enum IIRFilterMode filt_mode, int order, float cutoff_ratio, float stopband) biquad_init_coeffs() argument
162 ff_iir_filter_init_coeffs(void *avc, enum IIRFilterType filt_type, enum IIRFilterMode filt_mode, int order, float cutoff_ratio, float stopband, float ripple) ff_iir_filter_init_coeffs() argument
201 ff_iir_filter_init_state(int order) ff_iir_filter_init_state() argument
[all...]
H A Daacenc_tns.c48 static inline int compress_coeffs(int *coef, int order, int c_bits) in compress_coeffs() argument
57 for (i = 0; i < order; i++) in compress_coeffs()
60 for (i = 0; i < order; i++) in compress_coeffs()
87 put_bits(&s->pb, 5 - 2 * is8, tns->order[i][filt]); in ff_aac_encode_tns_info()
88 if (!tns->order[i][filt]) in ff_aac_encode_tns_info()
92 tns->order[i][filt], c_bits); in ff_aac_encode_tns_info()
95 for (w = 0; w < tns->order[i][filt]; w++) in ff_aac_encode_tns_info()
106 int w, filt, m, i, top, order, bottom, start, end, size, inc; in ff_aac_apply_tns() local
115 order = tns->order[ in ff_aac_apply_tns()
147 quantize_coefs(double *coef, int *idx, float *lpc, int order, int c_bits) quantize_coefs() argument
171 const int order = is8 ? 7 : s->profile == FF_PROFILE_AAC_LOW ? 12 : TNS_MAX_ORDER; ff_aac_search_for_tns() local
[all...]
H A Dcngdec.c36 int order; member
64 p->order = 12; in cng_decode_init()
66 p->refl_coef = av_calloc(p->order, sizeof(*p->refl_coef)); in cng_decode_init()
67 p->target_refl_coef = av_calloc(p->order, sizeof(*p->target_refl_coef)); in cng_decode_init()
68 p->lpc_coef = av_calloc(p->order, sizeof(*p->lpc_coef)); in cng_decode_init()
69 p->filter_out = av_calloc(avctx->frame_size + p->order, in cng_decode_init()
82 static void make_lpc_coefs(float *lpc, const float *refl, int order) in make_lpc_coefs() argument
89 for (m = 0; m < order; m++) { in make_lpc_coefs()
96 memcpy(lpc, cur, sizeof(*lpc) * order); in make_lpc_coefs()
118 memset(p->target_refl_coef, 0, p->order * sizeo in cng_decode_frame()
[all...]
/third_party/elfutils/lib/
H A Dstdatomic-fbsd.h273 #define atomic_exchange_explicit(object, desired, order) \
274 __c11_atomic_exchange(object, desired, order)
275 #define atomic_fetch_add_explicit(object, operand, order) \
276 __c11_atomic_fetch_add(object, operand, order)
277 #define atomic_fetch_and_explicit(object, operand, order) \
278 __c11_atomic_fetch_and(object, operand, order)
279 #define atomic_fetch_or_explicit(object, operand, order) \
280 __c11_atomic_fetch_or(object, operand, order)
281 #define atomic_fetch_sub_explicit(object, operand, order) \
282 __c11_atomic_fetch_sub(object, operand, order)
[all...]
/third_party/libexif/libexif/
H A Dexif-utils.c87 exif_get_sshort (const unsigned char *buf, ExifByteOrder order) in exif_get_sshort() argument
90 switch (order) { in exif_get_sshort()
102 exif_get_short (const unsigned char *buf, ExifByteOrder order) in exif_get_short() argument
104 return (exif_get_sshort (buf, order) & 0xffff); in exif_get_short()
108 exif_set_sshort (unsigned char *b, ExifByteOrder order, ExifSShort value) in exif_set_sshort() argument
111 switch (order) { in exif_set_sshort()
124 exif_set_short (unsigned char *b, ExifByteOrder order, ExifShort value) in exif_set_short() argument
126 exif_set_sshort (b, order, value); in exif_set_short()
130 exif_get_slong (const unsigned char *b, ExifByteOrder order) in exif_get_slong() argument
133 switch (order) { in exif_get_slong()
145 exif_set_slong(unsigned char *b, ExifByteOrder order, ExifSLong value) exif_set_slong() argument
165 exif_get_long(const unsigned char *buf, ExifByteOrder order) exif_get_long() argument
171 exif_set_long(unsigned char *b, ExifByteOrder order, ExifLong value) exif_set_long() argument
177 exif_get_srational(const unsigned char *buf, ExifByteOrder order) exif_get_srational() argument
188 exif_get_rational(const unsigned char *buf, ExifByteOrder order) exif_get_rational() argument
199 exif_set_rational(unsigned char *buf, ExifByteOrder order, ExifRational value) exif_set_rational() argument
208 exif_set_srational(unsigned char *buf, ExifByteOrder order, ExifSRational value) exif_set_srational() argument
[all...]
H A Dexif-utils.h30 #include <libexif/exif-byte-order.h>
71 * \param[in] order byte order of raw value
74 ExifShort exif_get_short (const unsigned char *b, ExifByteOrder order);
79 * \param[in] order byte order of raw value
82 ExifSShort exif_get_sshort (const unsigned char *b, ExifByteOrder order);
87 * \param[in] order byte order of raw value
90 ExifLong exif_get_long (const unsigned char *b, ExifByteOrder order);
[all...]
/third_party/typescript/tests/baselines/reference/
H A DdestructuringEvaluationOrder(target=es5).js4 let order = (n: any): any => trace.push(n);
6 // order(0) should evaluate before order(1) because the first element is undefined
7 let [{ [order(1)]: x } = order(0)] = [];
9 // order(0) should not evaluate because the first element is defined
10 let [{ [order(1)]: y } = order(0)] = [{}];
12 // order(0) should evaluate first (destructuring of object literal {})
13 // order(
38 var order = function (n) { return trace.push(n); }; global() function
[all...]
/third_party/node/deps/icu-small/source/i18n/unicode/
H A Dcoleitr.h71 * The key of a character, is an integer composed of primary order(short),
72 * secondary order(char), and tertiary order(char). Java strictly defines the
87 * int32_t order = c->next(success);
89 * order = c->previous(success);
96 * The method next() returns the collation order of the next character based on
98 * collation order of the previous character based on the comparison level of
105 * Hence at the next call of next() or previous(), the first or last collation order,
106 * or collation order at the specified position will be returned. If a change of
112 * Character based on the comparison level of the collator. A collation order
385 primaryOrder(int32_t order) primaryOrder() argument
390 secondaryOrder(int32_t order) secondaryOrder() argument
395 tertiaryOrder(int32_t order) tertiaryOrder() argument
400 isIgnorable(int32_t order) isIgnorable() argument
[all...]
/third_party/icu/icu4c/source/i18n/unicode/
H A Dcoleitr.h71 * The key of a character, is an integer composed of primary order(short),
72 * secondary order(char), and tertiary order(char). Java strictly defines the
87 * int32_t order = c->next(success);
89 * order = c->previous(success);
96 * The method next() returns the collation order of the next character based on
98 * collation order of the previous character based on the comparison level of
105 * Hence at the next call of next() or previous(), the first or last collation order,
106 * or collation order at the specified position will be returned. If a change of
112 * Character based on the comparison level of the collator. A collation order
385 primaryOrder(int32_t order) primaryOrder() argument
390 secondaryOrder(int32_t order) secondaryOrder() argument
395 tertiaryOrder(int32_t order) tertiaryOrder() argument
400 isIgnorable(int32_t order) isIgnorable() argument
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/unicode/
H A Dcoleitr.h71 * The key of a character, is an integer composed of primary order(short),
72 * secondary order(char), and tertiary order(char). Java strictly defines the
87 * int32_t order = c->next(success);
89 * order = c->previous(success);
96 * The method next() returns the collation order of the next character based on
98 * collation order of the previous character based on the comparison level of
105 * Hence at the next call of next() or previous(), the first or last collation order,
106 * or collation order at the spefcifieid position will be returned. If a change of
112 * Character based on the comparison level of the collator. A collation order
385 primaryOrder(int32_t order) primaryOrder() argument
390 secondaryOrder(int32_t order) secondaryOrder() argument
395 tertiaryOrder(int32_t order) tertiaryOrder() argument
400 isIgnorable(int32_t order) isIgnorable() argument
[all...]
/third_party/node/test/fixtures/wpt/WebCryptoAPI/derive_bits_keys/
H A Dcfrg_curves_bits_fixtures.js23 { order: "0", vector : new Uint8Array([48, 42, 48, 5, 6, 3, 43, 101, 110, 3, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]) },
24 { order: "1", vector : new Uint8Array([48, 42, 48, 5, 6, 3, 43, 101, 110, 3, 33, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]) },
25 { order: "8", vector : new Uint8Array([48, 42, 48, 5, 6, 3, 43, 101, 110, 3, 33, 0, 224, 235, 122, 124, 59, 65, 184, 174, 22, 86, 227, 250, 241, 159, 196, 106, 218, 9, 141, 235, 156, 50, 177, 253, 134, 98, 5, 22, 95, 73, 184, 0]) },
26 { order: "p-1 (order 2)", vector : new Uint8Array([48, 42, 48, 5, 6, 3, 43, 101, 110, 3, 33, 0, 236, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 127]) },
27 { order: "p (=0, order 4)", vector : new Uint8Array([48, 42, 48, 5, 6, 3, 43, 101, 110, 3, 33, 0, 237, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 127]) },
28 { order: "p+1 (=1, order 1)", vector : new Uint8Array([48, 42, 48, 5, 6, 3, 43, 101, 110, 3, 33, 0, 238, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 127]) },
31 { order
[all...]
/third_party/skia/tests/
H A DPathOpsCubicReduceOrderTest.cpp66 int order; in DEF_TEST() local
114 order = reducer.reduce(cubic, SkReduceOrder::kAllow_Quadratics); in DEF_TEST()
115 if (order != 1) { in DEF_TEST()
116 SkDebugf("[%d] pointDegenerates order=%d\n", static_cast<int>(index), order); in DEF_TEST()
125 order = reducer.reduce(cubic, SkReduceOrder::kAllow_Quadratics); in DEF_TEST()
126 if (order == 1) { in DEF_TEST()
127 SkDebugf("[%d] notPointDegenerates order=%d\n", static_cast<int>(index), order); in DEF_TEST()
128 order in DEF_TEST()
[all...]
/third_party/ffmpeg/libavcodec/arm/
H A Dmlpdsp_init_arm.c44 #define DECLARE_PACK(order,channels,shift) \
45 int32_t ff_mlp_pack_output_##order##order_##channels##ch_##shift##shift_armv6(int32_t, uint16_t, int32_t (*)[], void *, uint8_t*, int8_t *, uint8_t, int);
46 #define ENUMERATE_PACK(order,channels,shift) \
47 ff_mlp_pack_output_##order##order_##channels##ch_##shift##shift_armv6,
48 #define PACK_CHANNELS(macro,order,channels) \
49 macro(order,channels,0) \
50 macro(order,channels,1) \
51 macro(order,channels,2) \
52 macro(order,channels,3) \
53 macro(order,channel
[all...]
/third_party/skia/third_party/externals/spirv-tools/test/opt/
H A Dcfg_test.cpp63 std::vector<uint32_t> order; in TEST_F() local
64 cfg->ForEachBlockInPostOrder(&*function->begin(), [&order](BasicBlock* bb) { in TEST_F()
65 order.push_back(bb->id()); in TEST_F()
69 EXPECT_THAT(order, ContainerEq(expected_result)); in TEST_F()
106 std::vector<uint32_t> order; in TEST_F() local
107 cfg->ForEachBlockInPostOrder(&*function->begin(), [&order](BasicBlock* bb) { in TEST_F()
108 order.push_back(bb->id()); in TEST_F()
113 EXPECT_THAT(order, AnyOf(ContainerEq(expected_result1), in TEST_F()
149 std::vector<uint32_t> order; in TEST_F() local
152 [&order](BasicBloc in TEST_F()
192 std::vector<uint32_t> order; TEST_F() local
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/
H A Dcfg_test.cpp63 std::vector<uint32_t> order; in TEST_F() local
64 cfg->ForEachBlockInPostOrder(&*function->begin(), [&order](BasicBlock* bb) { in TEST_F()
65 order.push_back(bb->id()); in TEST_F()
69 EXPECT_THAT(order, ContainerEq(expected_result)); in TEST_F()
106 std::vector<uint32_t> order; in TEST_F() local
107 cfg->ForEachBlockInPostOrder(&*function->begin(), [&order](BasicBlock* bb) { in TEST_F()
108 order.push_back(bb->id()); in TEST_F()
113 EXPECT_THAT(order, AnyOf(ContainerEq(expected_result1), in TEST_F()
149 std::vector<uint32_t> order; in TEST_F() local
152 [&order](BasicBloc in TEST_F()
192 std::vector<uint32_t> order; TEST_F() local
[all...]
/third_party/pulseaudio/speex/libspeexdsp/
H A Dscal.c79 int *order; member
102 st->order = speex_alloc(channels*sizeof(int)); in speex_decorrelate_new()
118 st->order[ch] = 10; in speex_decorrelate_new()
163 int order; in speex_decorrelate() local
169 order = st->order[ch]; in speex_decorrelate()
189 st->y[i] = alpha*(x[i-ALLPASS_ORDER+order]-beta*x[i-ALLPASS_ORDER+order-1])*st->vorbis_win[st->frame_size+i+order] in speex_decorrelate()
192 - beta*ring[ringID+1>=order in speex_decorrelate()
[all...]
/third_party/ffmpeg/libavutil/tests/
H A Dlls.c30 int i, order; in main() local
46 for (order = 0; order < 3; order++) { in main()
47 eval = m.evaluate_lls(&m, var + 1, order); in main()
48 printf("real:%9f order:%d pred:%9f var:%f coeffs:%f %9f %9f\n", in main()
49 var[0], order, eval, sqrt(m.variance[order] / (i + 1)), in main()
50 m.coeff[order][0], m.coeff[order][ in main()
[all...]
/third_party/python/Lib/
H A Dheapq.py205 # is the index of a leaf with a possibly out-of-order value. Restore the
327 its sort order.
349 for order, it in enumerate(map(iter, iterables)):
352 h_append([next(), order * direction, next])
359 value, order, next = s = h[0]
367 value, order, next = h[0]
372 for order, it in enumerate(map(iter, iterables)):
376 h_append([key(value), order * direction, value, next])
383 key_value, order, value, next = s = h[0]
392 key_value, order, valu
[all...]
/third_party/spirv-tools/test/opt/
H A Dcfg_test.cpp63 std::vector<uint32_t> order; in TEST_F() local
64 cfg->ForEachBlockInPostOrder(&*function->begin(), [&order](BasicBlock* bb) { in TEST_F()
65 order.push_back(bb->id()); in TEST_F()
69 EXPECT_THAT(order, ContainerEq(expected_result)); in TEST_F()
106 std::vector<uint32_t> order; in TEST_F() local
107 cfg->ForEachBlockInPostOrder(&*function->begin(), [&order](BasicBlock* bb) { in TEST_F()
108 order.push_back(bb->id()); in TEST_F()
113 EXPECT_THAT(order, AnyOf(ContainerEq(expected_result1), in TEST_F()
149 std::vector<uint32_t> order; in TEST_F() local
152 [&order](BasicBloc in TEST_F()
192 std::vector<uint32_t> order; TEST_F() local
310 std::list<BasicBlock*> order; TEST_F() local
[all...]
/third_party/libexif/libexif/olympus/
H A Dexif-mnote-data-olympus.c127 exif_set_short (*buf + 6, n->order, (ExifShort) 1); in exif_mnote_data_olympus_save()
141 exif_set_short (*buf + 8, n->order, (ExifShort) ( in exif_mnote_data_olympus_save()
142 (n->order == EXIF_BYTE_ORDER_INTEL) ? in exif_mnote_data_olympus_save()
145 exif_set_short (*buf + 10, n->order, (ExifShort) 3); in exif_mnote_data_olympus_save()
174 exif_set_short (*buf + 10, n->order, (ExifShort) ( in exif_mnote_data_olympus_save()
175 (n->order == EXIF_BYTE_ORDER_INTEL) ? in exif_mnote_data_olympus_save()
178 exif_set_short (*buf + 12, n->order, (ExifShort) 0x2A); in exif_mnote_data_olympus_save()
179 exif_set_long (*buf + 14, n->order, (ExifShort) 8); in exif_mnote_data_olympus_save()
184 exif_set_long (*buf + o2 + 2 + n->count * 12, n->order, 0); in exif_mnote_data_olympus_save()
191 exif_set_short (*buf + o2, n->order, (ExifShor in exif_mnote_data_olympus_save()
[all...]
/third_party/ffmpeg/libavutil/
H A Dchannel_layout.c395 channel_layout->order = AV_CHANNEL_ORDER_NATIVE; in av_channel_layout_from_mask()
425 int order; in av_channel_layout_from_string() local
427 order = strtol(p, &endptr, 0); in av_channel_layout_from_string()
428 if (order < 0 || order + 1 > INT_MAX / (order + 1) || in av_channel_layout_from_string()
432 channel_layout->order = AV_CHANNEL_ORDER_AMBISONIC; in av_channel_layout_from_string()
433 channel_layout->nb_channels = (order + 1) * (order + 1); in av_channel_layout_from_string()
444 if (extra.order in av_channel_layout_from_string()
657 int i, highest_ambi, order; ambisonic_order() local
701 int order = ambisonic_order(channel_layout); try_describe_ambisonic() local
[all...]
/third_party/skia/src/pathops/
H A DSkOpCubicHull.cpp53 The indices returned in order describe the convex hull.
55 int SkDCubic::convexHull(char order[4]) const { in convexHull()
65 order[0] = yMin; in convexHull()
81 order[1] = side1; in convexHull()
82 order[2] = side2; in convexHull()
90 order[0] = 0; in convexHull()
91 order[1] = 3; in convexHull()
93 order[2] = 2; in convexHull()
97 order[2] = 1; in convexHull()
108 order[ in convexHull()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/marl/src/
H A Ddag_test.cpp25 std::vector<std::string> order; member
29 order.emplace_back(std::move(s)); in push()
53 ASSERT_THAT(data.order, ElementsAre("A", "B", "C")); in TEST_P()
70 ASSERT_THAT(data.order, ElementsAre("A", "B", "C")); in TEST_P()
89 ASSERT_THAT(dataA.order, ElementsAre("A", "B", "C", "A", "B", "C")); in TEST_P()
90 ASSERT_THAT(dataB.order, ElementsAre("A", "B", "C")); in TEST_P()
109 ASSERT_THAT(data.order, UnorderedElementsAre("A", "B", "C")); in TEST_P()
129 ASSERT_THAT(data.order, UnorderedElementsAre("N", "A", "B", "C")); in TEST_P()
130 ASSERT_EQ(data.order[0], "N"); in TEST_P()
131 ASSERT_THAT(slice(data.order, in TEST_P()
[all...]
/third_party/FreeBSD/sys/sys/
H A Dkernel.h55 * Startup occurs in ascending numeric order; the list entries are
56 * sorted prior to attempting startup to guarantee order. Items
57 * of the same level are arbitrated for order based on the 'order'
118 enum sysinit_elem_order order; /* init order within subsystem*/ member
135 #define C_SYSINIT(uniquifier, subsystem, order, func, ident) \
138 order, \
144 #define SYSINIT(uniquifier, subsystem, order, func, ident) \
145 C_SYSINIT(uniquifier, subsystem, order, \
[all...]
/third_party/json/include/nlohmann/detail/
H A Dvalue_t.hpp71 - order: null < boolean < number < object < array < string < binary
86 static constexpr std::array<std::uint8_t, 9> order = {{ variable
96 if (l_index < order.size() && r_index < order.size())
98 return order[l_index] <=> order[r_index]; // *NOPAD*
102 return l_index < order.size() && r_index < order.size() && order[l_index] < order[r_inde
[all...]

Completed in 15 milliseconds

12345678910>>...39