HomeSort by relevance Sort by last modified time
    Searched refs:comp (Results 51 - 75 of 209) sorted by null

1 23 4 5 6 7 8 9

  /external/openssl/crypto/comp/
c_rle.c 5 #include <openssl/comp.h>
  /external/qemu/distrib/sdl-1.2.12/src/audio/macosx/
SDL_coreaudio.c 201 Component comp; local
230 comp = FindNextComponent (NULL, &desc);
231 if (comp == NULL) {
237 result = OpenAComponent (comp, &outputAudioUnit);
  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
idct_vca.cpp 419 void idctrow1_intra(int16 *blk, PIXEL *comp, int width)
427 comp -= offset;
437 *((uint32*)(comp += offset)) = word;
438 *((uint32*)(comp + 4)) = word;
448 void idctrow2_intra(int16 *blk, PIXEL *comp, int width)
455 comp -= offset;
485 *((int32*)(comp += offset)) = word;
498 *((int32*)(comp + 4)) = word;
505 void idctrow3_intra(int16 *blk, PIXEL *comp, int width)
512 comp -= offset
    [all...]
block_idct.cpp 251 MacroBlock *mblock, PIXEL *c_comp, int comp, int width)
256 int16 *coeff_in = mblock->block[comp];
260 int nz_coefs = mblock->no_coeff[comp];
261 uint8 *bitmapcol = mblock->bitmapcol[comp];
262 uint8 bitmaprow = mblock->bitmaprow[comp];
307 void idct_intra(int *block, uint8 *comp, int width);
311 void idctref_intra(int *block, uint8 *comp, int width);
621 int16 *blk, PIXEL *comp, int width
710 *((int32*)(comp)) = word;
726 *((int32*)(comp + 4)) = word
    [all...]
  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
fastcodemb.h 70 Int dctMode, Int comp, Int dummy);
74 Int dctMode, Int comp, Int dc_scaler);
84 Int DctMode, Int comp, Int dc_scaler);
88 Int DctMode, Int comp, Int dc_scaler);
motion_est.cpp 30 /* 1: bias (0,0)MV after full-pel search, before half-pel, highest comp */
31 /* 2: bias (0,0)MV after half-pel, high comp, better PSNR */
142 Int i, j, comp; local
327 for (comp = 1; comp <= 4; comp++)
329 mot_mb[comp].x = 0;
330 mot_mb[comp].y = 0;
434 for (comp = 1; comp <= 4; comp++
788 Int comp; local
    [all...]
  /external/openssl/crypto/err/
err_all.c 67 #include <openssl/comp.h>
105 #include <openssl/comp.h>
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
arcsum.h 75 ArcSumCompare<A> comp; local
76 sort(arcs.begin(), arcs.end(), comp);
heap.h 51 Heap(Compare comp) : comp_(comp), size_(0) { }
  /libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
GZIPInputStreamTest.java 155 byte[] comp = bout.toByteArray();
157 comp), 512);
166 gin2 = new GZIPInputStream(new ByteArrayInputStream(comp), 512);
175 gin2 = new GZIPInputStream(new ByteArrayInputStream(comp), 516);
184 comp[40] = 0;
185 gin2 = new GZIPInputStream(new ByteArrayInputStream(comp), 512);
  /external/webkit/WebCore/bridge/
testbindings.mm 258 Completion comp(interp.evaluate(code));
260 if (comp.complType() == Throw) {
261 Value exVal = comp.value();
275 else if (comp.complType() == ReturnValue) {
276 char *msg = comp.value().toString(interp.globalExec()).ascii();
  /external/openssl/ssl/
ssl_ciph.c 146 #include <openssl/comp.h>
429 SSL_COMP *comp = NULL; local
435 comp=(SSL_COMP *)OPENSSL_malloc(sizeof(SSL_COMP));
436 if (comp != NULL)
438 comp->method=COMP_zlib();
439 if (comp->method
440 && comp->method->type == NID_undef)
441 OPENSSL_free(comp);
444 comp->id=SSL_COMP_ZLIB_IDX;
445 comp->name=comp->method->name
1696 SSL_COMP *comp; local
    [all...]
  /external/qemu/slirp-android/
misc.c 18 int comp[4]; local
20 if (sscanf(str, "%d.%d.%d.%d", &comp[0], &comp[1], &comp[2], &comp[3]) != 4)
23 if ((unsigned)comp[0] >= 256 ||
24 (unsigned)comp[1] >= 256 ||
25 (unsigned)comp[2] >= 256 ||
26 (unsigned)comp[3] >= 256)
29 *ip = (uint32_t)((comp[0] << 24) | (comp[1] << 16)
    [all...]
  /external/bluetooth/bluez/test/
bdaddr.c 321 char addr[18], oui[9], *comp; local
390 comp = ouitocomp(oui);
395 if (comp) {
396 printf(" (%s)\n", comp);
397 free(comp);
415 comp = ouitocomp(oui);
420 if (comp) {
421 printf(" (%s)\n\n", comp);
422 free(comp);
  /external/skia/src/images/
bmpdecoderhelper.cpp 49 int comp = 0; local
59 comp = GetInt();
116 if (comp == 1 || comp == 2) {
118 } else if (comp == 3) {
  /external/libxml2/include/libxml/
xmlregexp.h 55 xmlRegexpExec (xmlRegexpPtr comp,
61 xmlRegexpIsDeterminist(xmlRegexpPtr comp);
81 xmlRegNewExecCtxt (xmlRegexpPtr comp,
xpath.h 380 xmlXPathCompExprPtr comp; /* the precompiled expression */ member in struct:_xmlXPathParserContext
525 xmlXPathCompiledEval (xmlXPathCompExprPtr comp,
528 xmlXPathCompiledEvalToBoolean(xmlXPathCompExprPtr comp,
531 xmlXPathFreeCompExpr (xmlXPathCompExprPtr comp);
  /frameworks/base/tests/CoreTests/android/core/
DeflateTest.java 79 byte[] comp = new byte[128 * 1024 + 512];
86 compress(deflater, input, comp);
87 expand(inflater, comp, (int) deflater.getBytesWritten(), output);
  /external/webkit/WebKitTools/Scripts/webkitpy/
mock.py 191 def _dot_lookup(thing, comp, import_path):
193 return getattr(thing, comp)
196 return getattr(thing, comp)
204 for comp in components:
205 import_path += ".%s" % comp
206 thing = _dot_lookup(thing, comp, import_path)
  /external/junit/src/junit/swingui/
CounterPanel.java 73 public void addToGrid(Component comp,
89 add(comp, constraints);
  /external/libpng/scripts/
makevms.com 30 $ comp = "__decc__=1"
38 $ comp = "__gcc__=1"
41 $ comp = "__vaxc__=1"
46 $ comp = "__decc__=1"
98 $ 'make'/macro=('comp',zlibsrc='zlibsrc')
  /external/chromium/third_party/icu/public/common/unicode/
caniter.h 189 //Set extract(int comp, String segment, int segmentPos, StringBuffer buffer);
190 Hashtable *extract(Hashtable *fillinResult, UChar32 comp, const UChar *segment, int32_t segLen, int32_t segmentPos, UErrorCode &status);
191 //Hashtable *extract(UChar32 comp, const UnicodeString &segment, int32_t segLen, int32_t segmentPos, UErrorCode &status);
  /external/chromium/third_party/icu/source/test/intltest/
canittst.cpp 174 UnicodeString decomp, comp; local
180 Normalizer::compose(s, FALSE, 0, comp, status);
184 if (s == decomp && s == comp) {
195 if (item == comp) gotComp = TRUE;
  /external/icu4c/common/unicode/
caniter.h 192 //Set extract(int comp, String segment, int segmentPos, StringBuffer buffer);
193 Hashtable *extract(Hashtable *fillinResult, UChar32 comp, const UChar *segment, int32_t segLen, int32_t segmentPos, UErrorCode &status);
194 //Hashtable *extract(UChar32 comp, const UnicodeString &segment, int32_t segLen, int32_t segmentPos, UErrorCode &status);
  /external/icu4c/test/intltest/
canittst.cpp 178 UnicodeString decomp, comp; local
184 Normalizer::compose(s, FALSE, 0, comp, status);
188 if (s == decomp && s == comp) {
199 if (item == comp) gotComp = TRUE;

Completed in 555 milliseconds

1 23 4 5 6 7 8 9