HomeSort by relevance Sort by last modified time
    Searched defs:h2 (Results 1 - 25 of 30) sorted by null

1 2

  /external/clearsilver/util/test/
hdf_hash_test.c 11 HDF *hdf, *h2; local
34 h2 = hdf_get_obj(hdf, "CGI");
35 err = hdf_set_value(h2, "Foo", "Bang");
  /libcore/luni/src/test/java/org/apache/harmony/luni/internal/net/www/protocol/http/
HeaderTest.java 48 Header h2 = new Header(h1.getFieldMap()); local
49 assertEquals(2, h2.length());
50 assertEquals("key", h2.getKey(0));
51 assertEquals("value1", h2.get(0));
52 assertEquals("key", h2.getKey(1));
53 assertEquals("value2", h2.get(1));
  /frameworks/base/media/libstagefright/codecs/amrnb/enc/src/
cor_h.cpp 192 Word16 i, j, k, dec, h2[L_CODE];
206 h2[i] = shr (h[i], 1);
217 h2[i] = pv_round (L_shl (L_mult (h[i], k), 9));
226 s = L_mac (s, h2[k], h2[k]);
237 s = L_mac (s, h2[k], h2[k + dec]);
278 Word16 h2[L_CODE]; local
316 p_h2 = h2;
343 p_h2 = h2;
    [all...]
  /external/chromium/base/gfx/
rect_unittest.cc 49 int h2; member in struct:__anon2160
63 gfx::Rect r2(tests[i].x2, tests[i].y2, tests[i].w2, tests[i].h2);
77 int h2; member in struct:__anon2161
104 gfx::Rect r2(tests[i].x2, tests[i].y2, tests[i].w2, tests[i].h2);
123 int h2; member in struct:Test
153 gfx::Rect r2(tests[i].x2, tests[i].y2, tests[i].w2, tests[i].h2);
181 int h2; member in struct:Test
205 gfx::Rect r2(tests[i].x2, tests[i].y2, tests[i].w2, tests[i].h2);
  /external/openssl/crypto/sha/
sha.h 102 SHA_LONG h0,h1,h2,h3,h4; member in struct:SHAstate_st
  /external/openssl/include/openssl/
sha.h 102 SHA_LONG h0,h1,h2,h3,h4; member in struct:SHAstate_st
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
product-weight.h 74 ssize_t h2 = value2_.Hash(); local
77 return h1 << lshift ^ h1 >> rshift ^ h2;
  /hardware/ti/wlan/wl1271/CUDK/configurationutility/src/
ticon.c 82 THandle h2; local
204 CHK_NULL(h2 = (THandle) Console_AddDirExt(pTiCon->hConsole, (THandle) h1, (PS8)"rx data Filter", (PS8)"Rx Data Filter" ) );
205 Console_AddToken(pTiCon->hConsole, h2, (PS8)"Enable", (PS8)"Enable Rx Data Filtering", (FuncToken_t) CuCmd_EnableRxDataFilters, NULL );
206 Console_AddToken(pTiCon->hConsole, h2, (PS8)"Disable", (PS8)"Enable Rx Data Filtering", (FuncToken_t) CuCmd_DisableRxDataFilters, NULL );
215 Console_AddToken(pTiCon->hConsole, h2, (PS8)"Add", (PS8)"Add Rx Data Filter", (FuncToken_t) CuCmd_AddRxDataFilter, aaa );
225 Console_AddToken(pTiCon->hConsole, h2, (PS8)"Remove", (PS8)"Remove Rx Data Filter", (FuncToken_t) CuCmd_RemoveRxDataFilter, aaa );
227 Console_AddToken(pTiCon->hConsole, h2, (PS8)"Statistics", (PS8)"Print Rx Data Filtering Statistics", (FuncToken_t) CuCmd_GetRxDataFiltersStatistics, NULL );
228 CHK_NULL(h2 = (THandle) Console_AddDirExt(pTiCon->hConsole, (THandle) h1, (PS8)"Keep alive", (PS8)"Keep Alive templates" ) );
229 Console_AddToken(pTiCon->hConsole, h2, (PS8)"Enable", (PS8)"Set global keep-alive flag to enable", (FuncToken_t)CuCmd_EnableKeepAlive, NULL );
230 Console_AddToken(pTiCon->hConsole, h2, (PS8)"Disable", (PS8)"Set global keep-alive flag to disable", (FuncToken_t)CuCmd_DisableKeepAlive (…)
    [all...]
  /system/wlan/ti/wilink_6_1/CUDK/configurationutility/src/
ticon.c 82 THandle h2; local
205 CHK_NULL(h2 = (THandle) Console_AddDirExt(pTiCon->hConsole, (THandle) h1, (PS8)"rx data Filter", (PS8)"Rx Data Filter" ) );
206 Console_AddToken(pTiCon->hConsole, h2, (PS8)"Enable", (PS8)"Enable Rx Data Filtering", (FuncToken_t) CuCmd_EnableRxDataFilters, NULL );
207 Console_AddToken(pTiCon->hConsole, h2, (PS8)"Disable", (PS8)"Enable Rx Data Filtering", (FuncToken_t) CuCmd_DisableRxDataFilters, NULL );
216 Console_AddToken(pTiCon->hConsole, h2, (PS8)"Add", (PS8)"Add Rx Data Filter", (FuncToken_t) CuCmd_AddRxDataFilter, aaa );
226 Console_AddToken(pTiCon->hConsole, h2, (PS8)"Remove", (PS8)"Remove Rx Data Filter", (FuncToken_t) CuCmd_RemoveRxDataFilter, aaa );
228 Console_AddToken(pTiCon->hConsole, h2, (PS8)"Statistics", (PS8)"Print Rx Data Filtering Statistics", (FuncToken_t) CuCmd_GetRxDataFiltersStatistics, NULL );
229 CHK_NULL(h2 = (THandle) Console_AddDirExt(pTiCon->hConsole, (THandle) h1, (PS8)"Keep alive", (PS8)"Keep Alive templates" ) );
230 Console_AddToken(pTiCon->hConsole, h2, (PS8)"Enable", (PS8)"Set global keep-alive flag to enable", (FuncToken_t)CuCmd_EnableKeepAlive, NULL );
231 Console_AddToken(pTiCon->hConsole, h2, (PS8)"Disable", (PS8)"Set global keep-alive flag to disable", (FuncToken_t)CuCmd_DisableKeepAlive (…)
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldFileHandlerTest.java 142 FileHandler h2 = new FileHandler("%t/log/string"); local
146 h2.publish(r);
150 h2.close();
  /external/chromium/net/http/
http_response_headers_unittest.cc 461 std::string h2; local
462 parsed2->GetNormalizedHeaders(&h2);
463 EXPECT_EQ(string(tests[i].expected_headers), h2); local
    [all...]
  /external/openssl/apps/
s_socket.c 388 struct hostent *h1,*h2; local
458 h2=GetHostByName(*host);
459 if (h2 == NULL)
465 if (h2->h_addrtype != AF_INET)
  /external/qemu/distrib/sdl-1.2.12/src/video/gem/
SDL_gemevents.c 82 short x2,y2,w2,h2; local
86 x2=y2=w2=h2 = 0;
90 wind_get (GEM_handle, WF_WORKXYWH, &x2, &y2, &w2, &h2);
99 mouse_event,x2,y2,w2,h2,
172 short x2,y2,w2,h2; local
229 wind_get (message[3], WF_WORKXYWH, &x2, &y2, &w2, &h2);
232 SDL_PrivateResize(w2, h2);
249 wind_get (message[3], WF_WORKXYWH, &x2, &y2, &w2, &h2);
251 SDL_PrivateResize(w2, h2);
296 short x2, y2, w2, h2; local
    [all...]
SDL_gemvideo.c 722 short x2,y2,w2,h2; local
743 if (!wind_calc(WC_BORDER, GEM_win_type, 0,0,width,height, &x2,&y2,&w2,&h2)) {
751 y2 = (GEM_desk_h-h2)>>1;
768 GEM_handle=wind_create(GEM_win_type, x2,y2,w2,h2);
784 wind_open(GEM_handle,x2,y2,w2,h2);
787 wind_get (GEM_handle, WF_WORKXYWH, &x2,&y2,&w2,&h2);
788 if (wind_calc(WC_BORDER, GEM_win_type, x2,y2,width,height, &x2,&y2,&w2,&h2)) {
789 wind_set (GEM_handle, WF_CURRXYWH, x2,y2,w2,h2);
  /frameworks/base/core/java/android/text/
Selection.java 386 float h2 = layout.getPrimaryHorizontal(off2); local
391 if (h1 < h2)
398 if (h1 > h2)
  /system/wlan/ti/sta_dk_4_0_4_32/CUDK/CLI/
ticon.c 227 handle_t h, h1, h2; local
358 CHK_NULL(h2 = (handle_t) consoleAddDirExt( (handle_t) h1, "rx data Filter", "Rx Data Filter" ) );
359 consoleAddToken(h2, "Enable", "Enable Rx Data Filtering", (FuncToken_t) cmd_enable_rx_data_filters, NULL );
360 consoleAddToken(h2, "Disable", "Enable Rx Data Filtering", (FuncToken_t) cmd_disable_rx_data_filters, NULL );
369 consoleAddToken(h2, "Add", "Add Rx Data Filter", (FuncToken_t) cmd_add_rx_data_filter, aaa );
379 consoleAddToken(h2, "Remove", "Remove Rx Data Filter", (FuncToken_t) cmd_remove_rx_data_filter, aaa );
381 consoleAddToken(h2, "Statistics", "Print Rx Data Filtering Statistics", (FuncToken_t) cmd_get_rx_data_filters_statistics, NULL );
526 CHK_NULL(h2 = (handle_t) consoleAddDirExt( (handle_t) h1, "Band", "Configure band scan policy" ) );
535 consoleAddToken(h2, "Misc", "Set misc band params", (FuncToken_t) cmd_Scan_band_global_config, aaa );
543 consoleAddToken(h2, "Channel", "Set Channel params", (FuncToken_t) cmd_Scan_band_channel_config, aaa )
    [all...]
  /external/ipsec-tools/src/racoon/
grabmyaddr.c 312 char h1[NI_MAXHOST], h2[NI_MAXHOST]; local
321 if (getnameinfo(q->addr, sysdep_sa_len(q->addr), h2, sizeof(h2),
324 if (strcmp(h1, h2) == 0)
  /frameworks/base/libs/rs/
rsAllocation.cpp 569 uint32_t h2 = rsHigherPow2(h); local
571 if ((w2 == w) && (h2 == h)) {
576 size_t size = w2 * h2 * bpp;
582 uint8_t * ydst = &tmp[(y + ((h2 - h) >> 1)) * w2 * bpp];
587 RsAllocation ret = rsi_AllocationCreateFromBitmap(rsc, w2, h2, _dst, _src, genMips, tmp);
  /external/chromium/third_party/icu/source/test/intltest/
citrtest.cpp 768 UBool h, h2; local
775 h2=ci.hasNext();
781 h2=ci.hasNext();
788 h2=ci.hasNext();
794 h2=ci.hasNext();
801 h2=ci.hasPrevious();
807 h2=ci.hasPrevious();
813 h=h2=FALSE;
819 h=h2=FALSE;
835 if(c!=c2 || h!=h2 || ci.getIndex()!=iter->getIndex(iter, UITER_CURRENT))
    [all...]
  /external/icu4c/test/intltest/
citrtest.cpp 768 UBool h, h2; local
775 h2=ci.hasNext();
781 h2=ci.hasNext();
788 h2=ci.hasNext();
794 h2=ci.hasNext();
801 h2=ci.hasPrevious();
807 h2=ci.hasPrevious();
813 h=h2=FALSE;
819 h=h2=FALSE;
835 if(c!=c2 || h!=h2 || ci.getIndex()!=iter->getIndex(iter, UITER_CURRENT))
    [all...]
  /external/v8/test/cctest/
test-heap.cc 298 Handle<Object> h2 = GlobalHandles::Create(u); local
306 CHECK((*h2)->IsHeapNumber());
314 CHECK_EQ(*h4, *h2);
315 GlobalHandles::Destroy(h2.location());
338 Handle<Object> h2 = GlobalHandles::Create(u); local
340 GlobalHandles::MakeWeak(h2.location(),
348 CHECK((*h2)->IsHeapNumber());
351 CHECK(!GlobalHandles::IsNearDeath(h2.location()));
355 GlobalHandles::Destroy(h2.location());
368 Handle<Object> h2 = GlobalHandles::Create(u) local
    [all...]
  /external/yaffs2/yaffs2/direct/
dtest.c 1821 int h1=-1,h2=-1; local
1828 h2 = yaffs_open(name2,O_CREAT | O_TRUNC | O_RDWR, S_IREAD | S_IWRITE);
1833 n = yaffs_write(h2,xx,i);
1837 yaffs_close(h2);
    [all...]
  /libcore/sqlite-jdbc/src/main/java/SQLite/JDBC2z/
JDBCDatabaseMetaData.java 797 Hashtable<String, Integer> h2 = local
800 h2.put(rs2.tr.column[k], Integer.valueOf(k)); // android-changed
804 col = ((Integer) h2.get("name")).intValue();
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/address/
SipUri.java 209 String h2 = b.getHeader(hname); local
211 if(h1 == null && h2 != null) return false;
212 if(h2 == null && h1 != null) return false;
214 if(h1 == null && h2 == null) continue;
217 Header header2 = headerFactory.createHeader(hname, RFC2396UrlDecoder.decode(h2));
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrwbenc/src/
voAMRWBEnc.c 189 Word16 h2[L_SUBFR]; /* Impulse response vector */ local
820 /* h2 in Q12 for codebook search */
821 Copy(h1, h2, L_SUBFR);
827 Scale_sig_opt(h2, L_SUBFR, -2);
831 Scale_sig(h2, L_SUBFR, -2);
    [all...]

Completed in 6772 milliseconds

1 2