HomeSort by relevance Sort by last modified time
    Searched full:part (Results 501 - 525 of 4853) sorted by null

<<21222324252627282930>>

  /external/jpeg/
jfdctfst.c 5 * This file is part of the Independent JPEG Group's software.
136 /* Even part */
150 /* Odd part */
186 /* Even part */
200 /* Odd part */
jidctred.c 5 * This file is part of the Independent JPEG Group's software.
156 /* Even part */
169 /* Odd part */
218 /* Even part */
228 /* Odd part */
305 /* Even part */
310 /* Odd part */
348 /* Even part */
352 /* Odd part */
  /external/v8/test/mjsunit/
array-iteration.js 55 // Only loop through initial part of array eventhough elements are
97 // Only loop through initial part of array eventhough elements are
138 // Only loop through initial part of array eventhough elements are
176 // Only loop through initial part of array eventhough elements are
213 // Only loop through initial part when elements are added.
  /hardware/msm7k/librpc/rpc/
clnt.h 4 * media and as a part of the software program in whole or part. Users
6 * to license or distribute it to anyone else except as part of a product or
14 * part of Sun Microsystems, Inc. to assist in its use, correction,
19 * OR ANY PART THEREOF.
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
toplev.h 5 This file is part of GCC.
28 #define skip_leading_substring(whole, part) \
29 (strncmp (whole, part, strlen (part)) ? NULL : whole + strlen (part))
  /external/sonivox/arm-wt-22k/lib_src/
eas_mdls.c 418 static EAS_RESULT Parse_lart (SDLS_SYNTHESIZER_DATA *pDLSData, EAS_I32 pos, EAS_I32 size, S_DLS_ART_VALUES *pArt);
419 static EAS_RESULT Parse_art (SDLS_SYNTHESIZER_DATA *pDLSData, EAS_I32 pos, S_DLS_ART_VALUES *pArt);
    [all...]
  /cts/tools/dasm/src/java_cup/
production.java 53 * all actions at the end where they can be handled as part of a reduce by
86 /* create the part for left-hand-side */
445 symbol_part part; local
454 part = (symbol_part)rhs[pos];
457 if (part.label() != null)
459 label_map.put(part.label(), new Integer(pos));
460 label_types.put(part.label(), part.the_symbol().stack_type());
545 * @return the removed action part.
612 production_part part; local
666 int part; local
    [all...]
lalr_item.java 177 production_part part; local
191 part = the_production().rhs(pos);
193 /* consider what kind of production part it is -- skip actions */
194 if (!part.is_action())
196 sym = ((symbol_part)part).the_symbol();
233 production_part part; local
243 part = the_production().rhs(pos);
246 if (!part.is_action())
248 sym = ((symbol_part)part).the_symbol();
  /dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
QName.java 39 * consisting of the local part of the name and the possibly null URI reference
186 * @param localName Local part of qualified name
198 * @param localName Local part of qualified name
506 * Returns the local part of the qualified name.
508 * @return The local part of the qualified name
557 * Get the local part of the qualified name.
559 * @return the local part of the qualified name
582 * @param localPart Local part of qualified name to compare to
685 * @return Local part of the name if prefixed, or the given name if not
  /dalvik/libcore/text/src/main/java/java/text/
DateFormat.java 763 * Marks the era part of a date.
768 * Marks the year part of a date.
773 * Marks the month part of a date.
778 * Marks the hour of the day part of a date (0-11).
784 * Marks the hour of the day part of a date (1-12).
789 * Marks the minute part of a time.
794 * Marks the second part of a time.
799 * Marks the millisecond part of a time.
805 * Marks the day of the week part of a date.
811 * Marks the day of the month part of a date
    [all...]
  /external/opencore/codecs_v2/audio/gsm_amr/amr_wb/dec/src/
pvamrwb_math_op.h 84 int16 exponant, /* (i) Q0 : Integer part. (range: 0<=val<=30) */
85 int16 fraction /* (i) Q15 : Fractionnal part. (range: 0.0<=val<1.0) */
97 int16 *exponent, /* (o) : Integer part of Log2. (range: 0<=val<=30) */
98 int16 *fraction /* (o) : Fractional part of Log2. (range: 0<=val<1)*/
104 int16 *exponent, /* (o) : Integer part of Log2. (range: 0<=val<=30) */
105 int16 *fraction /* (o) : Fractional part of Log2. (range: 0<=val<1) */
  /frameworks/base/media/libstagefright/codecs/amrwb/src/
pvamrwb_math_op.h 84 int16 exponant, /* (i) Q0 : Integer part. (range: 0<=val<=30) */
85 int16 fraction /* (i) Q15 : Fractionnal part. (range: 0.0<=val<1.0) */
97 int16 *exponent, /* (o) : Integer part of Log2. (range: 0<=val<=30) */
98 int16 *fraction /* (o) : Fractional part of Log2. (range: 0<=val<1)*/
104 int16 *exponent, /* (o) : Integer part of Log2. (range: 0<=val<=30) */
105 int16 *fraction /* (o) : Fractional part of Log2. (range: 0<=val<1) */
  /external/webkit/WebKit/chromium/src/
ChromiumBridge.cpp 85 // We are part of the WebKit implementation.
486 GraphicsContext* gc, int part, int state, int classicState,
490 gc->platformContext()->canvas(), part, state, classicState, rect);
494 GraphicsContext* gc, int part, int state, int classicState,
498 gc->platformContext()->canvas(), part, state, classicState, rect);
510 GraphicsContext* gc, int part, int state, int classicState,
514 gc->platformContext()->canvas(), part, state, classicState, rect);
518 GraphicsContext* gc, int part, int state, int classicState,
522 gc->platformContext()->canvas(), part, state, classicState, rect,
527 GraphicsContext* gc, int part, int state, int classicState
    [all...]
  /dalvik/docs/opcodes/
opcode-2d-cmp-kind.html 67 For the two -double variants, both vB and vC must be the lower part of a
71 For the -long variant, both both vB and vC must be the lower part of a
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
CompletionService.java 16 * submitted in one part of a program or system, and then acted upon
17 * in a different part of the program when the reads complete,
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/level2/core/
nodegetlocalname03.java 34 * The method getLocalName returns the local part of the qualified name of this node.
37 * Retreive the local part of their qualified names using getLocalName and verrify
setAttributeNS04.java 36 * on the element, its prefix is changed to be the prefix part of the "qualifiedName",
44 * The prefix will be changed to the prefix part of the "qualifiedName"
  /dalvik/libcore/xml/src/test/java/tests/org/w3c/dom/
NodeGetLocalName.java 38 * The method getLocalName returns the local part of the qualified name of this node.
41 * Retreive the local part of their qualified names using getLocalName and verrify
  /dalvik/vm/
Sync.h 136 * Get the object a monitor is part of.
138 * Returns NULL if "mon" is NULL or the monitor is not part of an object
  /dalvik/vm/mterp/armv5te/
OP_CMP_LONG.S 35 blt .L${opcode}_less @ signed compare on high part
38 bhi .L${opcode}_greater @ unsigned compare on low part
  /external/bluetooth/glib/
acinclude.m4 199 dnl Public License, this file may be distributed as part of a program
220 dnl Public License, this file may be distributed as part of a program
247 dnl Public License, this file may be distributed as part of a program
280 dnl Public License, this file may be distributed as part of a program
304 dnl Public License, this file may be distributed as part of a program
328 dnl Public License, this file may be distributed as part of a program
393 dnl Public License, this file may be distributed as part of a program
423 dnl Public License, this file may be distributed as part of a program
  /external/elfutils/libdw/
dwarf_getabbrev.c 56 consists of two parts. The first part is an unsigned LEB128
57 number representing the attribute's name. The second part is
  /external/freetype/include/freetype/internal/
ftgloadr.h 10 /* This file is part of the FreeType project, and may only be used, */
40 /* The glyph loader implementation is not part of the high-level API, */
  /external/gtest/src/
gtest-test-part.cc 34 #include <gtest/gtest-test-part.h>
36 // Indicates that this translation unit is part of Google Test's
  /external/icu4c/common/
rbbisetb.h 51 // where appearing in the second (higher) part.
52 void setDictionaryFlag(); // Check whether this range appears as part of

Completed in 88 milliseconds

<<21222324252627282930>>