Searched defs:wd (Results 1 - 19 of 19) sorted by relevance

/external/clang/test/CodeGen/
H A Dchar-literal.c79 wchar_t wd = L'\U0010F00B'; local
/external/clang/test/SemaCXX/
H A Dflexible-array-test.cpp20 int wd; member in struct:inotify_event
35 eventForId.insert(ptr->wd, *ptr);
/external/srec/srec/crec/
H A Dtext_parser.c36 const char *wd, *p; local
51 /* wd points to the first char of last word */
52 wd = transcription;
55 for (wd = transcription + tlen - 1; wd > transcription; wd--)
57 if (*wd == ' ')
59 wd++;
64 for (p = wd, q = copy_of_word; ; p++, q++)
87 next_atok = get_arc_for_word_without_slot_annotation(atok, wd, contex
[all...]
/external/dropbear/libtomcrypt/src/headers/
H A Dtomcrypt_prng.h29 wd; member in struct:fortuna_prng
/external/icu4c/test/intltest/
H A Dtsdtfmsy.cpp95 const UnicodeString * wd = symbol->getWeekdays(cnt,context[i],width[j]); local
100 logln(wd[k]);
H A Dcalregts.cpp548 int32_t wd = cal->get(UCAL_DAY_OF_WEEK, status); local
549 if (wd == UCAL_SATURDAY || wd == UCAL_SUNDAY) {
/external/kernel-headers/original/linux/
H A Dinotify.h16 * such as IN_CREATE, IN_DELETE, IN_OPEN, IN_CLOSE, ..., relative to the wd.
19 __s32 wd; /* watch descriptor */ member in struct:inotify_event
76 * ih, inode, and wd are never written to once the watch is created.
88 __s32 wd; /* watch descriptor */ member in struct:inotify_watch
205 static inline int inotify_rm_wd(struct inotify_handle *ih, __u32 wd) argument
/external/qemu/distrib/sdl-1.2.15/src/video/qtopia/
H A DSDL_QWin.cc250 int wd = rect.width()<<1; local
256 SDL_memcpy(fb, buf, wd);
286 int wd = rect.width()<<1; local
292 SDL_memcpy(fb, buf, wd);
299 int wd = rect.width(); local
315 w = wd;
/external/icu4c/i18n/
H A Dhebrwcal.cpp399 int32_t wd = (day % 7); // Day of week (0 == Monday) local
401 if (wd == 2 || wd == 4 || wd == 6) {
404 wd = (day % 7);
406 if (wd == 1 && frac > 15*HOUR_PARTS+204 && !isLeapYear(year) ) {
412 else if (wd == 0 && frac > 21*HOUR_PARTS+589 && isLeapYear(year-1) ) {
/external/e2fsprogs/e2fsck/
H A Drehash.c641 struct write_dir_struct *wd = (struct write_dir_struct *) priv_data; local
647 if (blockcnt >= wd->outdir->num) {
648 e2fsck_read_bitmaps(wd->ctx);
650 ext2fs_unmark_block_bitmap(wd->ctx->block_found_map, blk);
653 wd->cleared++;
659 dir = wd->outdir->buf + (blockcnt * fs->blocksize);
660 wd->err = ext2fs_write_dir_block(fs, *block_nr, dir);
661 if (wd->err)
670 struct write_dir_struct wd; local
678 wd
[all...]
/external/chromium/chrome/browser/sync/
H A Dprofile_sync_service_autofill_unittest.cc164 ACTION_P4(MakeAutofillSyncComponents, service, wd, pdm, dtc) {
169 new AutofillModelAssociator(service, wd, pdm);
171 new AutofillChangeProcessor(model_associator, wd, pdm, dtc);
176 ACTION_P4(MakeAutofillProfileSyncComponents, service, wd, pdm, dtc) {
181 new AutofillProfileModelAssociator(service, wd, pdm);
183 new AutofillProfileChangeProcessor(model_associator, wd, pdm, dtc);
196 WebDatabase* wd,
215 WebDatabase* wd,
219 WillOnce(MakeAutofillSyncComponents(service, wd, pdm, dtc));
236 WebDatabase* wd,
213 SetExpectation(ProfileSyncFactoryMock* factory, ProfileSyncService* service, WebDatabase* wd, PersonalDataManager* pdm, DataTypeController* dtc) argument
234 SetExpectation(ProfileSyncFactoryMock* factory, ProfileSyncService* service, WebDatabase* wd, PersonalDataManager* pdm, DataTypeController* dtc) argument
[all...]
/external/valgrind/main/coregrind/
H A Dm_libcfile.c430 Char* wd = NULL; local
434 wd = VG_(getenv)( envvar );
435 if (wd == NULL || (1+VG_(strlen)(wd) >= szB))
437 VG_(strncpy_safely)(startup_wd, wd, szB);
/external/webkit/Source/JavaScriptCore/wtf/
H A DDateMath.cpp210 int wd = (static_cast<int>(msToDays(ms)) + 4) % 7; local
211 if (wd < 0)
212 wd += 7;
213 return wd;
/external/libvorbis/lib/
H A Dvorbisfile.c2052 float wd=w[i]*w[i]; local
2053 float ws=1.-wd;
2054 d[i]=d[i]*wd + s[i]*ws;
2061 float wd=w[i]*w[i]; local
2062 d[i]=d[i]*wd;
/external/clang/tools/c-index-test/
H A Dc-index-test.c2889 CXString wd; local
2937 wd = clang_CompileCommand_getDirectory(CCmd);
2938 if (chdir(clang_getCString(wd)) != 0) {
2939 printf("Could not chdir to %s\n", clang_getCString(wd));
2943 clang_disposeString(wd);
3127 CXString wd; local
3172 wd = clang_CompileCommand_getDirectory(CCmd);
3173 printf("workdir:'%s'", clang_getCString(wd));
3174 clang_disposeString(wd);
/external/sqlite/dist/orig/
H A Dsqlite3.c14507 int wd; /* 0=Monday, 1=Tuesday, ... 6=Sunday */ local
14508 wd = (int)(((x.iJD+43200000)/86400000)%7);
14509 sqlite3_snprintf(3, &z[j],"%02d",(nDay+7-wd)/7);
[all...]
/external/sqlite/dist/
H A Dsqlite3.c14507 int wd; /* 0=Monday, 1=Tuesday, ... 6=Sunday */ local
14508 wd = (int)(((x.iJD+43200000)/86400000)%7);
14509 sqlite3_snprintf(3, &z[j],"%02d",(nDay+7-wd)/7);
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 1080 milliseconds