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

1 2 3 4 5 6 7 8 910

  /external/javassist/sample/hotswap/
Test.java 6 HotSwapper hs = new HotSwapper(8000); local
14 hs.reload("HelloWorld", bytes);
22 hs.reload("HelloWorld", bytes);
  /external/apache-harmony/support/src/test/java/tests/support/
Support_UnmodifiableCollectionTest.java 55 HashSet<Integer> hs = new HashSet<Integer>(); local
56 hs.add(new Integer(0));
57 hs.add(new Integer(25));
58 hs.add(new Integer(99));
61 col.containsAll(hs));
62 hs.add(new Integer(100));
65 !col.containsAll(hs));
Support_UnmodifiableMapTest.java 113 HashSet<String> hs = new HashSet<String>(); local
114 hs.add("0");
115 hs.add("25");
116 hs.add("99");
119 keySet.containsAll(hs));
120 hs.add("100");
123 !keySet.containsAll(hs));
  /libcore/support/src/test/java/tests/support/
Support_UnmodifiableCollectionTest.java 55 HashSet<Integer> hs = new HashSet<Integer>(); local
56 hs.add(new Integer(0));
57 hs.add(new Integer(25));
58 hs.add(new Integer(99));
61 col.containsAll(hs));
62 hs.add(new Integer(100));
65 !col.containsAll(hs));
Support_MapTest.java 114 HashSet<String> hs = new HashSet<String>(); local
115 hs.add("0");
116 hs.add("25");
117 hs.add("99");
118 assertTrue("Should contain set of \"0\", \"25\", and \"99\"", keySet.containsAll(hs));
119 hs.add("100");
121 !keySet.containsAll(hs));
  /external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
UnicodeSetPerf.java 26 HashSet hs; field in class:UnicodeSetPerf
42 hs = new HashSet();
68 hs.clear();
73 hs.add(new Integer(cp));
106 hs.clear();
109 hs.add(new Integer(it.codepoint));
115 if (hs.contains(new Integer(cp))) {
144 hs.clear();
147 hs.add(new Integer(it.codepoint));
152 Iterator itr = hs.iterator()
    [all...]
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMasRequestSetPath.java 53 HeaderSet hs = null; local
59 hs = session.setPath(mHeaderSet, false, false);
62 hs = session.setPath(mHeaderSet, true, false);
66 mResponseCode = hs.getResponseCode();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
HashSetTest.java 41 HashSet hs; field in class:HashSetTest
93 assertTrue("HashSet does not contain correct elements", hs
111 int size = hs.size();
112 hs.add(new Integer(8));
113 assertTrue("Added element already contained by set", hs.size() == size);
114 hs.add(new Integer(-9));
116 hs.size() == size + 1);
117 assertTrue("Failed to add element to set", hs.contains(new Integer(-9)));
125 Set orgSet = (Set) hs.clone();
126 hs.clear()
215 HashSet<String> hs = new HashSet<String>(); local
232 HashSet<Integer> hs = new HashSet<>(); local
    [all...]
LinkedHashSetTest.java 38 LinkedHashSet hs; field in class:LinkedHashSetTest
103 assertTrue("LinkedHashSet does not contain correct elements", hs
121 int size = hs.size();
122 hs.add(new Integer(8));
123 assertTrue("Added element already contained by set", hs.size() == size);
124 hs.add(new Integer(-9));
126 hs.size() == size + 1);
127 assertTrue("Failed to add element to set", hs.contains(new Integer(-9)));
135 Set orgSet = (Set) hs.clone();
136 hs.clear()
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/
RequestSetPath.java 51 HeaderSet hs = null; local
57 hs = session.setPath(mHeaderSet, false, false);
60 hs = session.setPath(mHeaderSet, true, false);
64 mResponseCode = hs.getResponseCode();
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue116/
NoFieldsTest.java 58 HiddenSpecial hs = (HiddenSpecial) yaml local
60 assertEquals("foo".hashCode(), hs.retrieveMyVerySpecialField());
  /external/syslinux/com32/chain/
utility.c 98 uint32_t cs, hs, ss; local
106 hs = di->head;
109 if (cs < 1024 && di->lbacnt > cs*hs*ss)
116 hs = 255;
120 hs = 2;
125 if (lba >= cs*hs*ss) {
127 h = hs - 1;
132 h = t % hs;
133 c = t / hs;
  /external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11spikysphere/
d3d11spikysphere.cpp 30 #include "d3d11spikysphere.hlsl.hs.h"
89 ID3D11HullShader* hs; member in struct:d3d11spikysphere
108 ensure(dev->CreateHullShader(g_hs, sizeof(g_hs), NULL, &hs));
212 ctx->HSSetShader(hs, NULL, 0);
  /external/syslinux/gpxe/src/net/80211/
sec80211.c 190 struct net80211_handshaker *hs = tblp; local
195 ok |= ( 1 << hs->protocol );
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMnsObexClient.java 340 HeaderSet hs = new HeaderSet(); local
346 hs.setHeader(HeaderSet.TARGET, mnsTarget);
352 mHsConnect = mClientSession.connect(hs);
  /external/boringssl/src/ssl/
s3_both.c 134 SSL_HANDSHAKE *hs = OPENSSL_malloc(sizeof(SSL_HANDSHAKE)); local
135 if (hs == NULL) {
139 OPENSSL_memset(hs, 0, sizeof(SSL_HANDSHAKE));
140 hs->ssl = ssl;
141 hs->wait = ssl_hs_ok;
142 hs->state = SSL_ST_INIT;
143 if (!SSL_TRANSCRIPT_init(&hs->transcript)) {
144 ssl_handshake_free(hs);
147 return hs;
150 void ssl_handshake_free(SSL_HANDSHAKE *hs) {
    [all...]
  /external/libvorbis/lib/
block.c 185 int hs; local
188 hs=ci->halfrate_flag;
203 mdct_init(b->transform[0][0],ci->blocksizes[0]>>hs);
204 mdct_init(b->transform[1][0],ci->blocksizes[1]>>hs);
687 int hs; local
693 hs=ci->halfrate_flag;
695 v->centerW=ci->blocksizes[1]>>(hs+1);
696 v->pcm_current=v->centerW>>hs;
724 int hs=ci->halfrate_flag; local
744 int n=ci->blocksizes[v->W]>>(hs+1)
936 int hs=ci->halfrate_flag; local
1011 int hs=ci->halfrate_flag; local
    [all...]
  /external/libvpx/libvpx/third_party/libyuv/source/
mjpeg_decoder.cc 217 int hs = GetHorizSubSampFactor(component); local
218 return DivideAndRoundUp(GetWidth(), hs);
  /external/libyuv/files/source/
mjpeg_decoder.cc 215 int hs = GetHorizSubSampFactor(component); local
216 return DivideAndRoundUp(GetWidth(), hs);
  /external/lzma/Java/SevenZip/Compression/LZ/
BinTree.java 97 int hs = kBT2HashSize; local
101 hs = historySize - 1;
102 hs |= (hs >> 1);
103 hs |= (hs >> 2);
104 hs |= (hs >> 4);
105 hs |= (hs >> 8);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
SignalTileView.java 75 int hs = MeasureSpec.makeMeasureSpec(mIconFrame.getMeasuredHeight(), MeasureSpec.EXACTLY); local
77 mIn.measure(ws, hs);
78 mOut.measure(ws, hs);
  /toolchain/binutils/binutils-2.25/binutils/
rclex.c 873 const char *hs = NULL; local
879 hs = yylval.s;
882 hs = yylval.s = yylval.ss.s;
885 if (! hs)
890 else if (! strcmp (hs, "StringFileInfo"))
892 else if (! strcmp (hs, "VarFileInfo"))
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppObexClientSession.java 249 HeaderSet hs = new HeaderSet(); local
250 hs.setHeader(HeaderSet.COUNT, (long) numShares);
255 mCs.connect(hs);
  /external/aac/libSBRdec/src/
sbr_dec.cpp 784 HANDLE_SBR_DEC hs = &(hSbrChannel->SbrDec); local
787 hs->sbrScaleFactor.ov_lb_scale = 0;
788 hs->sbrScaleFactor.ov_hb_scale = 0;
789 hs->sbrScaleFactor.hb_scale = 0;
795 err = createSbrEnvelopeCalc (&hs->SbrCalculateEnvelope,
812 &hs->AnalysiscQMF,
813 hs->anaQmfStates,
824 if (hs->pSynQmfStates == NULL) {
825 hs->pSynQmfStates = GetRam_sbr_QmfStatesSynthesis(chan);
826 if (hs->pSynQmfStates == NULL
900 HANDLE_SBR_DEC hs = &hSbrChannel->SbrDec; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_optimize.c 321 const int hs = type_size*inst_stride[inst->bits2.da1.src0_horiz_stride]; local
333 write_start += hs;
356 const int hs = type_size*inst_stride[inst->bits3.da1.src1_horiz_stride]; local
368 write_start += hs;

Completed in 1741 milliseconds

1 2 3 4 5 6 7 8 910