Home
last modified time | relevance | path

Searched refs:cr (Results 1 – 19 of 19) sorted by relevance

/device/google/contexthub/firmware/os/platform/stm32/
Dpwr.c241 …uint32_t cr = PWR->CR &~ (PWR_CR_MRVLDS | PWR_CR_LPLVDS | PWR_CR_FPDS | PWR_CR_PDDS | PWR_CR_LPDS); in pwrSetSleepType() local
252 cr |= PWR_CR_FPDS; in pwrSetSleepType()
256 cr |= PWR_CR_FPDS | PWR_CR_LPDS; in pwrSetSleepType()
260 cr |= PWR_CR_LPLVDS | PWR_CR_LPDS; in pwrSetSleepType()
264 PWR->CR = cr; in pwrSetSleepType()
/device/generic/goldfish/camera/jpeg-stub/
DCompressor.cpp85 const uint8_t* cr[8]; in compressData() local
86 const uint8_t** planes[3] = { y, cb, cr }; in compressData()
120 cr[i/2] = vPlanar + (mCompressInfo.next_scanline + i) * width / 4; in compressData()
/device/google/cuttlefish/guest/hals/camera/
DCompressor.cpp104 const uint8_t* cr[8]; in compressData() local
105 const uint8_t** planes[3] = { y, cb, cr }; in compressData()
145 cr[i/2] = &vRows[offset]; in compressData()
DGrallocModule.cpp182 ycbcr->cr = ycbcr_layout.cr; in lock_ycbcr()
/device/google/cuttlefish/guest/hals/gralloc/legacy/
Dgralloc_vsoc_priv.h38 void* cr; member
267 out->cr = it; in formatToYcbcr()
/device/linaro/hikey/gralloc/
Dgralloc_module.cpp362 ycbcr->cr = (void *)((unsigned char *)hnd->base + ystride * hnd->height); in gralloc_lock_ycbcr()
376 ycbcr->cr = (void *)((unsigned char *)hnd->base + ystride * GRALLOC_ALIGN(hnd->height, 2)); in gralloc_lock_ycbcr()
389 ycbcr->cr = (void *)((unsigned char *)hnd->base + ystride * hnd->height + 1); in gralloc_lock_ycbcr()
/device/google/cuttlefish/guest/hals/hwcomposer/common/
Dgralloc_utils.cpp305 buffer_ycbcr.cr = ycbcr.cr; in LockYCbCr()
Dcpu_composer.cpp177 uint8_t* src_v = reinterpret_cast<uint8_t*>(src_buffer_ycbcr.cr); in ConvertFromYV12()
/device/linaro/dragonboard/gralloc/
Dgralloc_gbm.cpp509 ycbcr->cr = (unsigned char *)addr + ystride * hnd->height; in gralloc_gbm_bo_lock_ycbcr()
519 ycbcr->cr = (unsigned char *)addr + ystride * hnd->height; in gralloc_gbm_bo_lock_ycbcr()
/device/linaro/hikey/gralloc960/
Dmali_gralloc_bufferaccess.cpp154 ycbcr->cr = base + v_offset; in mali_gralloc_lock_ycbcr()
/device/amlogic/yukawa/hal/gralloc/
Dmali_gralloc_bufferaccess.cpp154 ycbcr->cr = base + v_offset; in mali_gralloc_lock_ycbcr()
/device/generic/goldfish-opengl/system/gralloc/
Dgralloc_old.cpp1437 ycbcr->cr = cpu_addr + vOffset; in gralloc_lock_ycbcr()
1447 ycbcr->y, ycbcr->cb, ycbcr->cr, ycbcr->ystride, ycbcr->cstride, in gralloc_lock_ycbcr()
Dgralloc_30.cpp281 ycbcr->cr = vaddr1 + vOffset; in lock_ycbcr()
/device/generic/goldfish-opengl/system/hals/
Dmapper3.cpp358 pYcbcr->cr = bufferBits + vOffset; in lockYCbCrImpl()
/device/google/cuttlefish/guest/hals/ril/libril/
Dril_service.cpp2921 RIL_CarrierRestrictions cr = {}; in setAllowedCarriers() local
2922 if (prepareCarrierRestrictions(cr, allAllowed, carriers.allowedCarriers, in setAllowedCarriers()
2927 CALL_ONREQUEST(pRI->pCI->requestNumber, &cr, sizeof(RIL_CarrierRestrictions), pRI, mSlotId); in setAllowedCarriers()
2929 freeCarrierRestrictions(cr); in setAllowedCarriers()
3321 RIL_CarrierRestrictions cr = {}; in setAllowedCarriers_1_4() local
3322 if (prepareCarrierRestrictions(cr, false, carriers.allowedCarriers, carriers.excludedCarriers, in setAllowedCarriers_1_4()
3328 crExt.len_allowed_carriers = cr.len_allowed_carriers; in setAllowedCarriers_1_4()
3329 crExt.allowed_carriers = cr.allowed_carriers; in setAllowedCarriers_1_4()
3330 crExt.len_excluded_carriers = cr.len_excluded_carriers; in setAllowedCarriers_1_4()
3331 crExt.excluded_carriers = cr.excluded_carriers; in setAllowedCarriers_1_4()
[all …]
/device/generic/goldfish/radio/libril/
Dril_service.cpp2721 RIL_CarrierRestrictions cr = {}; in setAllowedCarriers() local
2725 cr.len_allowed_carriers = carriers.allowedCarriers.size(); in setAllowedCarriers()
2726 allowedCarriers = (RIL_Carrier *)calloc(cr.len_allowed_carriers, sizeof(RIL_Carrier)); in setAllowedCarriers()
2733 cr.allowed_carriers = allowedCarriers; in setAllowedCarriers()
2735 cr.len_excluded_carriers = carriers.excludedCarriers.size(); in setAllowedCarriers()
2736 excludedCarriers = (RIL_Carrier *)calloc(cr.len_excluded_carriers, sizeof(RIL_Carrier)); in setAllowedCarriers()
2742 memset(allowedCarriers, 0, cr.len_allowed_carriers * sizeof(RIL_Carrier)); in setAllowedCarriers()
2747 cr.excluded_carriers = excludedCarriers; in setAllowedCarriers()
2749 for (int i = 0; i < cr.len_allowed_carriers; i++) { in setAllowedCarriers()
2756 for (int i = 0; i < cr.len_excluded_carriers; i++) { in setAllowedCarriers()
[all …]
/device/google/cuttlefish/guest/hals/ril/reference-libril/
Dril_service.cpp2952 RIL_CarrierRestrictions cr = {}; in setAllowedCarriers() local
2953 if (prepareCarrierRestrictions(cr, allAllowed, carriers.allowedCarriers, in setAllowedCarriers()
2958 CALL_ONREQUEST(pRI->pCI->requestNumber, &cr, sizeof(RIL_CarrierRestrictions), pRI, mSlotId); in setAllowedCarriers()
2960 freeCarrierRestrictions(cr); in setAllowedCarriers()
3445 RIL_CarrierRestrictions cr = {}; in setAllowedCarriers_1_4() local
3446 if (prepareCarrierRestrictions(cr, false, carriers.allowedCarriers, carriers.excludedCarriers, in setAllowedCarriers_1_4()
3452 crExt.len_allowed_carriers = cr.len_allowed_carriers; in setAllowedCarriers_1_4()
3453 crExt.allowed_carriers = cr.allowed_carriers; in setAllowedCarriers_1_4()
3454 crExt.len_excluded_carriers = cr.len_excluded_carriers; in setAllowedCarriers_1_4()
3455 crExt.excluded_carriers = cr.excluded_carriers; in setAllowedCarriers_1_4()
[all …]
/device/google/coral/audio/acdbdata/OEM/sm8150-iaxxx-f2proto-snd-card/
DworkspaceFile.qwsp1 …ZDHp84nzkYhzwm0UcgzIm2cQRMqbP+Bj9Bbs6G3cNkyY2+RhTt68G2/iI8p6gTUzNG3CDoHht+6cr+tyOMxWGSD8XCoiO0B3+v…
/device/google/coral/audio/acdbdata/OEM/sm8150-iaxxx-c2proto-snd-card/
DworkspaceFile.qwsp1 …ZDHp84nzkYhzwm0UcgzIm2cQRMqbP+Bj9Bbs6G3cNkyY2+RhTt68G2/iI8p6gTUzNG3CDoHht+6cr+tyOMxWGSD8XCoiO0B3+v…