HomeSort by relevance Sort by last modified time
    Searched refs:mn (Results 1 - 25 of 75) sorted by null

1 2 3

  /external/libexif/contrib/examples/
photographer.c 46 ExifMnoteData *mn = exif_data_get_mnote_data(d); local
47 if (mn) {
48 int num = exif_mnote_data_count(mn);
54 if (exif_mnote_data_get_id(mn, i) == tag) {
55 if (exif_mnote_data_get_value(mn, i, buf, sizeof(buf))) {
59 printf("%s: %s\n", exif_mnote_data_get_title(mn, i),
  /bionic/libc/tzcode/
asctime.c 82 register const char * mn; local
94 mn = "???";
95 else mn = mon_name[timeptr->tm_mon];
108 wn, mn,
  /external/icu/icu4c/source/tools/tzcode/
asctime.c 82 register const char * mn; local
94 mn = "???";
95 else mn = mon_name[timeptr->tm_mon];
108 wn, mn,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_rfc822.py 43 mn, ma = results[i][0], results[i][1]
48 self.assertEqual(mn, n,
49 "Un-expected name: %r != %r" % (mn, n))
52 if mn == n and ma == a:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_rfc822.py 43 mn, ma = results[i][0], results[i][1]
48 self.assertEqual(mn, n,
49 "Un-expected name: %r != %r" % (mn, n))
52 if mn == n and ma == a:
  /development/perftests/panorama/feature_stab/db_vlvm/
db_utilities_poly.cpp 100 double lz,ms,ns,mn,m,n,lz_through2; local
145 mn=lz*c3through4-c1/2.0;
150 n=sqrt(ns)*db_sign(mn);
172 double lz,ms,ns,mn,m,n,lz_through2; local
217 mn=lz*c3through4-c1/2.0;
223 n=sqrt(ns)*db_sign(mn);
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_utilities_poly.cpp 100 double lz,ms,ns,mn,m,n,lz_through2; local
145 mn=lz*c3through4-c1/2.0;
150 n=sqrt(ns)*db_sign(mn);
172 double lz,ms,ns,mn,m,n,lz_through2; local
217 mn=lz*c3through4-c1/2.0;
223 n=sqrt(ns)*db_sign(mn);
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_poly.cpp 100 double lz,ms,ns,mn,m,n,lz_through2; local
145 mn=lz*c3through4-c1/2.0;
150 n=sqrt(ns)*db_sign(mn);
172 double lz,ms,ns,mn,m,n,lz_through2; local
217 mn=lz*c3through4-c1/2.0;
223 n=sqrt(ns)*db_sign(mn);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
WeibullDistributionImpl.java 332 final double mn = getNumericalMean(); local
336 (mn * mn);
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
ClassNode.java 218 MethodNode mn = new MethodNode(access, local
223 methods.add(mn);
224 return mn;
  /external/deqp/framework/delibs/debase/
deInt32.h 102 * \brief Check if a value is in the <b>inclusive<b> range [mn, mx].
104 * \param mn Range minimum value.
106 * \return True if (a >= mn) and (a <= mx), false otherwise.
110 DE_INLINE deBool deInRange32 (int a, int mn, int mx)
112 return (a >= mn) && (a <= mx);
116 * \brief Check if a value is in the half-inclusive bounds [mn, mx[.
118 * \param mn Range minimum value.
120 * \return True if (a >= mn) and (a < mx), false otherwise.
124 DE_INLINE deBool deInBounds32 (int a, int mn, int mx)
126 return (a >= mn) && (a < mx)
    [all...]
deMath.h 76 DE_INLINE float deFloatClamp (float x, float mn, float mx) { return (x <= mn) ? mn : ((x >= mx) ? mx : x); }
81 DE_INLINE double deClamp (double x, double mn, double mx) { return (x <= mn) ? mn : ((x >= mx) ? mx : x); }
  /external/opencv/ml/src/
_ml.h 117 int mm, mn; == m,n == size,dim
134 int mm, mn; \
143 sstep = cstep = clstep = ncl = tmstep = ntm = msstep = mcstep = mm = mn = 0; \
187 ICV_RAWDATA( *(param), (flags), missed, msstep, mcstep, mm, mn ); \
188 if( mm != m || mn != n ) \
  /external/blktrace/btt/
btt_plot.py 100 def check(mn, mx, v):
104 if mn == None or v < mn: mn = v
106 return mn, mx, v
  /external/llvm/utils/yaml-bench/
YAMLBench.cpp 104 } else if (yaml::MappingNode *mn = dyn_cast<yaml::MappingNode>(n)) {
107 for (yaml::MappingNode::iterator i = mn->begin(), e = mn->end();
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
cfgloop.h 574 int mn; local
585 mn = (flags & LI_INCLUDE_ROOT) ? 0 : 1;
592 && aloop->num >= mn)
605 if (aloop->num >= mn)
627 if (aloop->num >= mn)
  /external/wpa_supplicant_8/src/pae/
ieee802_1x_kay.c 151 u32 mn; local
165 for (i = 0; i < body_len; i += MI_LEN + sizeof(mn)) {
167 os_memcpy(&mn, mi + MI_LEN, sizeof(mn));
169 wpa_printf(MSG_DEBUG, "\tMessage Number: %d", be_to_host32(mn));
517 u8 *mi, u32 mn)
530 peer->mn = mn;
548 wpa_printf(MSG_DEBUG, "\tMN: %d", peer->mn);
561 struct ieee802_1x_mka_participant *participant, const u8 *mi, u32 mn)
    [all...]
ieee802_1x_kay_i.h 41 u32 mn; member in struct:ieee802_1x_mka_peer_id
47 u32 mn; member in struct:ieee802_1x_kay_peer
223 u32 mn; member in struct:ieee802_1x_mka_participant
  /libcore/luni/src/main/java/java/util/concurrent/
SynchronousQueue.java 352 SNode mn = m.next; local
354 casHead(s, mn); // pop both s and m
357 s.casNext(m, mn); // help unlink
365 SNode mn = m.next; local
367 casHead(h, mn); // pop both h and m
369 h.casNext(m, mn); // help unlink
    [all...]
  /external/icu/icu4c/source/test/intltest/
caltest.h 77 virtual void test4064654(int32_t yr, int32_t mo, int32_t dt, int32_t hr, int32_t mn, int32_t sc);
  /external/sonivox/jet_tools/JetCreator/
JetCtrls.py 399 self.mn = minimums
442 if int(self.time[self.iCtrl].GetValue()) < self.mn[self.iCtrl]:
443 self.time[self.iCtrl].SetValue(str(self.mn[self.iCtrl]))
455 if int(self.time[self.iCtrl].GetValue()) > self.mn[self.iCtrl]:
477 self.time[0].SetValue(str(self.mn[0]))
478 self.time[1].SetValue(str(self.mn[1]))
479 self.time[2].SetValue(str(self.mn[2]))
511 self.mn = (m,b,t)
  /external/deqp/modules/gles2/scripts/
genutil.py 115 def uniformVec4(self, count, mn, mx):
116 ret = [Vec4(random.uniform(mn, mx), random.uniform(mn, mx), random.uniform(mn, mx), random.uniform(mn, mx)) for x in xrange(count)]
117 ret[0].x = mn
119 ret[2].x = (mn + mx) * 0.5
134 def glslClamp(x, mn, mx): return mn if (x < mn) else mx if (x > mx) else
    [all...]
  /external/chromium-trace/trace-viewer/third_party/Paste/paste/util/
datetimeutil.py 112 mn = (val.seconds % 3600)/60
113 return "%d.%02d" % (hr, mn * 100/60)
  /external/deqp/modules/gles3/scripts/
genutil.py 125 def uniformVec4(self, count, mn, mx):
126 ret = [Vec4(random.uniform(mn, mx), random.uniform(mn, mx), random.uniform(mn, mx), random.uniform(mn, mx)) for x in xrange(count)]
127 ret[0].x = mn
129 ret[2].x = (mn + mx) * 0.5
144 def glslClamp(x, mn, mx): return mn if (x < mn) else mx if (x > mx) else
    [all...]
  /external/deqp/modules/gles31/scripts/
genutil.py 125 def uniformVec4(self, count, mn, mx):
126 ret = [Vec4(random.uniform(mn, mx), random.uniform(mn, mx), random.uniform(mn, mx), random.uniform(mn, mx)) for x in xrange(count)]
127 ret[0].x = mn
129 ret[2].x = (mn + mx) * 0.5
144 def glslClamp(x, mn, mx): return mn if (x < mn) else mx if (x > mx) else
    [all...]

Completed in 1469 milliseconds

1 2 3