HomeSort by relevance Sort by last modified time
    Searched full:ivalue (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/apache-harmony/beans/src/test/support/java/org/apache/harmony/beans/tests/support/
SerializableBean.java 30 private Integer iValue = null;
48 return iValue;
51 public void setIValue(Integer iValue) {
52 this.iValue = iValue;
  /external/chromium_org/third_party/sqlite/src/src/
test_wholenumber.c 36 unsigned iValue; /* Current value */
91 pCur->iValue++;
104 sqlite3_result_int64(ctx, pCur->iValue);
113 *pRowid = pCur->iValue;
123 return pCur->iValue>pCur->mxValue || pCur->iValue==0;
152 pCur->iValue = 1;
156 if( v>pCur->iValue && v<=pCur->mxValue ) pCur->iValue = v;
161 if( v>=pCur->iValue && v<pCur->mxValue ) pCur->mxValue = v
    [all...]
test_malloc.c 1227 int rc, iValue, mxValue;
1261 iValue = 0;
1263 rc = sqlite3_status(op, &iValue, &mxValue, resetFlag);
1266 Tcl_ListObjAppendElement(0, pResult, Tcl_NewIntObj(iValue));
    [all...]
test_mutex.c 332 int iValue;
353 i = aOpt[i].iValue;
test_vfs.c 1147 int iValue;
    [all...]
mem5.c 434 ** Return the ceiling of the logarithm base 2 of iValue.
443 static int memsys5Log(int iValue){
445 for(iLog=0; (iLog<(int)((sizeof(int)*8)-1)) && (1<<iLog)<iValue; iLog++);
test_multiplex.c     [all...]
  /hardware/samsung_slsi/exynos5/libhwjpeg/
ExynosJpegDecoder.cpp 958 int ivalue[4]; local
1351 int ivalue[4]; local
    [all...]
ExynosJpegBase.cpp 287 int ExynosJpegBase::t_v4l2SetCtrl(int iFd, int iCid, int iValue)
293 vc.value = iValue;
297 JPEG_ERROR_LOG("[%s] VIDIOC_S_CTRL failed : cid(%d), value(%d)\n", __func__, iCid, iValue);
550 int ExynosJpegBase::setCache(int iValue)
556 if (t_v4l2SetCtrl(t_iJpegFd, V4L2_CID_CACHEABLE, iValue)<0) {
  /external/chromium_org/third_party/angle_dx11/src/compiler/preprocessor/
Token.cpp 56 bool Token::iValue(int* value) const
Token.h 83 bool iValue(int* value) const;
Preprocessor.cpp 101 if (!token->iValue(&val))
DirectiveParser.cpp 730 if (valid && !token->iValue(&version))
785 if (valid && !token->iValue(&line))
799 if (valid && !token->iValue(&file))
  /external/libvorbis/vq/
bookutil.h 30 extern int get_next_ivalue(FILE *in,long *ivalue);
bookutil.c 159 int get_next_ivalue(FILE *in,long *ivalue){
162 *ivalue=value;
  /external/opencv/cv/src/
cvutils.cpp 344 const int* ivalue = (const int*)value; local
345 int v0 = ivalue[0];
356 if( ivalue[j] != ivalue[0] )
377 idst[j] = ivalue[j];
396 idst[j+k] = ivalue[k];
398 idst[j+k] = ivalue[k];
  /external/srec/srec/EventLog/src/
EventLogImpl.c 103 int iValue;
134 CHKLOG(rc, list->get(list, i, &iValue));
137 CHKLOG(rc, SR_EventLogTokenInt(eventLog, lValue, iValue));
739 int iValue;
758 CHKLOG(rc, ESR_SessionGetInt(key, &iValue));
759 CHKLOG(rc, SR_EventLogTokenInt(self, key, iValue));
789 CHKLOG(rc, list->get(list, j, &iValue));
792 CHKLOG(rc, SR_EventLogTokenInt(self, lValue, iValue));
  /hardware/samsung_slsi/exynos5/include/
ExynosJpegApi.h 110 int setCache(int iValue);
137 int t_v4l2SetCtrl(int iFd, int iCid, int iValue);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_slice_header.c 1272 i32 ivalue; local
1408 i32 ivalue; local
    [all...]
  /device/lge/mako/camera/inc/
omx_jpeg_common.h 157 int iValue;
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSParserValues.h 141 int iValue;
CSSParserValues.cpp 70 RefPtr<CSSPrimitiveValue> primitiveValue = CSSPrimitiveValue::createParserOperator(iValue);
  /external/chromium_org/third_party/icu/source/test/intltest/
numfmtst.h 248 double checkRound(DecimalFormat* df, double iValue, double lastParsed);
  /external/icu4c/test/intltest/
numfmtst.h 260 double checkRound(DecimalFormat* df, double iValue, double lastParsed);
  /frameworks/base/services/java/com/android/server/
LockSettingsService.java 136 int ivalue = Settings.Secure.getIntForUser(cr, OWNER_INFO_ENABLED, userId); local
137 enabled = ivalue != 0;

Completed in 3302 milliseconds

1 2 3