HomeSort by relevance Sort by last modified time
    Searched defs:val (Results 401 - 425 of 785) sorted by null

<<11121314151617181920>>

  /external/stlport/src/
num_get_float.cpp 149 void _Stl_set_exponent(uint64 &val, uint64 exp)
150 { val = (val & ~exponent_mask) | ((exp & bit11) << 52); }
331 double val; member in union:_Double_rep
474 return drep.val;
846 __string_to_float(const __iostring& v, float& val)
849 val = (float)_Stl_string_to_double(v.c_str());
851 val = (float)_Stl_string_to_doubleT<double,ieee754_double,12,IEEE754_DOUBLE_BIAS>(v.c_str());
856 __string_to_float(const __iostring& v, double& val)
859 val = _Stl_string_to_double(v.c_str())
    [all...]
  /external/strace/
stream.c 540 tprintf (", val=");
1095 int val; local
1150 if (umove(tcp, arg, &val) < 0)
1153 printflags(stream_setsig_flags, val, "S_???");
1183 if (umove(tcp, arg, &val) < 0)
1237 if (umove(tcp, arg, &val) < 0)
  /external/svox/pico/lib/
picoacph.c 356 picoos_uint8 val; local
359 val = PICOKDT_EPSILON;
360 for (i = ind - 1; ((val == PICOKDT_EPSILON) && (i >= 0)); i--) {
362 val = acph->headx[i].head.info1;
366 return val;
621 picoos_uint8 val; local
624 val = PICOKDT_EPSILON;
625 for (i = ind - 1; ((val == PICOKDT_EPSILON) && (i >= 0)); i--) {
627 val = acph->headx[i].head.info1;
631 return val;
    [all...]
  /external/webkit/JavaScriptCore/wtf/
Vector.h 196 static void uninitializedFill(T* dst, T* dstEnd, const T& val)
199 new (dst) T(val);
208 static void uninitializedFill(T* dst, T* dstEnd, const T& val)
211 memset(dst, val, dstEnd - dst);
267 static void uninitializedFill(T* dst, T* dstEnd, const T& val)
269 VectorFiller<VectorTraits<T>::canFillWithMemset, T>::uninitializedFill(dst, dstEnd, val);
549 template<typename U> void uncheckedAppend(const U& val);
569 Vector(size_t size, const T& val)
574 TypeOperations::uninitializedFill(begin(), end(), val);
578 void fill(const T& val) { fill(val, size());
714 std::fill(begin(), end(), val); local
    [all...]
  /external/webkit/WebCore/html/
HTMLTableElement.cpp 331 RefPtr<CSSValue> val = attr->decl()->getPropertyCSSValue(CSSPropertyBorderLeftWidth); local
332 if (val && val->isPrimitiveValue()) {
333 CSSPrimitiveValue* primVal = static_cast<CSSPrimitiveValue*>(val.get());
  /external/webkit/WebKitTools/android/flex-2.5.4a/
misc.c 518 int val = 0; local
520 (void) sscanf( array, "%d", &val );
522 return val;
  /external/wpa_supplicant/
driver_broadcom.c 72 uint32 val; member in struct:__anon6686
88 wpa_printf(MSG_MSGDUMP, "BROADCOM: wlioctl(%s,%d,len=%d,val=%p)",
503 wdt.val = reason_code;
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
driver_broadcom.c 77 uint32 val; member in struct:__anon6854
93 wpa_printf(MSG_MSGDUMP, "BROADCOM: wlioctl(%s,%d,len=%d,val=%p)",
508 wdt.val = reason_code;
  /external/zlib/contrib/puff/
puff.c 113 long val; /* bit accumulator (can use up to 20 bits) */ local
115 /* load at least need bits into val */
116 val = s->bitbuf;
119 val |= (long)(s->in[s->incnt++]) << s->bitcnt; /* load eight bits */
124 s->bitbuf = (int)(val >> need);
128 return (int)(val & ((1L << need) - 1));
    [all...]
  /frameworks/base/awt/java/awt/
RenderingHints.java 356 Object val = entry.getValue(); local
357 put(key, val);
553 * @param val
558 public abstract boolean isCompatibleValue(Object val);
577 public boolean isCompatibleValue(Object val) {
578 if (!(val instanceof KeyValue)) {
582 return ((KeyValue)val).key == this;
  /frameworks/base/core/java/android/app/admin/
DeviceAdminInfo.java 224 Integer val = sKnownPolicies.get(policyName); local
225 if (val != null) {
226 mUsesPolicies |= 1 << val.intValue();
  /frameworks/base/core/java/android/widget/
NumberPicker.java 364 int val = getSelectedPos(str.toString()); local
365 if ((val >= mStart) && (val <= mEnd)) {
366 if (mCurrent != val) {
368 mCurrent = val;
420 for (String val : mDisplayedValues) {
421 val = val.toLowerCase();
422 if (val.startsWith(str)) {
459 int val = getSelectedPos(result) local
    [all...]
  /frameworks/base/libs/utils/
ZipFileRO.cpp 155 unsigned int val; local
163 val = get4LE(basePtr);
164 if (val == kEOCDSignature) {
167 } else if (val != kLFHSignature) {
168 LOGV("Not a Zip archive (found 0x%08x)\n", val);
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
TrackerEntry.java 194 Object val = mLocation.getExtras().get(key); local
195 if (val != null) {
196 debugBuilder.append(String.format("%s=%s; ", key, val
  /hardware/broadcom/wlan/bcm4329/src/dhd/sys/
dhd_cdc.c 296 int slen, val = 0; local
300 bcopy(((char *)buf + slen), &val, sizeof(int));
301 dhd->wme_dp = (uint8) ltoh32(val);
  /hardware/broadcom/wlan/bcm4329/src/shared/
linux_osl.c 379 uint val = 0; local
388 pci_read_config_dword(osh->pdev, offset, &val);
389 if (val != 0xffffffff)
394 return (val);
398 osl_pci_write_config(osl_t *osh, uint offset, uint size, uint val)
408 pci_write_config_dword(osh->pdev, offset, val);
411 if (osl_pci_read_config(osh, offset, size) == val)
sbutils.c 48 #define SET_SBREG(sii, r, mask, val) \
49 W_SBREG((sii), (r), ((R_SBREG((sii), (r)) & ~(mask)) | (val)))
65 uint32 val, intr_val = 0; local
81 val = R_REG(sii->osh, sbr);
89 return (val);
259 sb_core_cflags_wo(si_t *sih, uint32 mask, uint32 val)
268 ASSERT((val & ~mask) == 0);
272 (val << SBTML_SICF_SHIFT);
278 sb_core_cflags(si_t *sih, uint32 mask, uint32 val)
287 ASSERT((val & ~mask) == 0)
    [all...]
  /packages/apps/Email/src/com/android/exchange/adapter/
Parser.java 156 * @param val the desired state for debug output
158 public void setDebug(boolean val) {
159 logging = val;
166 * @param val the logging tag
168 public void setLoggingTag(String val) {
169 logTag = val;
213 String val = text; local
221 return val;
237 int val = num; local
245 return val;
    [all...]
  /packages/apps/Gallery3D/src/com/cooliris/wallpaper/
Slideshow.java 129 // int val = (int)(255 * (1.0f - alpha));
130 // int srcColor = Color.argb(val, 0, 0, 0);
137 int val = (int) (255 * alpha); local
138 int srcColor = Color.argb(val, 0, 0, 0);
  /packages/apps/IM/libwbxml/src/
wbxml_jni.cpp 179 int val = 0; local
182 val <<= 8;
183 val |= (unsigned char)*data++;
187 sprintf(buf, "%d", val);
  /packages/apps/Mms/src/com/android/mms/ui/
NumberPicker.java 362 int val = getSelectedPos(str.toString()); local
363 if ((val >= mStart) && (val <= mEnd)) {
364 if (mCurrent != val) {
366 mCurrent = val;
418 for (String val : mDisplayedValues) {
419 val = val.toLowerCase();
420 if (val.startsWith(str)) {
457 int val = getSelectedPos(result) local
    [all...]
  /packages/apps/Settings/src/com/android/settings/
DisplaySettings.java 136 int val = Integer.parseInt(aents[i].toString()); local
137 if (val <= animations && val > best) {
138 best = val;
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis4/
Visualization4RS.java 206 int val = mVizData[i]; local
207 if (val < 0) {
208 val = -val;
210 volt += val;
  /sdk/traceview/src/com/android/traceview/
ProfileProvider.java 205 double val = md.getElapsedExclusive(); local
206 val = traceUnits.getScaledValue(val);
207 return String.format("%.3f", val);
210 double val = md.getElapsedExclusive(); local
211 double per = val * 100.0 / mTotalTime;
215 double val = md.getElapsedInclusive(); local
216 val = traceUnits.getScaledValue(val);
217 return String.format("%.3f", val);
220 double val = md.getElapsedInclusive(); local
228 double val = md.getElapsedInclusive(); local
238 double val = ps.getElapsedInclusive(); local
244 double val = ps.getElapsedInclusive(); local
256 double val = pd.getElapsedInclusive(); local
262 double val = pd.getElapsedInclusive(); local
    [all...]
  /system/core/fastboot/
fastboot.c 338 char *val[MAX_OPTIONS]; local
355 val[0] = x + 1;
358 x = strchr(val[count - 1],'|');
361 val[count] = x + 1;
365 for(n = 0; n < count; n++) val[n] = strip(val[n]);
377 out[n] = strdup(strip(val[n]));
594 unsigned long val; local
597 val = strtoul(argv[1], &endptr, 0);
598 if (!endptr || *endptr != '\0' || (val & ~0xffff)
    [all...]

Completed in 1491 milliseconds

<<11121314151617181920>>