/external/icu/icu4c/source/common/ |
D | utext.cpp | 37 utext_access(UText *ut, int64_t index, UBool forward) { in utext_access() argument 38 return ut->pFuncs->access(ut, index, forward); in utext_access() 44 utext_moveIndex32(UText *ut, int32_t delta) { in utext_moveIndex32() argument 48 if(ut->chunkOffset>=ut->chunkLength && !utext_access(ut, ut->chunkNativeLimit, TRUE)) { in utext_moveIndex32() 51 c = ut->chunkContents[ut->chunkOffset]; in utext_moveIndex32() 53 c = utext_next32(ut); in utext_moveIndex32() 58 ut->chunkOffset++; in utext_moveIndex32() 64 if(ut->chunkOffset<=0 && !utext_access(ut, ut->chunkNativeStart, FALSE)) { in utext_moveIndex32() 67 c = ut->chunkContents[ut->chunkOffset-1]; in utext_moveIndex32() 69 c = utext_previous32(ut); in utext_moveIndex32() [all …]
|
D | ubrk.cpp | 167 UText ut = UTEXT_INITIALIZER; in ubrk_setText() local 168 utext_openUChars(&ut, text, textLength, status); in ubrk_setText() 169 ((BreakIterator*)bi)->setText(&ut, *status); in ubrk_setText()
|
/external/toybox/toys/pending/ |
D | last.c | 59 struct utmp *ut = (struct utmp *)l->arg; in find_and_dlink() local 61 if (!strncmp(ut->ut_line, devname, UT_LINESIZE)) { in find_and_dlink() 89 struct utmp ut; in last_main() local 104 loc -= sizeof(ut); in last_main() 109 xreadall(fd, &ut, sizeof(ut)); in last_main() 110 *tm = ut.ut_tv.tv_sec; in last_main() 111 if (*ut.ut_line == '~') { in last_main() 112 if (!strcmp(ut.ut_user, "runlevel")) ut.ut_type = RUN_LVL; in last_main() 113 else if (!strcmp(ut.ut_user, "reboot")) ut.ut_type = BOOT_TIME; in last_main() 114 else if (!strcmp(ut.ut_user, "shutdown")) ut.ut_type = SHUTDOWN_TIME; in last_main() [all …]
|
/external/icu/icu4c/source/common/unicode/ |
D | utext.h | 182 utext_close(UText *ut); 225 utext_openUTF8(UText *ut, const char *s, int64_t length, UErrorCode *status); 243 utext_openUChars(UText *ut, const UChar *s, int64_t length, UErrorCode *status); 260 utext_openUnicodeString(UText *ut, icu::UnicodeString *s, UErrorCode *status); 276 utext_openConstUnicodeString(UText *ut, const icu::UnicodeString *s, UErrorCode *status); 292 utext_openReplaceable(UText *ut, icu::Replaceable *rep, UErrorCode *status); 307 utext_openCharacterIterator(UText *ut, icu::CharacterIterator *ci, UErrorCode *status); 406 utext_nativeLength(UText *ut); 422 utext_isLengthExpensive(const UText *ut); 450 utext_char32At(UText *ut, int64_t nativeIndex); [all …]
|
/external/icu/icu4c/source/test/intltest/ |
D | utxttest.cpp | 25 UText *openFragmentedUnicodeString(UText *ut, UnicodeString *s, UErrorCode *status); 167 UText *ut = NULL; in TestString() local 193 ut = utext_openUChars(NULL, buf, -1, &status); in TestString() 195 TestAccess(sa, ut, cpCount, cpMap); in TestString() 196 utext_close(ut); in TestString() 204 ut = utext_openUChars(NULL, buf, saLen, &status); in TestString() 206 TestAccess(sa, ut, cpCount, cpMap); in TestString() 207 utext_close(ut); in TestString() 213 ut = utext_openUnicodeString(NULL, &sa, &status); in TestString() 215 TestAccess(sa, ut, cpCount, cpMap); in TestString() [all …]
|
D | utxttest.h | 46 void TestAccess(const UnicodeString &us, UText *ut, int cpCount, m *cpMap); 47 void TestAccessNoClone(const UnicodeString &us, UText *ut, int cpCount, m *cpMap); 48 void TestCMR (const UnicodeString &us, UText *ut, int cpCount, m *nativeMap, m *utf16Map); 49 void TestCopyMove(const UnicodeString &us, UText *ut, UBool move, 53 UText *ut, // UnicodeText object under test.
|
/external/icu/icu4c/source/i18n/ |
D | regextxt.h | 23 #define UTEXT_USES_U16(ut) (NULL==((ut)->pFuncs->mapNativeIndexToUTF16)) argument 30 # define UTEXT_FULL_TEXT_IN_CHUNK(ut,len) (FALSE) argument 32 … define UTEXT_FULL_TEXT_IN_CHUNK(ut,len) ((0==((ut)->chunkNativeStart))&&((len)==((ut)->chunkNativ…
|
/external/e2fsprogs/lib/blkid/ |
D | getsize.c | 93 struct utsname ut; in blkid_get_dev_size() local 95 if ((uname(&ut) == 0) && in blkid_get_dev_size() 96 ((ut.release[0] == '2') && (ut.release[1] == '.') && in blkid_get_dev_size() 97 (ut.release[2] < '6') && (ut.release[3] == '.'))) in blkid_get_dev_size()
|
/external/markdown/MarkdownTest/Tests_2004/ |
D | Yuri-Footnotes.text | 2 tempor incididunt ut labore et dolore magna aliqua[^2]. Ut enim ad minim 3 veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea 15 tempora incidunt ut labore et dolore magnam aliquam quaerat 18 [^2]: Sed ut perspiciatis unde omnis iste natus error sit voluptatem 24 eiusmod tempor incididunt ut labore et dolore[^foo] magna aliqua. 27 laboris nisi ut aliquip ex ea commodo consequat.
|
D | Yuri-Attributes.text | 6 incididunt ut labore et dolore magna aliqua. 9 nisi ut aliquip ex ea commodo consequat.{@class=first_item}
|
/external/pdfium/xfa/src/fgas/src/localization/ |
D | fx_datetime.cpp | 288 FX_UNITIME ut = m_iUnitime; in AddYears() local 289 if (ut < 0) { in AddYears() 290 ut = -ut; in AddYears() 292 FX_UNITIME r = ut % g_FXMillisecondsPerDay; in AddYears() 307 FX_UNITIME ut = m_iUnitime; in AddMonths() local 308 if (ut < 0) { in AddMonths() 309 ut = -ut; in AddMonths() 311 FX_UNITIME r = ut % g_FXMillisecondsPerDay; in AddMonths() 374 CFX_Unitime ut(t); in FromUnitime() local 375 FX_DaysToDate(ut.GetDayOfAD(), m_DateTime.Date.sDate.year, in FromUnitime() [all …]
|
/external/e2fsprogs/lib/ext2fs/ |
D | getsize.c | 163 struct utsname ut; in ext2fs_get_device_size2() local 165 if ((uname(&ut) == 0) && in ext2fs_get_device_size2() 166 ((ut.release[0] == '2') && (ut.release[1] == '.') && in ext2fs_get_device_size2() 167 (ut.release[2] < '6') && (ut.release[3] == '.'))) in ext2fs_get_device_size2()
|
D | unix_io.c | 478 struct utsname ut; in unix_open() local 602 (uname(&ut) == 0) && in unix_open() 603 ((ut.release[0] == '2') && (ut.release[1] == '.') && in unix_open() 604 (ut.release[2] == '4') && (ut.release[3] == '.') && in unix_open() 605 (ut.release[4] == '1') && (ut.release[5] >= '0') && in unix_open() 606 (ut.release[5] < '8')) && in unix_open()
|
/external/opencv3/modules/calib3d/src/ |
D | epnp.cpp | 126 void epnp::compute_ccs(const double * betas, const double * ut) in compute_ccs() argument 132 const double * v = ut + 12 * (11 - i); in compute_ccs() 160 double mtm[12 * 12], d[12], ut[12 * 12]; in compute_pose() local 163 CvMat Ut = cvMat(12, 12, CV_64F, ut); in compute_pose() 173 compute_L_6x10(ut, l_6x10); in compute_pose() 181 rep_errors[1] = compute_R_and_t(ut, Betas[1], Rs[1], ts[1]); in compute_pose() 185 rep_errors[2] = compute_R_and_t(ut, Betas[2], Rs[2], ts[2]); in compute_pose() 189 rep_errors[3] = compute_R_and_t(ut, Betas[3], Rs[3], ts[3]); in compute_pose() 297 double epnp::compute_R_and_t(const double * ut, const double * betas, in compute_R_and_t() argument 300 compute_ccs(betas, ut); in compute_R_and_t() [all …]
|
D | epnp.h | 45 void compute_ccs(const double * betas, const double * ut); 59 void compute_L_6x10(const double * ut, double * l_6x10); 65 double compute_R_and_t(const double * ut, const double * betas,
|
D | upnp.h | 89 void compute_ccs(const double * betas, const double * ut); 109 void compute_L_6x12(const double * ut, double * l_6x12); 115 double compute_R_and_t(const double * ut, const double * betas,
|
D | upnp.cpp | 107 double mtm[12 * 12], d[12], ut[12 * 12], vt[12 * 12]; in compute_pose() local 110 Mat Ut = Mat(12, 12, CV_64F, ut); in compute_pose() 122 compute_L_6x12(ut, l_6x12); in compute_pose() 130 rep_errors[1] = compute_R_and_t(ut, Betas[1], Rs[1], ts[1]); in compute_pose() 134 rep_errors[2] = compute_R_and_t(ut, Betas[2], Rs[2], ts[2]); in compute_pose() 232 double upnp::compute_R_and_t(const double * ut, const double * betas, in compute_R_and_t() argument 235 compute_ccs(betas, ut); in compute_R_and_t() 305 void upnp::compute_ccs(const double * betas, const double * ut) in compute_ccs() argument 312 const double * v = ut + 12 * (9 + i); in compute_ccs() 627 void upnp::compute_L_6x12(const double * ut, double * l_6x12) in compute_L_6x12() argument [all …]
|
/external/ppp/pppd/ |
D | sys-linux.c | 2173 struct utmp ut, *utp; in logwtmp() local 2189 memcpy(&ut, utp, sizeof(ut)); in logwtmp() 2192 memset(&ut, 0, sizeof(ut)); in logwtmp() 2194 if (ut.ut_id[0] == 0) in logwtmp() 2195 strncpy(ut.ut_id, line + 3, sizeof(ut.ut_id)); in logwtmp() 2197 strncpy(ut.ut_user, name, sizeof(ut.ut_user)); in logwtmp() 2198 strncpy(ut.ut_line, line, sizeof(ut.ut_line)); in logwtmp() 2200 time(&ut.ut_time); in logwtmp() 2202 ut.ut_type = USER_PROCESS; in logwtmp() 2203 ut.ut_pid = mypid; in logwtmp() [all …]
|
/external/icu/icu4c/source/tools/gendict/ |
D | gendict.cpp | 119 UCharsTrieBuilder *ut; member in DataDict 127 DataDict(UBool isBytesTrie, UErrorCode &status) : bt(NULL), ut(NULL), in DataDict() 132 ut = new UCharsTrieBuilder(status); in DataDict() 138 delete ut; in ~DataDict() 198 if (ut) { ut->add(word, value, status); } in addWord() 208 ut->buildUnicodeString(USTRINGTRIE_BUILD_SMALL, s, status); in serializeUChars()
|
/external/webrtc/webrtc/base/ |
D | win32.cc | 320 void FileTimeToUnixTime(const FILETIME& ft, time_t* ut) { in FileTimeToUnixTime() argument 321 ASSERT(NULL != ut); in FileTimeToUnixTime() 341 *ut = static_cast<time_t>((current_ul.QuadPart - base_ul.QuadPart) / RATIO); in FileTimeToUnixTime() 344 void UnixTimeToFileTime(const time_t& ut, FILETIME* ft) { in UnixTimeToFileTime() argument 365 current_ul.QuadPart = base_ul.QuadPart + static_cast<int64_t>(ut) * RATIO; in UnixTimeToFileTime()
|
D | win32.h | 79 void FileTimeToUnixTime(const FILETIME& ft, time_t* ut); 82 void UnixTimeToFileTime(const time_t& ut, FILETIME * ft);
|
/external/pcre/dist/testdata/ |
D | grepinput3 | 4 …mod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exer…
|
/external/e2fsprogs/util/ |
D | subst.c | 310 struct utimbuf ut; in main() local 381 ut.actime = stbuf.st_atime; in main() 382 ut.modtime = time(0); in main() 383 if (utime(outfn, &ut) < 0) in main()
|
/external/e2fsprogs/debugfs/ |
D | dump.c | 72 struct utimbuf ut; in fix_perms() local 96 ut.actime = inode->i_atime; in fix_perms() 97 ut.modtime = inode->i_mtime; in fix_perms() 98 if (utime(name, &ut) == -1) in fix_perms()
|
/external/mesa3d/src/mesa/main/ |
D | ffvertex_prog.c | 1533 struct ureg ut = get_temp(p); in build_atten_pointsize() local 1536 emit_op1(p, OPCODE_ABS, ut, WRITEMASK_Y, swizzle1(eye, Z)); in build_atten_pointsize() 1538 emit_op3(p, OPCODE_MAD, ut, WRITEMASK_X, swizzle1(ut, Y), in build_atten_pointsize() 1540 emit_op3(p, OPCODE_MAD, ut, WRITEMASK_X, swizzle1(ut, Y), in build_atten_pointsize() 1541 ut, swizzle1(state_attenuation, X)); in build_atten_pointsize() 1544 emit_op1(p, OPCODE_RSQ, ut, WRITEMASK_X, ut ); in build_atten_pointsize() 1548 emit_op2(p, OPCODE_MUL, out, WRITEMASK_X, ut, state_size); in build_atten_pointsize() 1553 emit_op2(p, OPCODE_MUL, ut, WRITEMASK_X, ut, state_size); in build_atten_pointsize() 1554 emit_op2(p, OPCODE_MAX, ut, WRITEMASK_X, ut, swizzle1(state_size, Y)); in build_atten_pointsize() 1555 emit_op2(p, OPCODE_MIN, out, WRITEMASK_X, ut, swizzle1(state_size, Z)); in build_atten_pointsize() [all …]
|