Home
last modified time | relevance | path

Searched refs:wnd (Results 1 – 25 of 30) sorted by relevance

12

/external/aac/libAACenc/src/
Dgrp_data.cpp134 INT wnd; /* counts through windows in a group */ in FDKaacEnc_groupShortData() local
146 for (wnd = 0; wnd < TRANS_FAC; wnd++) { in FDKaacEnc_groupShortData()
149 if (mdctSpectrum[wnd * granuleLength_short + line] != in FDKaacEnc_groupShortData()
182 wnd = 0; in FDKaacEnc_groupShortData()
186 FIXP_DBL thresh = sfbThreshold->Short[wnd][sfb]; in FDKaacEnc_groupShortData()
188 thresh = nrgAddSaturate(thresh, sfbThreshold->Short[wnd + j][sfb]); in FDKaacEnc_groupShortData()
193 wnd += groupLen[grp]; in FDKaacEnc_groupShortData()
197 wnd = 0; in FDKaacEnc_groupShortData()
201 FIXP_DBL energy = sfbEnergy->Short[wnd][sfb]; in FDKaacEnc_groupShortData()
203 energy = nrgAddSaturate(energy, sfbEnergy->Short[wnd + j][sfb]); in FDKaacEnc_groupShortData()
[all …]
/external/webrtc/webrtc/base/
Dwin32window_unittest.cc42 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/
Dmain.cc23 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()
Dmain_wnd.cc115 GtkMainWnd* wnd = reinterpret_cast<GtkMainWnd*>(data); in Redraw() local
116 wnd->OnRedraw(); in Redraw()
/external/google-breakpad/src/client/windows/tests/crash_generation_app/
Dcrash_generation_app.cc117 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/
Dmain.cc43 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()
Dmain_wnd.cc31 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 …]
Dmain_wnd.h107 VideoRenderer(HWND wnd, int width, int height,
169 void CreateChildWindow(HWND* wnd, ChildWindowID id, const wchar_t* class_name,
/external/skia/tools/sk_app/win/
DRasterWindowContext_win.cpp39 RasterWindowContext_win::RasterWindowContext_win(HWND wnd, const DisplayParams& params) in RasterWindowContext_win() argument
41 , fWnd(wnd) { in RasterWindowContext_win()
43 GetClientRect(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()
DGLWindowContext_win.cpp52 GLWindowContext_win::GLWindowContext_win(HWND wnd, const DisplayParams& params) in GLWindowContext_win() argument
54 , fHWND(wnd) in GLWindowContext_win()
145 WindowContext* NewGLForWin(HWND wnd, const DisplayParams& params) { in NewGLForWin() argument
146 GLWindowContext_win* ctx = new GLWindowContext_win(wnd, params); in NewGLForWin()
DANGLEWindowContext_win.cpp59 ANGLEGLWindowContext_win::ANGLEGLWindowContext_win(HWND wnd, const DisplayParams& params) in ANGLEGLWindowContext_win() argument
60 : INHERITED(params), fHWND(wnd) { in ANGLEGLWindowContext_win()
170 WindowContext* NewANGLEForWin(HWND wnd, const DisplayParams& params) { in NewANGLEForWin() argument
171 ANGLEGLWindowContext_win* ctx = new ANGLEGLWindowContext_win(wnd, params); in NewANGLEForWin()
/external/skqp/tools/sk_app/win/
DRasterWindowContext_win.cpp39 RasterWindowContext_win::RasterWindowContext_win(HWND wnd, const DisplayParams& params) in RasterWindowContext_win() argument
41 , fWnd(wnd) { in RasterWindowContext_win()
43 GetClientRect(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()
DGLWindowContext_win.cpp52 GLWindowContext_win::GLWindowContext_win(HWND wnd, const DisplayParams& params) in GLWindowContext_win() argument
54 , fHWND(wnd) in GLWindowContext_win()
145 WindowContext* NewGLForWin(HWND wnd, const DisplayParams& params) { in NewGLForWin() argument
146 GLWindowContext_win* ctx = new GLWindowContext_win(wnd, params); in NewGLForWin()
DANGLEWindowContext_win.cpp59 ANGLEGLWindowContext_win::ANGLEGLWindowContext_win(HWND wnd, const DisplayParams& params) in ANGLEGLWindowContext_win() argument
60 : INHERITED(params), fHWND(wnd) { in ANGLEGLWindowContext_win()
170 WindowContext* NewANGLEForWin(HWND wnd, const DisplayParams& params) { in NewANGLEForWin() argument
171 ANGLEGLWindowContext_win* ctx = new ANGLEGLWindowContext_win(wnd, params); in NewANGLEForWin()
/external/universal-tween-engine/java/applets/src/aurelienribon/utils/swing/
DSwingHelper.java47 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/
DWindow.cpp106 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()
DWindow.h39 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/
Dconceal.cpp924 int wnd; in CConcealment_ApplyInter() local
936 for (wnd = 0; wnd < 8; wnd++) { in CConcealment_ApplyInter()
938 &pSpectralCoefficient[wnd * in CConcealment_ApplyInter()
944 &pConcealmentInfo->spectralCoefficient[wnd * (samplesPerFrame / in CConcealment_ApplyInter()
950 &pSpectralCoefficient[wnd * in CConcealment_ApplyInter()
952 &pSpecScale[wnd], &pConcealmentInfo->specScale[wnd], in CConcealment_ApplyInter()
953 &pSpecScale[wnd], sfbEnergyPrev, sfbEnergyAct, in CConcealment_ApplyInter()
/external/lzma/CPP/7zip/UI/FileManager/
DBrowseDialog.cpp74 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()
1014 bool Dlg_CreateFolder(HWND wnd, UString &destName) in Dlg_CreateFolder() argument
1021 if (dlg.Create(wnd) != IDOK) in Dlg_CreateFolder()
DBrowseDialog.h19 bool Dlg_CreateFolder(HWND wnd, UString &destName);
/external/lzma/CPP/Windows/Control/
DDialog.h14 CDialog(HWND wnd = NULL): CWindow(wnd){}; in CWindow() argument
/external/webrtc/webrtc/p2p/base/
Dpseudotcp.cc582 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()
Dpseudotcp.h116 uint16_t wnd; member
/external/webrtc/talk/media/testdata/
Dfaces.1280x720_P420.yuv2 …�������������������������������zpg`\^bgihddfjljiikljlptwz}���}tmgaafkpv}��wnd[WXZYTLFEFJQSQRTVWZ]…
3wnd]WRNJHGFDBBDGIIFB?<8779<@DILPUY\`cegijjklnpstsssqpprsqnkjkmljiihgeb`^]YWWURNLJJIHECB@><:9767874…
/external/hyphenation-patterns/cy/
Dhyph-cy.pat.txt6186 2wnd

12