Home
last modified time | relevance | path

Searched full:csd (Results 1 – 25 of 265) sorted by relevance

1234567891011

/external/icu/icu4c/source/i18n/
Ducsdet.cpp38 CharsetDetector* csd = new CharsetDetector(*status); in ucsdet_open() local
41 delete csd; in ucsdet_open()
42 csd = NULL; in ucsdet_open()
45 return (UCharsetDetector *) csd; in ucsdet_open()
51 CharsetDetector *csd = (CharsetDetector *) ucsd; in ucsdet_close() local
52 delete csd; in ucsdet_close()
123 CharsetDetector *csd = (CharsetDetector *) ucsd; in ucsdet_detectAll() local
125 return (const UCharsetMatch**)csd->detectAll(*maxMatchesFound,*status); in ucsdet_detectAll()
129 // ucsdet_getDetectableCharsetName(const UCharsetDetector *csd, int32_t index, UErrorCode *status)
134 // return csd->getCharsetName(index,*status);
[all …]
/external/icu/icu4c/source/test/cintltst/
Ducsdetst.c94 UCharsetDetector *csd = ucsdet_open(&status); in TestConstruction() local
95 UEnumeration *e = ucsdet_getAllDetectableCharsets(csd, &status); in TestConstruction()
114 ucsdet_close(csd); in TestConstruction()
127 UCharsetDetector *csd = ucsdet_open(&status); in TestUTF8() local
134 ucsdet_setText(csd, bytes, byteLength, &status); in TestUTF8()
140 match = ucsdet_detect(csd, &status); in TestUTF8()
153 ucsdet_setDeclaredEncoding(csd, "UTF-8", 5, &status); /* for coverage */ in TestUTF8()
157 ucsdet_close(csd); in TestUTF8()
173 UCharsetDetector *csd = ucsdet_open(&status); in TestUTF16() local
178 ucsdet_setText(csd, beBytes, beLength, &status); in TestUTF16()
[all …]
/external/icu/icu4c/source/test/intltest/
Dcsdetest.cpp169 LocalUCharsetDetectorPointer csd(ucsdet_open(&status)); in checkEncoding() local
181 ucsdet_setText(csd.getAlias(), bytes.get(), byteLength, &status); in checkEncoding()
184 const UCharsetMatch **matches = ucsdet_detectAll(csd.getAlias(), &matchCount, &status); in checkEncoding()
254 LocalUCharsetDetectorPointer csd(ucsdet_open(status)); in ConstructionTest() local
255 LocalUEnumerationPointer e(ucsdet_getAllDetectableCharsets(csd.getAlias(), status)); in ConstructionTest()
281 LocalUEnumerationPointer eActive(ucsdet_getDetectableCharsets(csd.getAlias(), status)); in ConstructionTest()
325 UCharsetDetector *csd = ucsdet_open(&status); in UTF8Test() local
329 ucsdet_setText(csd, bytes, byteLength, &status); in UTF8Test()
330 match = ucsdet_detect(csd, &status); in UTF8Test()
343 ucsdet_setDeclaredEncoding(csd, "UTF-8", 5, &status); /* for coverage */ in UTF8Test()
[all …]
/external/arm-trusted-firmware/drivers/brcm/emmc/
Demmc_csl_sdcmd.c169 card->csd.mmc.structure = (resp.data.r2.rsp4 >> 22) & 0x3; in sd_cmd9()
170 card->csd.mmc.csdSpecVer = (resp.data.r2.rsp4 >> 18) & 0x0f; in sd_cmd9()
171 card->csd.mmc.taac = (resp.data.r2.rsp4 >> 8) & 0xff; in sd_cmd9()
172 card->csd.mmc.nsac = resp.data.r2.rsp4 & 0xff; in sd_cmd9()
173 card->csd.mmc.speed = resp.data.r2.rsp3 >> 24; in sd_cmd9()
174 card->csd.mmc.classes = (resp.data.r2.rsp3 >> 12) & 0xfff; in sd_cmd9()
175 card->csd.mmc.rdBlkLen = (resp.data.r2.rsp3 >> 8) & 0xf; in sd_cmd9()
176 card->csd.mmc.rdBlkPartial = (resp.data.r2.rsp3 >> 7) & 0x01; in sd_cmd9()
177 card->csd.mmc.wrBlkMisalign = (resp.data.r2.rsp3 >> 6) & 0x1; in sd_cmd9()
178 card->csd.mmc.rdBlkMisalign = (resp.data.r2.rsp3 >> 5) & 0x1; in sd_cmd9()
[all …]
Demmc_csl_sdcard.c64 /* CSD field TRAN_SPEED: in process_csd_mmc_speed()
437 /* read CSD */ in init_mmc_card()
445 EMMC_TRACE("From CSD... cardData.csd.mmc.speed = 0x%X\n", in init_mmc_card()
446 emmc_global_vars_ptr->cardData.csd.mmc.speed); in init_mmc_card()
448 emmc_global_vars_ptr->cardData.csd.mmc.speed); in init_mmc_card()
/external/v4l2_codec2/common/include/v4l2_codec2/common/
DEncodeHelpers.h45 // When encoding a video the codec-specific data (CSD; e.g. SPS and PPS for H264 encoding) will be
46 // concatenated to the first encoded slice. This function extracts the CSD out of the bitstream and
47 // stores it into |csd|.
48 void extractCSDInfo(std::unique_ptr<C2StreamInitDataInfo::output>* const csd, const uint8_t* data,
/external/icu/icu4c/source/samples/csdet/
Dcsdet.c34 UCharsetDetector* csd; in main() local
55 csd = ucsdet_open(&status); in main()
56 ucsdet_setText(csd, buffer, inputLength, &status); in main()
58 csm = ucsdet_detectAll(csd, &matchCount, &status); in main()
72 ucsdet_close(csd); in main()
/external/ltp/testcases/network/lib6/
Dasapi_01.c379 int csd[2]; /* control sockets */ in csum_test() local
383 isocketpair(PF_INET, SOCK_STREAM, 0, csd); in csum_test()
389 FD_SET(csd[1], &rset_save); in csum_test()
391 maxfd = MAX(sd, csd[1]); in csum_test()
396 close(csd[0]); in csum_test()
402 close(csd[1]); in csum_test()
403 client(csd[0]); in csum_test()
428 if (write(csd[1], packet, cc) < 0) { in csum_test()
433 if (FD_ISSET(csd[1], &rset)) { in csum_test()
436 cc = read(csd[1], buf, sizeof(buf)); in csum_test()
/external/autotest/client/site_tests/hardware_DiskSize/
Dhardware_DiskSize.py47 Data' (CSD & EXT_CSD) defined by JEDEC JESD84-A44.pdf if possible.
49 CSD :: /sys/class/block/<device>/device/csd
53 CSD[C_SIZE] = 0xfff == eMMC > 2GB
/external/v4l2_codec2/common/
DEncodeHelpers.cpp87 void extractCSDInfo(std::unique_ptr<C2StreamInitDataInfo::output>* const csd, const uint8_t* data, in extractCSDInfo() argument
93 csd->reset(); in extractCSDInfo()
120 *csd = C2StreamInitDataInfo::output::AllocUnique(configDataLength, 0u); in extractCSDInfo()
121 std::memcpy((*csd)->m.value, tmpConfigData.get(), configDataLength); in extractCSDInfo()
/external/v4l2_codec2/components/
DV4L2EncodeComponent.cpp462 // supplied unless this is a drain or CSD request. in queueTask()
476 // The codec 2.0 framework might queue an empty CSD request, but this is currently not in queueTask()
477 // supported. We will return the CSD with the first encoded buffer work. in queueTask()
479 ALOGV("Discarding empty CSD request"); in queueTask()
869 // If no CSD (content-specific-data, e.g. SPS for H.264) has been submitted yet, we expect this in onOutputBufferDone()
870 // output block to contain CSD. We only submit the CSD once, even if it's attached to each key in onOutputBufferDone()
873 ALOGV("No CSD submitted yet, extracting CSD"); in onOutputBufferDone()
874 std::unique_ptr<C2StreamInitDataInfo::output> csd; in onOutputBufferDone() local
876 extractCSDInfo(&csd, view.data(), view.capacity()); in onOutputBufferDone()
877 if (!csd) { in onOutputBufferDone()
[all …]
DV4L2DecodeComponent.cpp93 // or the input buffer is CSD, or we decide to drop the frame. in isWorkDone()
107 // 3. Work is not EOS, CSD, or marked with dropped frame. in isNoShowFrameWork()
404 // Client may queue a work with no input buffer for either it's EOS or empty CSD, otherwise in queueTask()
408 ALOGE("Invalid work: work with no input buffer should be EOS or CSD."); in queueTask()
453 // Try to parse color aspects from bitstream for CSD work of non-secure H264 codec. in pumpPendingWorks()
489 // Directly report the empty CSD work as finished. in pumpPendingWorks()
521 // CSD Work doesn't have output buffer, the corresponding onOutputFrameReady() won't be in onDecodeDone()
/external/arm-trusted-firmware/drivers/renesas/common/emmc/
Demmc_std.h35 /* CSD register Macros */
48 /* CSD register Macros */
165 /* CSD */
379 * Max freq (Card Spec)[Hz]. It changes dynamically by CSD and
456 /* CSD registers (4byte align) */
457 uint8_t csd_data[EMMC_MAX_CSD_LENGTH] /* CSD */
462 /* EXT CSD registers (8byte align) */
/external/kernel-headers/original/uapi/drm/
Dv3d_drm.h253 /* sync object to block on before running the CSD job. Each
254 * CSD job will execute in the order submitted to its FD.
255 * Synchronization against rendering/TFU jobs or CSD from
259 /* Sync object to signal when the CSD job is done. */
/external/mesa3d/include/drm-uapi/
Dv3d_drm.h253 /* sync object to block on before running the CSD job. Each
254 * CSD job will execute in the order submitted to its FD.
255 * Synchronization against rendering/TFU jobs or CSD from
259 /* Sync object to signal when the CSD job is done. */
/external/python/cpython3/Lib/
Dplatform.py361 def win32_ver(release='', version='', csd='', ptype=''): argument
365 return release, version, csd, ptype
380 csd = 'SP{}'.format(winver.service_pack_major)
382 if csd[:13] == 'Service Pack ':
383 csd = 'SP' + csd[13:]
406 return release, version, csd, ptype
841 release, version, csd, ptype = win32_ver()
1212 rel, vers, csd, ptype = win32_ver(version)
1216 platform = _platform(system, release, version, csd)
/external/exoplayer/tree/library/extractor/src/main/java/com/google/android/exoplayer2/extractor/ts/
DH262Reader.java158 // The csd data is complete, so we can decode and output the media format. in consume()
215 * Parses the {@link Format} and frame duration from a csd buffer.
217 * @param csdBuffer The csd buffer.
303 * @return Whether the csd data is now complete. If true is returned, neither
/external/eigen/lapack/
DCMakeLists.txt216 add_lapack_test(scsd.out csd.in xeigtsts)
283 add_lapack_test(dcsd.out csd.in xeigtstd)
348 add_lapack_test(ccsd.out csd.in xeigtstc)
415 add_lapack_test(zcsd.out csd.in xeigtstz)
/external/mesa3d/src/broadcom/vulkan/
Dv3dv_uniforms.c413 assert(job->csd.wg_count[data] > 0); in v3dv_write_uniforms_wg_offsets()
416 cl_aligned_u32(&uniforms, job->csd.wg_count[data]); in v3dv_write_uniforms_wg_offsets()
421 assert(job->csd.shared_memory); in v3dv_write_uniforms_wg_offsets()
422 cl_aligned_reloc(&job->indirect, &uniforms, job->csd.shared_memory, 0); in v3dv_write_uniforms_wg_offsets()
/external/python/cpython3/Doc/library/
Dplatform.rst200 .. function:: win32_ver(release='', version='', csd='', ptype='')
203 ``(release, version, csd, ptype)`` referring to OS release, version number,
204 CSD level (service pack) and OS type (multi/single processor).
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/mediacodec/
DMediaFormatUtil.java45 * @param csdBuffers The csd buffers to set.
49 format.setByteBuffer("csd-" + i, ByteBuffer.wrap(csdBuffers.get(i))); in setCsdBuffers()
/external/python/cpython2/Doc/library/
Dplatform.rst197 .. function:: win32_ver(release='', version='', csd='', ptype='')
200 ``(release, version, csd, ptype)`` referring to OS release, version number,
201 CSD level (service pack) and OS type (multi/single processor).
/external/python/cpython2/Lib/
Dplatform.py656 def win32_ver(release='', version='', csd='', ptype=''): argument
660 return release, version, csd, ptype
679 csd = 'SP{}'.format(winver.service_pack_major)
681 if csd[:13] == 'Service Pack ':
682 csd = 'SP' + csd[13:]
701 return release, version, csd, ptype
1191 release,version,csd,ptype = win32_ver()
1593 rel,vers,csd,ptype = win32_ver(version)
1597 platform = _platform(system,release,version,csd)
/external/icu/icu4c/source/data/curr/
Dfur.txt58 CSD{
59 "CSD",
/external/autotest/client/site_tests/hardware_StorageWearoutDetect/
Dhardware_StorageWearoutDetect.py33 # Example " Extended CSD rev 1.7 (MMC 5.0)"
34 MMC_DETECT = r"\s*Extended CSD rev.*MMC (?P<version>\d+.\d+)"

1234567891011