/external/libxml2/ |
D | list.c | 59 xmlLinkDeallocator(xmlListPtr l, xmlLinkPtr lk) in xmlLinkDeallocator() argument 61 (lk->prev)->next = lk->next; in xmlLinkDeallocator() 62 (lk->next)->prev = lk->prev; in xmlLinkDeallocator() 64 l->linkDeallocator(lk); in xmlLinkDeallocator() 65 xmlFree(lk); in xmlLinkDeallocator() 100 xmlLinkPtr lk; in xmlListLowerSearch() local 104 … for(lk = l->sentinel->next;lk != l->sentinel && l->linkCompare(lk->data, data) <0 ;lk = lk->next); in xmlListLowerSearch() 105 return lk; in xmlListLowerSearch() 120 xmlLinkPtr lk; in xmlListHigherSearch() local 124 … for(lk = l->sentinel->prev;lk != l->sentinel && l->linkCompare(lk->data, data) >0 ;lk = lk->prev); in xmlListHigherSearch() [all …]
|
D | xmlwriter.c | 97 static void xmlFreeTextWriterStackEntry(xmlLinkPtr lk); 101 static void xmlFreeTextWriterNsStackEntry(xmlLinkPtr lk); 522 xmlLinkPtr lk; in xmlTextWriterStartDocument() local 531 lk = xmlListFront(writer->nodes); in xmlTextWriterStartDocument() 532 if ((lk != NULL) && (xmlLinkGetData(lk) != NULL)) { in xmlTextWriterStartDocument() 641 xmlLinkPtr lk; in xmlTextWriterEndDocument() local 651 while ((lk = xmlListFront(writer->nodes)) != NULL) { in xmlTextWriterEndDocument() 652 p = (xmlTextWriterStackEntry *) xmlLinkGetData(lk); in xmlTextWriterEndDocument() 727 xmlLinkPtr lk; in xmlTextWriterStartComment() local 737 lk = xmlListFront(writer->nodes); in xmlTextWriterStartComment() [all …]
|
/external/valgrind/main/helgrind/ |
D | hg_main.c | 207 static void del_LockN ( Lock* lk ) in del_LockN() argument 209 tl_assert(HG_(is_sane_LockN)(lk)); in del_LockN() 210 tl_assert(lk->hbso); in del_LockN() 211 libhb_so_dealloc(lk->hbso); in del_LockN() 212 if (lk->heldBy) in del_LockN() 213 VG_(deleteBag)( lk->heldBy ); in del_LockN() 215 if (lk == admin_locks) { in del_LockN() 216 tl_assert(lk->admin_prev == NULL); in del_LockN() 217 if (lk->admin_next) in del_LockN() 218 lk->admin_next->admin_prev = NULL; in del_LockN() [all …]
|
D | hg_errors.c | 242 static Bool elem_LockP_vector ( Lock** vec, Lock* lk ) in elem_LockP_vector() argument 245 tl_assert(lk); in elem_LockP_vector() 248 if (vec[n] == lk) in elem_LockP_vector() 564 void HG_(record_error_UnlockUnlocked) ( Thread* thr, Lock* lk ) in HG_() 568 tl_assert( HG_(is_sane_LockN)(lk) ); in HG_() 574 = mk_LockP_from_LockN(lk, False/*!allowed_to_be_invalid*/); in HG_() 583 Thread* owner, Lock* lk ) in HG_() 588 tl_assert( HG_(is_sane_LockN)(lk) ); in HG_() 594 = mk_LockP_from_LockN(lk, False/*!allowed_to_be_invalid*/); in HG_() 812 static void announce_LockP ( Lock* lk ) in announce_LockP() argument [all …]
|
/external/clang/test/CodeGen/ |
D | unsigned-overflow.c | 5 unsigned long li, lj, lk; variable 20 li = lj + lk; in testlongadd() 32 li = lj - lk; in testlongsub() 44 li = lj * lk; in testlongmul()
|
/external/openssl/crypto/engine/ |
D | tb_asnmth.c | 208 ENGINE_FIND_STR *lk = arg; in look_str_cb() local 210 if (lk->ameth) in look_str_cb() 217 if (((int)strlen(ameth->pem_str) == lk->len) && in look_str_cb() 218 !strncasecmp(ameth->pem_str, lk->str, lk->len)) in look_str_cb() 220 lk->e = e; in look_str_cb() 221 lk->ameth = ameth; in look_str_cb()
|
/external/clang/test/CodeGenCUDA/ |
D | address-spaces.cu | 32 __shared__ int lk; in foo() local 34 lk++; in foo()
|
/external/libxml2/include/libxml/ |
D | list.h | 32 typedef void (*xmlListDeallocator) (xmlLinkPtr lk); 128 xmlLinkGetData (xmlLinkPtr lk);
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCInstrFormats.td | 86 class IForm<bits<6> opcode, bit aa, bit lk, dag OOL, dag IOL, string asmstr, 94 let Inst{31} = lk; 98 class BForm<bits<6> opcode, bit aa, bit lk, dag OOL, dag IOL, string asmstr> 112 let Inst{31} = lk; 115 class BForm_1<bits<6> opcode, bits<5> bo, bit aa, bit lk, dag OOL, dag IOL, 117 : BForm<opcode, aa, lk, OOL, IOL, asmstr> { 204 class IForm_and_DForm_1<bits<6> opcode1, bit aa, bit lk, bits<6> opcode2, 216 let Inst{31} = lk; 224 class IForm_and_DForm_4_zero<bits<6> opcode1, bit aa, bit lk, bits<6> opcode2, 227 : IForm_and_DForm_1<opcode1, aa, lk, opcode2, [all …]
|
/external/opencv/cv/src/ |
D | cvapprox.cpp | 171 int lk, dk_num; in icvApproximateChainTC89() local 187 lk = dx * dx + dy * dy; in icvApproximateChainTC89() 191 d.f = (float) (((double) d_num) * lk - ((double) dk_num) * l); in icvApproximateChainTC89() 193 if( k > 1 && (l >= lk || ((d_num > 0 && d.i <= 0) || (d_num < 0 && d.i >= 0)))) in icvApproximateChainTC89() 197 l = lk; in icvApproximateChainTC89()
|
/external/valgrind/main/lackey/ |
D | Makefile.am | 3 EXTRA_DIST = docs/lk-manual.xml
|
/external/quake/quake/src/QW/client/ |
D | winquake.h | 68 void VID_ForceLockState (int lk);
|
D | vid_win.c | 1822 int lk; in VID_ForceUnlockedAndReturnState() local 1827 lk = lockcount; in VID_ForceUnlockedAndReturnState() 1839 return lk; in VID_ForceUnlockedAndReturnState() 1843 void VID_ForceLockState (int lk) in VID_ForceLockState() argument 1846 if (!dibdc && lk) in VID_ForceLockState() 1852 lockcount = lk; in VID_ForceLockState()
|
/external/quake/quake/src/WinQuake/ |
D | winquake.h | 67 void VID_ForceLockState (int lk);
|
D | vid_win.cpp | 1781 int lk; in VID_ForceUnlockedAndReturnState() local 1786 lk = lockcount; in VID_ForceUnlockedAndReturnState() 1798 return lk; in VID_ForceUnlockedAndReturnState() 1802 void VID_ForceLockState (int lk) in VID_ForceLockState() argument 1805 if (!dibdc && lk) in VID_ForceLockState() 1811 lockcount = lk; in VID_ForceLockState()
|
/external/srec/srec/EventLog/src/ |
D | EventLogImpl.c | 67 LARGE_INTEGER lk, lu; in PGetCPUTimes() local 75 lk.LowPart = k.dwLowDateTime; in PGetCPUTimes() 76 lk.HighPart = k.dwHighDateTime; in PGetCPUTimes() 77 *kernelTime = (long)(lk.QuadPart / 10000); in PGetCPUTimes()
|
/external/chromium/net/base/ |
D | effective_tld_names.gperf | 224 assn.lk, 0 732 com.lk, 0 964 edu.lk, 0 1353 gov.lk, 0 1422 grp.lk, 0 1542 hotel.lk, 0 1638 int.lk, 0 2013 lk, 0 keyword 2038 ltd.lk, 0 2423 net.lk, 0 [all …]
|
D | effective_tld_names.dat | 1823 // lk : http://www.nic.lk/seclevpr.html 1824 lk 1825 gov.lk 1826 sch.lk 1827 net.lk 1828 int.lk 1829 com.lk 1830 org.lk 1831 edu.lk 1832 ngo.lk [all …]
|
/external/chromium/chrome/browser/chromeos/login/ |
D | ownership_service.cc | 234 base::AutoLock lk(ownership_status_lock_); in SetStatus() local
|
D | user_manager.cc | 618 base::AutoLock lk(current_user_is_owner_lock_); in current_user_is_owner() local 623 base::AutoLock lk(current_user_is_owner_lock_); in set_current_user_is_owner() local
|
/external/icu4c/data/translit/ |
D | Korean_Latin_BGN.txt | 64 ᆯᄏ → lk $aspirate ; # HANGUL JONGSEONG RIEUL + CHOSEONG KHIEUKH 178 ᆰᄏ → lk $aspirate ; # HANGUL JONGSEONG RIEUL-KIYEOK + CHOSEONG KHIEUKH
|
/external/icu4c/i18n/ |
D | ucol_bld.cpp | 651 UChar sk[1], lk[1]; in ucol_uprv_getCaseBits() local 653 u_toLargeKana(&n[i], 1, lk, 1, status); in ucol_uprv_getCaseBits() 654 if(sk[0] == n[i] && lk[0] != n[i]) { in ucol_uprv_getCaseBits()
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/fr-FR/ |
D | fr-FR_kdt_posd.pkb | 51 �K�:y+@���Iq tlk�E����ض.@/����%�~E�@@�@��]���Anj�Q#(��_�D� �ifg0i;�y�…
|
/external/icu4c/data/region/ |
D | ksf.txt | 158 NF{"zɛ nɔ́fɔlk"}
|
D | yav.txt | 65 DK{"tanemálk"}
|