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

1 2

  /external/aac/libSBRdec/src/
sbr_crc.cpp 101 calcCRC (HANDLE_CRC hCrcBuf, ULONG bValue, int nBits)
108 USHORT flag1 = (bMask & bValue) ? 1 : 0;
136 ULONG bValue;
139 bValue = FDKreadBits (hBs, MAXCRCSTEP);
140 calcCRC (&CrcBuf, bValue, MAXCRCSTEP);
143 bValue = FDKreadBits (hBs, CrcNrBitsRest);
144 calcCRC (&CrcBuf, bValue, CrcNrBitsRest);
  /packages/apps/OMA-DM/engine/dmlib/api/native/
dmtData.hpp 198 * \param bValue [out] -boolean value
205 SYNCML_DM_RET_STATUS_T GetBoolean( BOOLEAN& bValue ) const;
213 * \param bValue [out] -boolean type value
218 SYNCML_DM_RET_STATUS_T GetBoolean( BOOLTYPE& bValue ) const;
335 * \param bValue [in] -boolean value
341 SYNCML_DM_RET_STATUS_T SetBoolean(BOOLEAN bValue);
dmtNode.hpp 296 * \param bValue [out] - result boolean
303 SYNCML_DM_RET_STATUS_T GetBooleanValue( BOOLEAN& bValue ) const;
312 * \param bValue [out] - result boolean
319 SYNCML_DM_RET_STATUS_T GetBooleanValue( BOOLTYPE& bValue ) const;
424 * \param bValue [in] - the value that should be set
431 SYNCML_DM_RET_STATUS_T SetBooleanValue( BOOLEAN bValue );
664 * \param bValue [out] - result boolean
671 inline SYNCML_DM_RET_STATUS_T DmtNode::GetBooleanValue( BOOLEAN& bValue ) const
677 return data.GetBoolean( bValue );
687 * \param bValue [out] - result boolean
    [all...]
  /hardware/intel/img/hwcomposer/common/base/
DisplayAnalyzer.h 47 bool bValue;
DisplayAnalyzer.cpp 68 e.bValue = connected;
101 handleHotplugEvent(e.bValue);
  /packages/apps/OMA-DM/engine/dmlib/dmtapi/native/src/
dmtData.cc 96 SYNCML_DM_RET_STATUS_T DmtData::SetBoolean(BOOLEAN bValue)
98 m_bValue = bValue;
293 SYNCML_DM_RET_STATUS_T DmtData::GetBoolean( BOOLEAN& bValue ) const
295 bValue = FALSE;
299 bValue = m_bValue;
303 SYNCML_DM_RET_STATUS_T DmtData::GetBoolean( BOOLTYPE& bValue ) const
305 bValue = FALSE;
309 bValue = m_bValue?TRUE:FALSE;
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
BookmarkUtils.java 52 * @param bValue Blue component of the dominant favicon color.
56 Bitmap favicon, int rValue, int gValue, int bValue) {
61 gValue, bValue));
73 * @param bValue Blue component of the dominant favicon color.
77 Bitmap favicon, int rValue, int gValue, int bValue) {
80 context, shortcutIntent, title, favicon, rValue, gValue, bValue);
102 * @param bValue Blue component of the dominant favicon color.
106 int gValue, int bValue) {
116 rValue = gValue = bValue = DEFAULT_RGB_VALUE;
123 Color.rgb(rValue, gValue, bValue));
    [all...]
  /external/pdfium/core/src/fpdfdoc/
doc_ocg.cpp 215 FX_BOOL bValue = FALSE;
228 bValue = bItem;
231 bValue = bValue || bItem;
233 bValue = bValue && bItem;
237 return bValue;
  /external/aac/libSBRenc/src/
env_bit.cpp 113 ULONG bValue,
122 flag ^= (bValue & (1<<i)) ? (1) : (0) ;
  /external/pdfium/fpdfsdk/src/javascript/
JS_Value.cpp 26 CJS_Value::CJS_Value(v8::Isolate* isolate, const bool &bValue):m_isolate(isolate)
28 operator =(bValue);
162 void CJS_Value::operator =(bool bValue)
164 m_pValue = JS_NewBoolean(m_isolate, bValue);
332 void CJS_PropValue::operator <<(bool bValue)
335 CJS_Value::operator =(bValue);
338 void CJS_PropValue::operator >>(bool &bValue) const
341 bValue = CJS_Value::operator bool();
  /libcore/support/src/test/java/tests/support/
Support_GetPutFields.java 53 public SimpleClass(int aValue, String bValue) {
55 b = bValue;
Support_GetPutFieldsDefaulted.java 64 public SimpleClass(int aValue, String bValue) {
66 b = bValue;
Support_GetPutFieldsDeprecated.java 55 public SimpleClass(int aValue, String bValue) {
57 b = bValue;
  /external/pdfium/fpdfsdk/include/javascript/
JS_Value.h 21 CJS_Value(v8::Isolate* isolate, const bool &bValue);
50 void operator = (bool bValue);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
amvideo.idl 157 HRESULT SetUsingClock([in] int bValue);
159 HRESULT SetClockPeriod([in] int bValue);
amvideo.h     [all...]
  /frameworks/av/media/libstagefright/yuv/
YUVImage.cpp 403 uint8_t bValue;
404 yuv2rgb(yValue, uValue, vValue, &rValue, &gValue, &bValue);
406 fprintf(fp, "%d %d %d\n", (int32_t)rValue, (int32_t)gValue, (int32_t)bValue);
  /libcore/luni/src/test/java/libcore/java/math/
OldBigDecimalConvertTest.java 304 byte bValue = -12;
307 assertTrue("incorrect byteValue", bNumber == bValue);
  /external/srec/srec/EventLog/src/
EventLogImpl.c 755 ESR_BOOL bValue;
782 CHKLOG(rc, ESR_SessionGetBool(key, &bValue));
783 CHKLOG(rc, SR_EventLogTokenBool(self, key, bValue));
  /packages/apps/OMA-DM/engine/dmlib/linux_java/samples/unittest/src/
dmt_test.cc 512 bool bValue = ((strcasecmp(szData, "true") == 0) ? true : false);
514 if ( (e=ptrTree->CreateLeafNode( szNode, ptrNode, DmtData( bValue ) )) == NULL ) {
516 szNode, (bValue?"true":"false") );
    [all...]
  /external/pdfium/fpdfsdk/include/jsapi/
fxjs_v8.h 102 void JS_PutObjectBoolean(IJS_Runtime* pJSRuntime,v8::Handle<v8::Object> pObj, const wchar_t* PropertyName, bool bValue);
  /external/srec/shared/src/
SessionTypeImpl.c 1077 ESR_BOOL bValue;
1122 CHKLOG(rc, lstrtob(value, &bValue));
1126 CHKLOG(rc, self->setBool(self, key, bValue));
    [all...]
  /external/pdfium/core/include/fpdfapi/
fpdf_objects.h 512 void SetAtBoolean(FX_BSTR key, FX_BOOL bValue);
  /external/pdfium/core/src/fpdfapi/fpdf_parser/
fpdf_parser_objects.cpp 895 void CPDF_Dictionary::SetAtBoolean(FX_BSTR key, FX_BOOL bValue)
897 SetAt(key, FX_NEW CPDF_Boolean(bValue));
    [all...]
  /external/pdfium/fpdfsdk/src/jsapi/
fxjs_v8.cpp 598 void JS_PutObjectBoolean(IJS_Runtime* pJSRuntime,v8::Handle<v8::Object> pObj, const wchar_t* PropertyName, bool bValue)
601 pObj->Set(WSToJSString(pJSRuntime,PropertyName),v8::Boolean::New(pJSRuntime, bValue));

Completed in 536 milliseconds

1 2