Searched defs:value (Results 1 - 25 of 128) sorted by last modified time

123456

/hardware/qcom/display/libcopybit/
H A Dcopybit_c2d.cpp721 /** Set a parameter to value */
725 int value)
735 ctx->blitState.rotation = value<<16;
737 if(!value)
741 if (value < 0) value = 0;
742 if (value >= 256) value = 255;
744 ctx->blitState.global_alpha = value;
763 if((value
722 set_parameter_copybit( struct copybit_device_t *dev, int name, int value) argument
809 int value; local
[all...]
/hardware/qcom/display/libhwcomposer/
H A Dhwc.cpp228 int param, int* value)
238 value[0] = 0;
241 value[0] = m->fps;
242 ALOGI("fps: %d", value[0]);
247 value[0] = supported;
227 hwc_query(struct hwc_composer_device_1* dev, int param, int* value) argument
/hardware/qcom/display/liblight/
H A Dlights.c78 write_int(char const* path, int value) argument
86 int bytes = sprintf(buffer, "%d\n", value);
/hardware/qcom/display/liboverlay/
H A DoverlayUtils.cpp155 char value[PROPERTY_VALUE_MAX] = {0}; local
156 property_get("hw.trueMirrorSupported", value, "0");
157 int trueMirroringSupported = atoi(value);
295 char value[PROPERTY_VALUE_MAX]; local
296 property_get("persist.user.panel3D", value, "0");
297 int usePanel3D = atoi(value);
323 // The S3D is part of the HAL_PIXEL_FORMAT_YV12 value. Add
H A DoverlayUtils.h508 inline int alignup(int value, int a) { argument
509 //if align = 0, return the value. Else, do alignment.
510 return a ? ((((value - 1) / a) + 1) * a) : value;
514 inline int align(int value, int a) { argument
515 //if align = 0, return the value. Else, do alignment.
516 return a ? ((value + (a-1)) & ~(a-1)) : value;
696 ALOGE("%s: invalid rotation value (value
845 even_ceil(T& value) argument
851 even_floor(T& value) argument
[all...]
/hardware/qcom/gps/utils/
H A Dloc_log.cpp53 /* Get names from value */
67 /* Get names from value */
68 const char* loc_get_name_from_val(loc_name_val_s_type table[], int table_size, long value) argument
73 if (table[i].val == (long) value)
/hardware/qcom/media/mm-video/vidc/vdec/src/
H A Dh264_utils.cpp463 ALOGV("get_h264_nal_type - newFrame value %d\n",isNewFrame);
577 OMX_U32 value = 0; local
777 OMX_U32 value = 0, processed_bytes = 0; local
787 value = extract_bits(8);
788 payload_type += value;
790 } while (value == 0xFF);
793 value = extract_bits(8);
794 payload_size += value;
796 } while (value == 0xFF);
827 OMX_U32 value local
1055 OMX_U32 value = 0, scaling_matrix_limit; local
1132 OMX_U32 value = 0; local
1216 OMX_U32 value = 0, consumed_bytes = 3; local
[all...]
H A Dmp4_utils.cpp62 uint32 value = (bitBuf >> (32 - posPtr->bitPos - size)) & MASK(size); local
71 return value;
90 uint8 VerID = 1; /* default value */
H A Domx_vdec.cpp513 DEBUG_PRINT_HIGH("vidc.dec.debug.ts value is %d",m_debug_timestamp);
523 DEBUG_PRINT_HIGH("vidc.dec.debug.concealedmb value is %d",m_debug_concealedmb);
546 DEBUG_PRINT_HIGH("vidc.dec.debug.extradata value is %d",m_debug_extradata);
3041 // Frame rate only should be set if this is a "known value" or to
3043 // timestamps with max value (LLONG_MAX).
6491 char value[PROPERTY_VALUE_MAX]; local
6492 property_get("vidc.dec.debug.panframedata", value, NULL);
6494 if (atoi(value))
/hardware/qcom/media/mm-video/vidc/venc/src/
H A Domx_video_encoder.cpp398 char value[PROPERTY_VALUE_MAX] = {0}; local
399 property_get("vidc.venc.debug.sliceinfo", value, "0");
400 m_sDebugSliceinfo = (OMX_U32)atoi(value);
401 DEBUG_PRINT_HIGH("vidc.venc.debug.sliceinfo value is %d", m_sDebugSliceinfo);
443 DEBUG_PRINT_HIGH("\n Component_init return value = 0x%x", eRet);
/hardware/ril/mock-ril/src/cpp/
H A Djs_support.cpp56 v8::Local<v8::Value> value, const v8::AccessorInfo& info) {
57 gRadioState = RIL_RadioState(value->Int32Value());
55 RadioStateSetter(v8::Local<v8::String> property, v8::Local<v8::Value> value, const v8::AccessorInfo& info) argument
H A Dmsgheader.pb.h98 inline void set_cmd(::google::protobuf::uint32 value);
105 inline void set_length_data(::google::protobuf::uint32 value);
112 inline void set_status(::google::protobuf::uint32 value);
119 inline void set_token(::google::protobuf::uint64 value);
168 inline void MsgHeader::set_cmd(::google::protobuf::uint32 value) { argument
170 cmd_ = value;
184 inline void MsgHeader::set_length_data(::google::protobuf::uint32 value) { argument
186 length_data_ = value;
200 inline void MsgHeader::set_status(::google::protobuf::uint32 value) { argument
202 status_ = value;
216 set_token(::google::protobuf::uint64 value) argument
[all...]
H A Dnode_object_wrap.h103 static void WeakCallback (v8::Persistent<v8::Value> value, void *data) argument
106 assert(value == obj->handle_);
108 if (value.IsNearDeath()) delete obj;
H A Dprotobuf_v8.cpp206 const string& value = GET(String); local
207 return String::New(value.data(), value.length());
263 Handle<Value> value; local
270 value = array;
272 value = ToJs(instance, reflection, field, child_type, -1);
275 DBG("Type::ToJs: set property[%d]=%s", i, ToCString(value));
276 properties->Set(i, value);
303 Handle<Value> value,
306 DBG("Type::ToProto(instance, field, value, typ
301 ToProto(Message* instance, const FieldDescriptor* field, Handle<Value> value, const Type* type, bool repeated) argument
407 Handle<Value> value = properties->Get(i); local
[all...]
H A Dutil.cpp24 const char* ToCString(const v8::String::Utf8Value& value) { argument
25 return *value ? *value : "<string conversion failed>";
29 const char* ToCString(const v8::String::AsciiValue& value) { argument
30 return *value ? *value : "<string conversion failed>";
34 const char* ToCString(v8::Handle<v8::Value> value) { argument
35 v8::String::AsciiValue strAsciiValue(value);
H A Dworker_v8.cpp50 v8::Persistent<v8::Value> value; member in struct:WorkerV8::ArgInfo
81 Handler(WorkerV8 *worker, v8::Handle<v8::Value> value) argument
83 functionValue_ = v8::Persistent<v8::Value>::New(value);
95 v8::Handle<v8::Value> args(ai->value);
99 ai->value.Dispose();
142 ai->value = v8::Persistent<v8::Value>::New( args[0] );
160 ai->value = v8::Persistent<v8::Value>::New( args[0] );
/hardware/ril/reference-ril/
H A Dreference-ril.c79 // value: |00 |00 |00 |00
82 // Higher byte order give higher priority. Thus, a value of 0x0000000f represents
92 // It can be used as an l-value
877 int value = *(int *)data; local
880 int32_t preferred = net2pmask[value];
883 if (!networkModePossible(sMdmInfo, value)) {
902 PREFERRED_NETWORK(sMdmInfo) = value;
1195 * finally, a +CGREG: answer may have a fifth value that corresponds
2613 * Both current and preferred may be null. The corresponding value is ignored in that case.
2686 * current and preferred. If any of those pointers are NULL, the corresponding value
[all...]
/hardware/samsung_slsi/exynos5/exynos_omx/codecs/exynos_codecs/video/exynos5/mfc_v4l2/dec/src/
H A DExynosVideoDecoder.c486 seiAvailable = ext_ctrl[0].value;
487 seiArgmtId = ext_ctrl[1].value;
488 seiInfo = ext_ctrl[2].value;
489 seiGridPos = ext_ctrl[3].value;
1593 int value; local
1626 exynos_v4l2_g_ctrl(pCtx->hDec, V4L2_CID_MPEG_MFC51_VIDEO_DISPLAY_STATUS, &value);
1628 switch (value) {
/hardware/samsung_slsi/exynos5/exynos_omx/codecs/exynos_codecs/video/exynos5/mfc_v4l2/enc/src/
H A DExynosVideoEncoder.c303 ext_ctrl[0].value = pCommonParam->IDRPeriod;
305 ext_ctrl[1].value = pCommonParam->SliceMode; /* 0: one, 1: fixed #mb, 3: fixed #bytes */
307 ext_ctrl[2].value = pCommonParam->RandomIntraMBRefresh;
309 ext_ctrl[3].value = pCommonParam->PadControlOn;
311 ext_ctrl[4].value = pCommonParam->CrPadVal;
312 ext_ctrl[4].value |= (pCommonParam->CbPadVal << 8);
313 ext_ctrl[4].value |= (pCommonParam->LumaPadVal << 16);
315 ext_ctrl[5].value = pCommonParam->EnableFRMRateControl;
317 ext_ctrl[6].value = pCommonParam->EnableMBRateControl;
322 ext_ctrl[7].value
2001 int value; local
[all...]
/hardware/samsung_slsi/exynos5/include/
H A Dvideodev2.h852 this value to 32 bits.
853 As, currently, the max value is for V4L2_STD_ATSC_16_VSB (30 bits wide),
1148 __s32 value; member in struct:v4l2_control
1156 __s32 value; member in union:v4l2_ext_control::__anon1460
2253 __s32 value; member in union:v4l2_event_ctrl::__anon1470
/hardware/samsung_slsi/exynos5/libcamera/
H A DExynosCamera.cpp1908 ALOGE("ERR(%s):Unsupported value(%d)", __func__, m_curCameraInfo->focusMode);
1955 ALOGE("ERR(%s):Unsupported value(%d)", __func__, m_curCameraInfo->focusMode);
2100 bool ExynosCamera::startSmoothZoom(int value) argument
2107 return this->setZoom(value);
2282 num = cur_ctrl->value;
2286 id[i] = cur_ctrl->value;
2288 score[i] = cur_ctrl->value;
2291 face[i].x1 = cur_ctrl->value;
2293 face[i].y1 = cur_ctrl->value;
2295 face[i].x2 = cur_ctrl->value;
2603 setAntibanding(int value) argument
2705 setColorEffect(int value) argument
2774 setExposureCompensation(int value) argument
2812 setFlashMode(int value) argument
2914 setFocusMode(int value) argument
3194 setSceneMode(int value) argument
3282 setWhiteBalance(int value) argument
3358 setZoom(int value) argument
4098 setContrast(int value) argument
4348 setMeteringMode(int value) argument
[all...]
H A DExynosCameraHWInterface.cpp766 int value = 0; local
769 value = V4L2_PIX_FMT_RGB565;
771 value = V4L2_PIX_FMT_RGB32;
773 value = V4L2_PIX_FMT_NV21;
775 value = V4L2_PIX_FMT_NV12T;
777 value = V4L2_PIX_FMT_YUV420;
779 value = V4L2_PIX_FMT_YUYV;
781 value = V4L2_PIX_FMT_UYVY;
783 value = V4L2_PIX_FMT_UYVY;
785 value
1005 int value = -1; local
1104 int value = -1; local
[all...]
H A DExynosJpegEncoderForCamera.cpp211 JPEG_ERROR_LOG("[%s]src ion client create failed, value = %d\n", __func__, size);
620 unsigned int value)
628 memcpy(*pCur, &value, 4);
887 JPEG_ERROR_LOG("[%s]src ion client create failed, value = %d\n", __func__, m_ionJpegClient);
616 writeExifIfd(unsigned char **pCur, unsigned short tag, unsigned short type, unsigned int count, unsigned int value) argument
/hardware/samsung_slsi/exynos5/libcamera2/
H A DExynosJpegEncoderForCamera.cpp583 unsigned int value)
591 memcpy(*pCur, &value, 4);
925 JPEG_ERROR_LOG("[%s]src ion client create failed, value = %d\n", __func__, ionClient);
579 writeExifIfd(unsigned char **pCur, unsigned short tag, unsigned short type, unsigned int count, unsigned int value) argument
/hardware/samsung_slsi/exynos5/libcsc/
H A Dcsc.c524 int value)
535 csc_handle->hw_property.fixed_node = value;
538 csc_handle->hw_property.mode_drm = value;
521 csc_set_hw_property( void *handle, CSC_HW_PROPERTY_TYPE property, int value) argument

Completed in 5908 milliseconds

123456