Home
last modified time | relevance | path

Searched refs:iff (Results 1 – 25 of 138) sorted by relevance

123456

/third_party/ffmpeg/libavformat/
Diff.c356 IffDemuxContext *iff = s->priv_data; in read_dst_frame() local
364 if (chunk_pos >= iff->body_end) in read_dst_frame()
368 data_size = iff->is_64bit ? avio_rb64(pb) : avio_rb32(pb); in read_dst_frame()
377 iff->body_pos = avio_tell(pb) - (iff->is_64bit ? 12 : 8); in read_dst_frame()
378 iff->body_size = iff->body_end - iff->body_pos; in read_dst_frame()
392 if (chunk_pos >= iff->body_end) in read_dst_frame()
419 IffDemuxContext *iff = s->priv_data; in iff_read_header() local
437 iff->is_64bit = avio_rl32(pb) == ID_FRM8; in iff_read_header()
438 avio_skip(pb, iff->is_64bit ? 8 : 4); in iff_read_header()
444 iff->bitmap_compression = -1; in iff_read_header()
[all …]
/third_party/boost/libs/hana/test/_include/laws/
Dorderable.hpp60 hana::less(a, b) ^iff^ hana::not_(hana::less_equal(b, a)) in TestOrderable()
64 hana::greater(a, b) ^iff^ hana::less(b, a) in TestOrderable()
68 hana::greater_equal(a, b) ^iff^ hana::not_(hana::less(a, b)) in TestOrderable()
72 BOOST_HANA_CHECK(hana::less.than(a)(b) ^iff^ hana::less(b, a)); in TestOrderable()
73 BOOST_HANA_CHECK(hana::greater.than(a)(b) ^iff^ hana::greater(b, a)); in TestOrderable()
74 BOOST_HANA_CHECK(hana::less_equal.than(a)(b) ^iff^ hana::less_equal(b, a)); in TestOrderable()
75 BOOST_HANA_CHECK(hana::greater_equal.than(a)(b) ^iff^ hana::greater_equal(b, a)); in TestOrderable()
80 hana::ordering(f)(a, b) ^iff^ hana::less(f(a), f(b)) in TestOrderable()
103 hana::value(hana::less(a, b)) ^iff^ in __anon2390d1e50402()
121 hana::less(x, y) ^iff^ in __anon2390d1e50502()
Dcomparable.hpp58 hana::not_equal(a, b) ^iff^ hana::not_(hana::equal(a, b)) in TestComparable()
63 hana::equal.to(a)(b) ^iff^ hana::equal(a, b) in TestComparable()
67 hana::not_equal.to(a)(b) ^iff^ hana::not_equal(a, b) in TestComparable()
73 hana::comparing(f)(a, b) ^iff^ hana::equal(f(a), f(b)) in TestComparable()
95 hana::value(hana::equal(a, b)) ^iff^ in __anonf1b46aab0402()
110 hana::equal(x, y) ^iff^ in __anonf1b46aab0502()
Dsearchable.hpp73 hana::any_of(xs, p) ^iff^ in TestSearchable()
78 hana::any_of(xs, p) ^iff^ in TestSearchable()
91 hana::any(xs) ^iff^ hana::any_of(xs, id) in TestSearchable()
95 hana::all(xs) ^iff^ hana::all_of(xs, hana::id) in TestSearchable()
99 hana::none(xs) ^iff^ hana::none_of(xs, hana::id) in TestSearchable()
112 hana::is_subset(xs, ys) ^iff^ in TestSearchable()
118 hana::is_disjoint(xs, ys) ^iff^ in TestSearchable()
132 hana::contains(xs, key) ^iff^ in TestSearchable()
Dlogical.hpp63 hana::or_(a, b) ^iff^ hana::or_(b, a) in TestLogical()
66 hana::and_(a, b) ^iff^ hana::and_(b, a) in TestLogical()
Dconstant.hpp83 static_assert(is_embedded<C, U>::value ^iff^ is_embedded<T, U>::value, ""); in TestConstant()
Diterable.hpp55 hana::is_empty(xs) ^iff^ hana::is_empty(hana::to<tuple_tag>(xs)) in TestIterable()
/third_party/mesa3d/src/intel/tools/tests/gen5/
Diff.asm1 (+f0.0.x) iff(8) Jump: 22 { align16 switch };
2 (+f0.0) iff(8) Jump: 44 { align1 switch };
3 (+f0.0) iff(16) Jump: 44 { align1 switch };
/third_party/mesa3d/src/intel/tools/tests/gen4.5/
Diff.asm1 (-f0.0) iff(16) Jump: 5 { align1 switch };
2 (+f0.0.x) iff(8) Jump: 11 { align16 switch };
3 (+f0.0) iff(16) Jump: 7 { align1 switch };
/third_party/mesa3d/src/intel/tools/tests/gen4/
Diff.asm1 (-f0.0) iff(16) Jump: 5 { align1 switch };
2 (+f0.0.x) iff(8) Jump: 11 { align16 switch };
3 (+f0.0) iff(16) Jump: 7 { align1 switch };
/third_party/mesa3d/src/compiler/nir/
Dnir_sweep.c64 sweep_if(nir_shader *nir, nir_if *iff) in sweep_if() argument
66 ralloc_steal(nir, iff); in sweep_if()
68 foreach_list_typed(nir_cf_node, cf_node, node, &iff->then_list) { in sweep_if()
72 foreach_list_typed(nir_cf_node, cf_node, node, &iff->else_list) { in sweep_if()
Dnir_opt_move.c109 nir_if *iff = nir_block_get_following_if(block); in move() local
110 if (iff) { in move()
111 progress |= move_source(&iff->condition, block, NULL, options); in move()
/third_party/gstreamer/gstplugins_good/gst/goom/
Dconvolve_fx.c150 PluginInfo * info, int iff) in create_output_with_brightness() argument
175 ifftab[i] = (double) iff *(1.0 + data->visibility * (15.0 - i) / 15.0); in create_output_with_brightness()
180 ifftab[i] = (double) iff / (1.0 + data->visibility * (15.0 - i) / 15.0); in create_output_with_brightness()
287 int iff; in convolve_apply() local
291 iff = (unsigned int) (ff * 256); in convolve_apply()
336 create_output_with_brightness (_this, src, dest, info, iff); in convolve_apply()
/third_party/ffmpeg/tests/fate/
Dpcm.mak1 FATE_SAMPLES_PCM-$(call DEMDEC, WAV, PCM_U8) += fate-iff-pcm
2 fate-iff-pcm: CMD = md5 -i $(TARGET_SAMPLES)/iff/Bells -f s16le -af aresample
Dvideo.mak180 FATE_IFF-$(CONFIG_IFF_ILBM_DECODER) += fate-iff-byterun1
181 fate-iff-byterun1: CMD = framecrc -i $(TARGET_SAMPLES)/iff/ASH.LBM -pix_fmt rgb24 -vf scale
183 FATE_IFF-$(CONFIG_EIGHTSVX_FIB_DECODER) += fate-iff-fibonacci
184 fate-iff-fibonacci: CMD = md5 -i $(TARGET_SAMPLES)/iff/dasboot-in-compressed -f s16le -vf scale -af…
186 FATE_IFF-$(CONFIG_IFF_ILBM_DECODER) += fate-iff-ilbm
187 fate-iff-ilbm: CMD = framecrc -i $(TARGET_SAMPLES)/iff/lms-matriks.ilbm -pix_fmt rgb24 -vf scale
190 fate-iff: $(FATE_IFF-yes)
/third_party/boost/libs/python/doc/reference/
Dto_python_value.qbk25 [[Returns][`true` iff a converter has been registered which can convert `T` to python by-value. ]]
31 [[Returns][the resulting Python object iff a converter for `T` has been registered, `0` otherwise. …
Dhas_back_reference.qbk6 A unary metafunction whose value is true iff its argument is a `pointer_wrapper<>`.
20 Specializations may substitute a true-valued integral constant wrapper for type iff for each invoca…
Dtype_id.qbk39 [[Returns][`true` iff the two values describe the same type.]]
74 // Returns true iff the user passes an int argument
Dptr.qbk63 A unary metafunction whose value is true iff its argument is a pointer_wrapper<>.
74 [[Returns][`true` iff `T` is a specialization of `pointer_wrapper<>`.
Dimplicit.qbk17 … `from_python` converter to Target which can succeed for any `PyObject* p` iff there exists any re…
/third_party/mesa3d/src/compiler/glsl/
Dlower_blend_equation_advanced.cpp334 ir_if *iff = new(mem_ctx) ir_if(is_mode(mode, choice)); in calc_blend_result() local
335 casefactory.emit(iff); in calc_blend_result()
336 casefactory.instructions = &iff->then_instructions; in calc_blend_result()
393 casefactory.instructions = &iff->else_instructions; in calc_blend_result()
Dir_reader.cpp490 ir_if *iff = new(mem_ctx) ir_if(condition); in read_if() local
492 read_instructions(&iff->then_instructions, s_then, loop_ctx); in read_if()
493 read_instructions(&iff->else_instructions, s_else, loop_ctx); in read_if()
495 delete iff; in read_if()
496 iff = NULL; in read_if()
498 return iff; in read_if()
/third_party/node/tools/inspector_protocol/lib/
Dencoding_h.template218 // Encodes |value| as |UNSIGNED| (major type 0) iff >= 0, or |NEGATIVE|
219 // (major type 1) iff < 0.
274 // Returns true iff successful.
287 // that drives it. The handler will encode into |out|, and iff an error occurs
429 // of the map. Patches up the envelope size; Status.ok() iff successful.
458 // Parses |str| into |result|. Returns false iff there are
471 // |status->ok()| will be false iff the handler routine HandleError() is called.
/third_party/boost/libs/ptr_container/doc/
Dptr_map_adapter.rst125 …- Effects: Takes ownership of ``x`` and insert it iff there is no equivalent of it already. The bo…
170 iff no equivalent object exists.
/third_party/iptables/extensions/
Dlibxt_u32.man85 First test that it is an ICMP packet, true iff byte 9 (protocol) = 1
93 of byte 7 are 0 iff this is a complete packet (not a fragment). Alternatively,

123456