/external/aac/libAACenc/src/ |
D | grp_data.cpp | 122 INT wnd; /* counts through windows in a group */ in FDKaacEnc_groupShortData() local 134 for (wnd = 0; wnd < TRANS_FAC; wnd++) in FDKaacEnc_groupShortData() 140 …if ( mdctSpectrum[wnd*granuleLength_short+line] != FL2FXCONST_SPC(0.0) ) break; /* this band is no… in FDKaacEnc_groupShortData() 175 wnd = 0; in FDKaacEnc_groupShortData() 181 FIXP_DBL thresh = sfbThreshold->Short[wnd][sfb]; in FDKaacEnc_groupShortData() 184 thresh = nrgAddSaturate(thresh, sfbThreshold->Short[wnd+j][sfb]); in FDKaacEnc_groupShortData() 189 wnd += groupLen[grp]; in FDKaacEnc_groupShortData() 193 wnd = 0; in FDKaacEnc_groupShortData() 199 FIXP_DBL energy = sfbEnergy->Short[wnd][sfb]; in FDKaacEnc_groupShortData() 202 energy = nrgAddSaturate(energy, sfbEnergy->Short[wnd+j][sfb]); in FDKaacEnc_groupShortData() [all …]
|
/external/webrtc/webrtc/base/ |
D | win32window_unittest.cc | 42 TestWindow wnd; in TEST() local 43 EXPECT_TRUE(wnd.handle() == NULL); in TEST() 44 EXPECT_FALSE(wnd.destroyed()); in TEST() 45 EXPECT_TRUE(wnd.Create(0, L"Test", 0, 0, 0, 0, 100, 100)); in TEST() 46 EXPECT_TRUE(wnd.handle() != NULL); in TEST() 47 EXPECT_EQ(kDummyResult, ::SendMessage(wnd.handle(), WM_USER, 1, 2)); in TEST() 48 EXPECT_EQ(WM_USER, wnd.msg().message); in TEST() 49 EXPECT_EQ(1, wnd.msg().wParam); in TEST() 50 EXPECT_EQ(2, wnd.msg().lParam); in TEST() 51 wnd.Destroy(); in TEST() [all …]
|
/external/webrtc/webrtc/examples/peerconnection/client/linux/ |
D | main.cc | 23 CustomSocketServer(rtc::Thread* thread, GtkMainWnd* wnd) in CustomSocketServer() argument 24 : thread_(thread), wnd_(wnd), conductor_(NULL), client_(NULL) {} in CustomSocketServer() 77 GtkMainWnd wnd(FLAG_server, FLAG_port, FLAG_autoconnect, FLAG_autocall); in main() local 78 wnd.Create(); in main() 82 CustomSocketServer socket_server(thread, &wnd); in main() 89 new rtc::RefCountedObject<Conductor>(&client, &wnd)); in main() 96 wnd.Destroy(); in main()
|
D | main_wnd.cc | 115 GtkMainWnd* wnd = reinterpret_cast<GtkMainWnd*>(data); in Redraw() local 116 wnd->OnRedraw(); in Redraw()
|
/external/google-breakpad/src/client/windows/tests/crash_generation_app/ |
D | crash_generation_app.cc | 117 HWND wnd = CreateWindow(window_class, in InitInstance() local 129 if (!wnd) { in InitInstance() 133 ShowWindow(wnd, command_show); in InitInstance() 134 UpdateWindow(wnd); in InitInstance() 357 LRESULT CALLBACK WndProc(HWND wnd, in WndProc() argument 366 HINSTANCE instance = (HINSTANCE)GetWindowLongPtr(wnd, GWLP_HINSTANCE); in WndProc() 377 wnd, in WndProc() 381 DestroyWindow(wnd); in WndProc() 402 return DefWindowProc(wnd, message, w_param, l_param); in WndProc() 413 wnd, in WndProc() [all …]
|
/external/webrtc/webrtc/examples/peerconnection/client/ |
D | main.cc | 43 MainWnd wnd(FLAG_server, FLAG_port, FLAG_autoconnect, FLAG_autocall); in wWinMain() local 44 if (!wnd.Create()) { in wWinMain() 52 new rtc::RefCountedObject<Conductor>(&client, &wnd)); in wWinMain() 58 if (!wnd.PreTranslateMessage(&msg)) { in wWinMain() 67 if (!wnd.PreTranslateMessage(&msg)) { in wWinMain()
|
D | main_wnd.cc | 31 void CalculateWindowSizeForText(HWND wnd, const wchar_t* text, in CalculateWindowSizeForText() argument 33 HDC dc = ::GetDC(wnd); in CalculateWindowSizeForText() 36 ::ReleaseDC(wnd, dc); in CalculateWindowSizeForText() 38 ::GetClientRect(wnd, &client); in CalculateWindowSizeForText() 39 ::GetWindowRect(wnd, &window); in CalculateWindowSizeForText() 54 std::string GetWindowText(HWND wnd) { in GetWindowText() argument 56 ::GetWindowTextA(wnd, &text[0], ARRAYSIZE(text)); in GetWindowText() 445 void MainWnd::CreateChildWindow(HWND* wnd, MainWnd::ChildWindowID id, in CreateChildWindow() argument 448 if (::IsWindow(*wnd)) in CreateChildWindow() 453 *wnd = ::CreateWindowEx(ex_style, class_name, L"", style, in CreateChildWindow() [all …]
|
D | main_wnd.h | 107 VideoRenderer(HWND wnd, int width, int height, 169 void CreateChildWindow(HWND* wnd, ChildWindowID id, const wchar_t* class_name,
|
/external/skia/tools/viewer/sk_app/win/ |
D | RasterWindowContext_win.cpp | 39 RasterWindowContext_win::RasterWindowContext_win(HWND wnd, const DisplayParams& params) in RasterWindowContext_win() argument 41 , fWnd(wnd) { in RasterWindowContext_win() 43 GetWindowRect(wnd, &rect); in RasterWindowContext_win() 90 WindowContext* NewRasterForWin(HWND wnd, const DisplayParams& params) { in NewRasterForWin() argument 91 WindowContext* ctx = new RasterWindowContext_win(wnd, params); in NewRasterForWin()
|
D | GLWindowContext_win.cpp | 40 GLWindowContext_win::GLWindowContext_win(HWND wnd, const DisplayParams& params) in GLWindowContext_win() argument 42 , fHWND(wnd) in GLWindowContext_win() 131 WindowContext* NewGLForWin(HWND wnd, const DisplayParams& params) { in NewGLForWin() argument 132 GLWindowContext_win* ctx = new GLWindowContext_win(wnd, params); in NewGLForWin()
|
/external/universal-tween-engine/java/applets/src/aurelienribon/utils/swing/ |
D | SwingHelper.java | 47 public static void centerInWindow(Window wnd, Component cmp) { in centerInWindow() argument 48 Dimension size = wnd.getSize(); in centerInWindow() 49 Point loc = wnd.getLocationOnScreen(); in centerInWindow()
|
/external/lzma/CPP/Windows/ |
D | Window.cpp | 106 bool MySetWindowText(HWND wnd, LPCWSTR s) in MySetWindowText() argument 109 return BOOLToBool(::SetWindowTextW(wnd, s)); in MySetWindowText() 110 return BOOLToBool(::SetWindowTextA(wnd, UnicodeStringToMultiByte(s))); in MySetWindowText()
|
D | Window.h | 39 inline bool MySetWindowText(HWND wnd, LPCWSTR s) { return BOOLToBool(::SetWindowText(wnd, s)); } in MySetWindowText() argument 41 bool MySetWindowText(HWND wnd, LPCWSTR s);
|
/external/aac/libAACdec/src/ |
D | conceal.cpp | 1064 int wnd; in CConcealment_ApplyInter() local 1074 for (wnd = 0; wnd < 8; wnd++) in CConcealment_ApplyInter() 1077 &pSpectralCoefficient[wnd * (samplesPerFrame / 8)], /* spec_(n-2) */ in CConcealment_ApplyInter() 1084 &pConcealmentInfo->spectralCoefficient[wnd * (samplesPerFrame / 8)], /* spec_n */ in CConcealment_ApplyInter() 1091 &pSpectralCoefficient[wnd * (samplesPerFrame / 8)], /* spec_(n-1) */ in CConcealment_ApplyInter() 1092 &pSpecScale[wnd], in CConcealment_ApplyInter() 1093 &pConcealmentInfo->specScale[wnd], in CConcealment_ApplyInter() 1094 &pSpecScale[wnd], in CConcealment_ApplyInter()
|
/external/syslinux/core/lwip/src/core/ |
D | tcp_out.c | 106 tcphdr->wnd = htons(pcb->rcv_ann_wnd); in tcp_output_alloc_header() 895 u32_t wnd, snd_nxt; in tcp_output() local 908 wnd = LWIP_MIN(pcb->snd_wnd, pcb->cwnd); in tcp_output() 920 ntohl(seg->tcphdr->seqno) - pcb->lastack + seg->len > wnd)) { in tcp_output() 941 pcb->snd_wnd, pcb->cwnd, wnd, pcb->lastack)); in tcp_output() 946 pcb->snd_wnd, pcb->cwnd, wnd, in tcp_output() 953 ntohl(seg->tcphdr->seqno) - pcb->lastack + seg->len <= wnd) { in tcp_output() 969 pcb->snd_wnd, pcb->cwnd, wnd, in tcp_output() 1060 seg->tcphdr->wnd = htons(pcb->rcv_ann_wnd); in tcp_output_segment() 1207 tcphdr->wnd = PP_HTONS(TCP_WND); in tcp_rst()
|
D | tcp_in.c | 172 tcphdr->wnd = ntohs(tcphdr->wnd); in tcp_input() 484 npcb->snd_wnd = tcphdr->wnd; in tcp_listen_input() 635 pcb->snd_wnd = tcphdr->wnd; in tcp_process() 863 (pcb->snd_wl2 == ackno && tcphdr->wnd > pcb->snd_wnd)) { in tcp_receive() 864 pcb->snd_wnd = tcphdr->wnd; in tcp_receive() 873 if (pcb->snd_wnd != tcphdr->wnd) { in tcp_receive()
|
D | tcp.c | 1531 ntohs(tcphdr->wnd))); in tcp_debug_print()
|
/external/lzma/CPP/7zip/UI/FileManager/ |
D | BrowseDialog.h | 19 bool Dlg_CreateFolder(HWND wnd, UString &destName);
|
D | BrowseDialog.cpp | 74 static void MessageBox_Error_Global(HWND wnd, const wchar_t *message) in MessageBox_Error_Global() argument 76 ::MessageBoxW(wnd, message, L"7-Zip", MB_ICONERROR); in MessageBox_Error_Global() 79 static void MessageBox_HResError(HWND wnd, HRESULT errorCode, const wchar_t *name) in MessageBox_HResError() argument 87 MessageBox_Error_Global(wnd, s); in MessageBox_HResError() 1013 bool Dlg_CreateFolder(HWND wnd, UString &destName) in Dlg_CreateFolder() argument 1020 if (dlg.Create(wnd) != IDOK) in Dlg_CreateFolder()
|
/external/lzma/CPP/Windows/Control/ |
D | Dialog.h | 14 CDialog(HWND wnd = NULL): CWindow(wnd){}; in CWindow() argument
|
/external/syslinux/core/lwip/src/netif/ppp/ |
D | vj.c | 285 if ((deltaS = (u_short)(ntohs(th->wnd) - ntohs(oth->wnd))) != 0) { in vj_compress_tcp() 538 DECODES(th->wnd); in vj_uncompress_tcp()
|
/external/webrtc/webrtc/p2p/base/ |
D | pseudotcp.cc | 582 seg.wnd = bytes_to_short(buffer + 14); in parse() 595 << "><WND=" << seg.wnd in parse() 739 m_snd_wnd = static_cast<uint32_t>(seg.wnd) << m_swnd_scale; in process() 791 m_snd_wnd = static_cast<uint32_t>(seg.wnd) << m_swnd_scale; in process()
|
D | pseudotcp.h | 116 uint16_t wnd; member
|
/external/syslinux/core/lwip/src/include/lwip/ |
D | tcp_impl.h | 164 PACK_STRUCT_FIELD(u16_t wnd);
|
/external/webrtc/talk/media/testdata/ |
D | faces.1280x720_P420.yuv | 2 …�������������������������������zpg`\^bgihddfjljiikljlptwz}���}tmgaafkpv}��wnd[WXZYTLFEFJQSQRTVWZ]… 3 …wnd]WRNJHGFDBBDGIIFB?<8779<@DILPUY\`cegijjklnpstsssqpprsqnkjkmljiihgeb`^]YWWURNLJJIHECB@><:9767874…
|