Home
last modified time | relevance | path

Searched refs:mn (Results 1 - 25 of 47) sorted by relevance

12

/third_party/libexif/contrib/examples/
H A Dphotographer.c46 ExifMnoteData *mn = exif_data_get_mnote_data(d); in show_mnote_tag() local
47 if (mn) { in show_mnote_tag()
48 int num = exif_mnote_data_count(mn); in show_mnote_tag()
54 if (exif_mnote_data_get_id(mn, i) == tag) { in show_mnote_tag()
55 if (exif_mnote_data_get_value(mn, i, buf, sizeof(buf))) { in show_mnote_tag()
59 printf("%s: %s\n", exif_mnote_data_get_title(mn, i), in show_mnote_tag()
/third_party/libexif/test/
H A Dtest-parse.c61 ExifMnoteData *mn = exif_data_get_mnote_data(d); in dump_makernote() local
62 if (mn) { in dump_makernote()
65 int num = exif_mnote_data_count(mn); in dump_makernote()
68 if (exif_mnote_data_get_value(mn, i, buf, sizeof(buf))) { in dump_makernote()
69 const char *name = exif_mnote_data_get_name(mn, i); in dump_makernote()
70 unsigned int id = exif_mnote_data_get_id(mn, i); in dump_makernote()
H A Dtest-parse-from-data.c65 ExifMnoteData *mn = exif_data_get_mnote_data(d); in dump_makernote() local
66 if (mn) { in dump_makernote()
69 int num = exif_mnote_data_count(mn); in dump_makernote()
72 if (exif_mnote_data_get_value(mn, i, buf, sizeof(buf))) { in dump_makernote()
73 const char *name = exif_mnote_data_get_name(mn, i); in dump_makernote()
74 unsigned int id = exif_mnote_data_get_id(mn, i); in dump_makernote()
/third_party/skia/modules/skottie/tests/
H A DExpression.cpp144 "mn": "ADBE Fill", in DEF_TEST()
151 "mn": "ADBE Fill-0001", in DEF_TEST()
162 "mn": "ADBE Fill-0007", in DEF_TEST()
173 "mn": "ADBE Fill-0002", in DEF_TEST()
190 "mn": "ADBE Fill-0006", in DEF_TEST()
201 "mn": "ADBE Fill-0003", in DEF_TEST()
212 "mn": "ADBE Fill-0004", in DEF_TEST()
223 "mn": "ADBE Fill-0005", in DEF_TEST()
/third_party/icu/icu4c/source/tools/tzcode/
H A Dasctime.c82 register const char * mn; in asctime_r() local
94 mn = "???"; in asctime_r()
95 else mn = mon_name[timeptr->tm_mon]; in asctime_r()
108 wn, mn, in asctime_r()
/third_party/skia/third_party/externals/icu/source/tools/tzcode/
H A Dasctime.c82 register const char * mn; in asctime_r() local
94 mn = "???"; in asctime_r()
95 else mn = mon_name[timeptr->tm_mon]; in asctime_r()
108 wn, mn, in asctime_r()
/third_party/tzdata/
H A Dasctime.c74 register const char * mn; in asctime_r() local
86 mn = "???"; in asctime_r()
87 else mn = mon_name[timeptr->tm_mon]; in asctime_r()
100 wn, mn, in asctime_r()
/third_party/ffmpeg/libavfilter/
H A Dvf_cas.c88 int mn, mn2, mx, mx2; in cas_slice8() local
91 mn = FFMIN3(FFMIN3( d, e, f), b, h); in cas_slice8()
92 mn2 = FFMIN3(FFMIN3(mn, a, c), g, i); in cas_slice8()
94 mn = mn + mn2; in cas_slice8()
101 amp = sqrtf(av_clipf(FFMIN(mn, 511 - mx) / (float)mx, 0.f, 1.f)); in cas_slice8()
155 int mn, mn2, mx, mx2; in cas_slice16() local
158 mn = FFMIN3(FFMIN3( d, e, f), b, h); in cas_slice16()
159 mn2 = FFMIN3(FFMIN3(mn, a, c), g, i); in cas_slice16()
161 mn in cas_slice16()
[all...]
/third_party/lwip/src/apps/snmp/
H A Dsnmp_core.c775 const struct snmp_node *mn = NULL; in snmp_get_node_instance_from_oid() local
781 mn = snmp_mib_tree_resolve_exact(mib, oid, oid_len, &oid_instance_len); in snmp_get_node_instance_from_oid()
782 if ((mn != NULL) && (mn->node_type != SNMP_NODE_TREE)) { in snmp_get_node_instance_from_oid()
784 const struct snmp_leaf_node *leaf_node = (const struct snmp_leaf_node *)(const void *)mn; in snmp_get_node_instance_from_oid()
786 node_instance->node = mn; in snmp_get_node_instance_from_oid()
814 const struct snmp_node *mn = NULL; in snmp_get_next_node_instance_from_oid() local
834 while ((mib != NULL) && (mn == NULL)) { in snmp_get_next_node_instance_from_oid()
838 mn = snmp_mib_tree_resolve_exact(mib, start_oid, start_oid_len, &oid_instance_len); in snmp_get_next_node_instance_from_oid()
839 if (mn ! in snmp_get_next_node_instance_from_oid()
[all...]
/third_party/skia/gm/
H A Dhsl.cpp56 float mn = min(*r,*g,*b), in set_sat() local
59 return mx == mn ? 0 in set_sat()
60 : (c - mn) * s / (mx - mn); in set_sat()
68 mn = min(*r,*g,*b), in clip_color() local
71 if (mn < 0) { c = l + (c - l) * ( l) / (l - mn); } in clip_color()
/third_party/ffmpeg/libavcodec/
H A Dtexturedspenc.c503 int mn, mx; in compress_alpha() local
510 mn = mx = block[3]; in compress_alpha()
514 if (val < mn) in compress_alpha()
515 mn = val; in compress_alpha()
523 dst[1] = (uint8_t) mn; in compress_alpha()
527 if (mn == mx) in compress_alpha()
531 * Given the choice of mx/mn, these indices are optimal: in compress_alpha()
533 dist = mx - mn; in compress_alpha()
538 bias = dist - 1 - mn * 7; in compress_alpha()
540 bias = dist / 2 + 2 - mn * in compress_alpha()
[all...]
/third_party/skia/modules/skottie/src/effects/
H A DEffects.cpp64 const skjson::StringValue* mn = jeffect["mn"]; in findBuilder() local
65 if (mn) { in findBuilder()
66 const BuilderInfo key { mn->begin(), nullptr }; in findBuilder()
79 // without a valid 'mn' string. TODO: we should update them and remove this fallback. in findBuilder()
100 "Unsupported layer effect: %s", mn ? mn->begin() : "(unknown)"); in findBuilder()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/pae/
H A Dieee802_1x_kay.c177 be32 mn; in ieee802_1x_mka_dump_peer_body() local
192 for (i = 0; i < body_len; i += MI_LEN + sizeof(mn)) { in ieee802_1x_mka_dump_peer_body()
194 os_memcpy(&mn, mi + MI_LEN, sizeof(mn)); in ieee802_1x_mka_dump_peer_body()
196 mi_txt(mi), be_to_host32(mn)); in ieee802_1x_mka_dump_peer_body()
579 mi_txt(peer->mi), peer->mn, sci_txt(&peer->sci)); in ieee802_1x_kay_dump_peer()
584 ieee802_1x_kay_create_peer(const u8 *mi, u32 mn) in ieee802_1x_kay_create_peer() argument
595 peer->mn = mn; in ieee802_1x_kay_create_peer()
609 const u8 *mi, u32 mn) in ieee802_1x_kay_create_live_peer()
608 ieee802_1x_kay_create_live_peer(struct ieee802_1x_mka_participant *participant, const u8 *mi, u32 mn) ieee802_1x_kay_create_live_peer() argument
646 ieee802_1x_kay_create_potential_peer( struct ieee802_1x_mka_participant *participant, const u8 *mi, u32 mn) ieee802_1x_kay_create_potential_peer() argument
668 ieee802_1x_kay_move_live_peer(struct ieee802_1x_mka_participant *participant, u8 *mi, u32 mn) ieee802_1x_kay_move_live_peer() argument
1083 u32 mn = be_to_host32(peer_mi->mn); ieee802_1x_mka_i_in_peerlist() local
[all...]
H A Dieee802_1x_kay_i.h41 be32 mn; member
47 u32 mn; member
132 u32 mn; member
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/pae/
H A Dieee802_1x_kay.c177 be32 mn; in ieee802_1x_mka_dump_peer_body() local
192 for (i = 0; i < body_len; i += MI_LEN + sizeof(mn)) { in ieee802_1x_mka_dump_peer_body()
194 os_memcpy(&mn, mi + MI_LEN, sizeof(mn)); in ieee802_1x_mka_dump_peer_body()
196 mi_txt(mi), be_to_host32(mn)); in ieee802_1x_mka_dump_peer_body()
579 mi_txt(peer->mi), peer->mn, sci_txt(&peer->sci)); in ieee802_1x_kay_dump_peer()
584 ieee802_1x_kay_create_peer(const u8 *mi, u32 mn) in ieee802_1x_kay_create_peer() argument
595 peer->mn = mn; in ieee802_1x_kay_create_peer()
609 const u8 *mi, u32 mn) in ieee802_1x_kay_create_live_peer()
608 ieee802_1x_kay_create_live_peer(struct ieee802_1x_mka_participant *participant, const u8 *mi, u32 mn) ieee802_1x_kay_create_live_peer() argument
646 ieee802_1x_kay_create_potential_peer( struct ieee802_1x_mka_participant *participant, const u8 *mi, u32 mn) ieee802_1x_kay_create_potential_peer() argument
668 ieee802_1x_kay_move_live_peer(struct ieee802_1x_mka_participant *participant, u8 *mi, u32 mn) ieee802_1x_kay_move_live_peer() argument
1083 u32 mn = be_to_host32(peer_mi->mn); ieee802_1x_mka_i_in_peerlist() local
[all...]
H A Dieee802_1x_kay_i.h41 be32 mn; member
47 u32 mn; member
132 u32 mn; member
/third_party/vk-gl-cts/framework/delibs/debase/
H A DdeInt32.h114 * \brief Check if a value is in the <b>inclusive<b> range [mn, mx].
116 * \param mn Range minimum value.
118 * \return True if (a >= mn) and (a <= mx), false otherwise.
122 DE_INLINE deBool deInRange32 (int a, int mn, int mx) in deInRange32() argument
124 return (a >= mn) && (a <= mx); in deInRange32()
128 * \brief Check if a value is in the half-inclusive bounds [mn, mx[.
130 * \param mn Range minimum value.
132 * \return True if (a >= mn) and (a < mx), false otherwise.
136 DE_INLINE deBool deInBounds32 (int a, int mn, int mx) in deInBounds32() argument
138 return (a >= mn) in deInBounds32()
148 deClamp32(int a, int mn, int mx) deClamp32() argument
[all...]
H A DdeMath.h154 DE_INLINE float deFloatClamp (float x, float mn, float mx) { return (x <= mn) ? mn : ((x >= mx) ? mx : x); } in deFloatClamp() argument
159 DE_INLINE double deClamp (double x, double mn, double mx) { return (x <= mn) ? mn : ((x >= mx) ? mx : x); } in deClamp() argument
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
H A Decma-builtin-helpers-date.c489 ecma_number_t mn = (ecma_number_t) fmod (m, 12); in ecma_date_make_day() local
490 mn = (mn < 0) ? 12 + mn : mn; in ecma_date_make_day()
496 * The algorithm below searches the following date: ym-mn-1 in ecma_date_make_day()
504 time += 31 * mn * ECMA_DATE_MS_PER_DAY; in ecma_date_make_day()
510 && ecma_date_month_from_time (time) == mn in ecma_date_make_day()
/third_party/astc-encoder/Source/
H A Dastcenc_mathlib.h251 * @brief Clamp a value value between @c mn and @c mx.
253 * For floats, NaNs are turned into @c mn.
256 * @param mn The min value (inclusive).
262 inline T clamp(T v, T mn, T mx) in clamp() argument
267 if (v > mn) return v; in clamp()
268 return mn; in clamp()
/third_party/alsa-utils/topology/nhlt/intel/ssp/
H A Dssp-debug.c113 struct ssp_aux_config_mn *mn; in ssp_print_internal() local
155 mn = (struct ssp_aux_config_mn *)&(dai->aux_cfg[i].mn); in ssp_print_internal()
165 fprintf(stdout, "aux mn m_div %u\n", mn->m_div); in ssp_print_internal()
166 fprintf(stdout, "aux mn n_div %u\n", mn->n_div); in ssp_print_internal()
/third_party/vk-gl-cts/modules/gles2/scripts/
H A Dgenutil.py137 def uniformVec4(self, count, mn, mx):
138 ret = [Vec4(random.uniform(mn, mx), random.uniform(mn, mx), random.uniform(mn, mx), random.uniform(mn, mx)) for x in xrange(count)]
139 ret[0].x = mn
141 ret[2].x = (mn + mx) * 0.5
156 def glslClamp(x, mn, mx): return mn if (x < mn) els
[all...]
/third_party/ltp/tools/sparse/sparse-src/validation/
H A Denum-min-size.c23 enum mn { MN = -1LL }; enum
/third_party/vk-gl-cts/modules/gles3/scripts/
H A Dgenutil.py147 def uniformVec4(self, count, mn, mx):
148 ret = [Vec4(random.uniform(mn, mx), random.uniform(mn, mx), random.uniform(mn, mx), random.uniform(mn, mx)) for x in xrange(count)]
149 ret[0].x = mn
151 ret[2].x = (mn + mx) * 0.5
166 def glslClamp(x, mn, mx): return mn if (x < mn) els
[all...]
/third_party/vk-gl-cts/modules/gles31/scripts/
H A Dgenutil.py147 def uniformVec4(self, count, mn, mx):
148 ret = [Vec4(random.uniform(mn, mx), random.uniform(mn, mx), random.uniform(mn, mx), random.uniform(mn, mx)) for x in xrange(count)]
149 ret[0].x = mn
151 ret[2].x = (mn + mx) * 0.5
166 def glslClamp(x, mn, mx): return mn if (x < mn) els
[all...]

Completed in 20 milliseconds

12