Searched refs:marker (Results 251 - 275 of 376) sorted by relevance

<<111213141516

/external/pdfium/third_party/libopenjpeg20/
H A Dj2k.c186 * Reads the lookup table containing all the marker, status and action, and returns the handler associated
187 * with the marker value.
252 * @param p_header_size the size of the data contained in the COM marker.
399 * Writes the SOC marker (Start Of Codestream)
410 * Reads a SOC marker (Start of Codestream)
420 * Writes the SIZ marker (image and tile size)
431 * Reads a SIZ marker (image and tile size)
434 * @param p_header_size the size of the data contained in the SIZ marker.
443 * Writes the COM marker (comment)
454 * Reads a COM marker (comment
[all...]
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_util.h476 BitSet() : marker(false), data(0), size(0) { }
477 BitSet(unsigned int nBits, bool zero) : marker(false), data(0), size(0)
564 bool marker; // for user
/external/opencv3/3rdparty/libjpeg/
H A Djdinput.c11 * processing (marker reading and coefficient decoding). The actual input
209 /* Called once, when first SOS marker is reached */
244 cinfo->comps_in_scan)) { /* no pseudo SOS marker */
390 /* cinfo->comps_in_scan and cinfo->cur_comp_info[] were set from SOS marker */
553 * Note: This function should NOT return a pseudo SOS marker (with zero
554 * component number) to the caller. A pseudo marker received by
567 for (;;) { /* Loop to pass pseudo SOS marker */
568 val = (*cinfo->marker->read_markers) (cinfo);
575 if (cinfo->comps_in_scan == 0) { /* pseudo SOS marker */
584 } else { /* 2nd or later SOS marker */
[all...]
H A Djcmaster.c724 (*cinfo->marker->write_frame_header) (cinfo);
725 (*cinfo->marker->write_scan_header) (cinfo);
757 (*cinfo->marker->write_frame_header) (cinfo);
758 (*cinfo->marker->write_scan_header) (cinfo);
/external/vixl/src/vixl/a64/
H A Dinstrument-a64.cc212 void Instrument::DumpEventMarker(unsigned marker) { argument
213 // Dumpan event marker to the output stream as a specially formatted comment
217 fprintf(output_stream_, "# %c%c @ %" PRId64 "\n", marker & 0xff,
218 (marker >> 8) & 0xff, counter->count());
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/
H A DdumpICUrules.bat352 # Open file, write UTF8 marker, close it, and reopen in text mode
354 binmode OUT; # Must do this so we can write our UTF8 marker
355 print OUT pack("C3", 0xEF, 0xBB, 0xBF); # Write UTF8 marker
/external/esd/include/
H A Daudiofile.h276 AF_BAD_MARKID = 31, /* bad marker id */
277 AF_BAD_MARKPOS = 32, /* invalid marker position value */
353 AF_ERR_BAD_MARKID = 31+AF_ERR_BASE, /* bad marker id */
354 AF_ERR_BAD_MARKPOS = 32+AF_ERR_BASE, /* invalid marker position value */
564 /* marker operations */
570 void afInitMarkName (AFfilesetup, int trackid, int marker, const char *name);
571 void afInitMarkComment (AFfilesetup, int trackid, int marker,
/external/guice/core/test/com/google/inject/
H A DKeyTest.java245 Marker marker = HasAnnotations.class.getAnnotation(Marker.class);
246 assertEquals(Key.get(Foo.class, marker), Key.get(Foo.class, Marker.class));
/external/icu/icu4c/source/layout/
H A DLEGlyphStorage.cpp515 void LEGlyphStorage::moveGlyph(le_int32 fromPosition, le_int32 toPosition, le_uint32 marker )
541 setAuxData(toPosition,holdAuxData | marker,success);
/external/libjpeg-turbo/
H A Djdphuff.c228 * Check for a restart marker & resynchronize decoder.
240 cinfo->marker->discarded_bytes += entropy->bitstate.bits_left / 8;
243 /* Advance past the RSTn marker */
244 if (! (*cinfo->marker->read_restart_marker) (cinfo))
257 * against a marker. In that case we will end up treating the next data
303 /* Process restart marker if needed; may have to suspend */
373 /* Process restart marker if needed; may have to suspend */
455 /* Process restart marker if needed; may have to suspend */
511 /* Process restart marker if needed; may have to suspend */
/external/libunwind/src/ia64/
H A DGstep.c65 unw_word_t *num_regsp, int marker)
81 if (marker == ABI_MARKER_OLD_LINUX_INTERRUPT)
256 AR.PFS. However, interruptions only save the frame-marker, not
261 cfm_loc by default and giving frames marked with an ABI-marker
293 Debug (1, "unknown ABI marker: ABI=%u, context=%u\n",
64 linux_interrupt(struct cursor *c, ia64_loc_t prev_cfm_loc, unw_word_t *num_regsp, int marker) argument
/external/llvm/utils/unittest/googletest/src/
H A Dgtest-port.cc462 const char* const marker = local
466 GetStream() << ::std::endl << marker << " "
/external/mesa3d/src/gtest/src/
H A Dgtest-port.cc462 const char* const marker = local
466 GetStream() << ::std::endl << marker << " "
/external/pdfium/third_party/libjpeg/
H A Dfpdfapi_jdhuff.c307 /* We fail to do so only if we hit a marker or are forced to suspend. */
309 if (cinfo->unread_marker == 0) { /* cannot advance past a marker */
325 /* Loop here to discard any padding FF's on terminating marker,
345 /* Oops, it's actually a marker indicating end of compressed data.
346 * Save the marker code for later use.
347 * Fine point: it might appear that we should save the marker into
349 * once we have hit a marker, we cannot need to suspend within the
365 /* We get here if we've read the marker that terminates the compressed
466 * Check for a restart marker & resynchronize decoder.
478 cinfo->marker
[all...]
H A Dfpdfapi_jdphuff.c223 * Check for a restart marker & resynchronize decoder.
235 cinfo->marker->discarded_bytes += entropy->bitstate.bits_left / 8;
238 /* Advance past the RSTn marker */
239 if (! (*cinfo->marker->read_restart_marker) (cinfo))
252 * against a marker. In that case we will end up treating the next data
298 /* Process restart marker if needed; may have to suspend */
368 /* Process restart marker if needed; may have to suspend */
450 /* Process restart marker if needed; may have to suspend */
506 /* Process restart marker if needed; may have to suspend */
/external/protobuf/gtest/src/
H A Dgtest-port.cc428 const char* const marker = local
432 GetStream() << ::std::endl << marker << " "
/external/skia/src/gpu/gl/
H A DGrGLNoOpInterface.h401 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLInsertEventMarker(GrGLsizei length, const char* marker);
402 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPushGroupMarker(GrGLsizei length , const char* marker);
/external/doclava/src/com/google/doclava/
H A DPageMetadata.java438 * following the max_size marker. Strings smaller than min_chars
448 int marker = 0;
459 marker = bi.following(max_chars);
461 marker = bi.last();
463 str = str.substring(0, marker);
/external/skia/tests/
H A DPathOpsExtendedTest.cpp30 static const char marker[] = variable
387 outFile.writeText(marker);
599 char* insert = strstr(inData.begin(), marker);
601 insert += sizeof(marker) - 1;
/external/v8/src/
H A Dframes.cc416 // is not distinguished through the marker.
419 Object* marker = local
421 if (marker->IsSmi()) {
422 return static_cast<StackFrame::Type>(Smi::cast(marker)->value());
431 Object* marker = local
442 if (!marker->IsSmi()) {
445 // is not distinguished through the marker.
448 // The interpreter entry trampoline has a non-SMI marker.
455 if (!marker->IsSmi()) {
456 // Only hydrogen code stub handlers can have a non-SMI marker
[all...]
/external/libphonenumber/demo/war/WEB-INF/lib/
H A Dcommons-io-1.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/io/ ...
/external/mesa3d/src/glsl/glcpp/
H A Dglcpp-parse.y100 token_node_t *marker);
1570 * Here, 'marker' is the token node that appears in the list after the
1572 * examining 'marker', then it is time to pop this node from the
1578 token_node_t *marker)
1584 node->marker = marker;
1645 while (parser->active && parser->active->marker == node)
1654 parser->active->marker == n)
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/gs/
H A Dbucket.py184 def list_versions(self, prefix='', delimiter='', marker='',
207 :type marker: string
208 :param marker: The "marker" of where you are in the result set
211 :param generation_marker: The "generation marker" of where you are in
222 marker, generation_marker,
230 ['version_id_marker', 'delimiter', 'marker',
/external/emma/core/java12/com/vladium/emma/data/
H A DDataFactory.java708 private static void writeEntry (final Logger log, final RandomAccessFile raf, final long marker, final IMergeable data, final byte type) argument
741 raf.seek (marker);
/external/google-breakpad/src/testing/gtest/src/
H A Dgtest-port.cc487 const char* const marker = local
491 GetStream() << ::std::endl << marker << " "

Completed in 1747 milliseconds

<<111213141516