HomeSort by relevance Sort by last modified time
    Searched defs:representation (Results 76 - 100 of 130) sorted by null

1 2 34 5 6

  /prebuilts/ndk/current/platforms/android-24/arch-x86/usr/include/SLES/
OpenSLES_Android.h 56 SLuint32 representation; member in struct:SLAndroidDataFormat_PCM_EX_
  /prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/SLES/
OpenSLES_Android.h 56 SLuint32 representation; member in struct:SLAndroidDataFormat_PCM_EX_
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECFieldElement.java 497 * representation. Both trinomial (TPB) and pentanomial (PPB) polynomial
499 * representation is not supported.
504 * Indicates gaussian normal basis representation (GNB). Number chosen
510 * Indicates trinomial basis representation (TPB). Number chosen
516 * Indicates pentanomial basis representation (PPB). Number chosen
524 private int representation; field in class:ECFieldElement.Fp.F2m
568 this.representation = TPB;
583 this.representation = PPB;
610 this.representation = (ks.length == 1) ? TPB : PPB;
653 * (having the same representation)
    [all...]
  /external/v8/src/
property-details.h 90 class Representation {
107 Representation() : kind_(kNone) { }
109 static Representation None() { return Representation(kNone); }
110 static Representation Tagged() { return Representation(kTagged); }
111 static Representation Integer8() { return Representation(kInteger8); }
112 static Representation UInteger8() { return Representation(kUInteger8);
324 Representation representation() const { function in class:v8::internal::BASE_EMBEDDED
    [all...]
code-stubs-hydrogen.cc 59 Representation GetParameterRepresentation(int parameter) {
78 Representation representation,
123 Representation r = GetParameterRepresentation(i);
1118 Representation representation = index.is_double() local
1376 Representation representation = casted_stub()->representation(); local
    [all...]
code-stub-assembler.cc 1852 Node* representation = local
    [all...]
builtins.cc 1526 Representation representation = details.representation(); local
    [all...]
  /external/v8/test/cctest/
test-types.cc 181 // Check we can decompose type into semantics and representation and
189 Type* representation = T.Representation(type1); local
191 Type* composed = T.Union(representation, semantic);
200 Type* representation1 = T.Representation(type1);
202 Type* representation2 = T.Representation(type2);
217 Type* representation1 = T.Representation(type1);
219 Type* representation2 = T.Representation(type2);
236 Type* representation1 = T.Representation(type1);
238 Type* representation2 = T.Representation(type2)
    [all...]
  /frameworks/wilhelm/src/android/
AudioPlayer_to_android.cpp 954 audio_channel_representation_t representation = local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
ImagePreset.java 81 FilterRepresentation representation = null; local
83 representation = mFilters.elementAt(position).copy();
85 return representation;
103 public int getPositionForRepresentation(FilterRepresentation representation) {
105 if (sameSerializationName(mFilters.elementAt(i), representation)) {
140 FilterRepresentation representation = mFilters.elementAt(position); local
141 if (representation != null) {
142 representation = representation.copy();
144 return representation;
431 FilterRepresentation representation = mFilters.elementAt(i); local
509 FilterRepresentation representation = mFilters.elementAt(i); local
560 FilterRepresentation representation = mFilters.elementAt(i); local
578 FilterRepresentation representation = mFilters.elementAt(i); local
619 FilterRepresentation representation = mFilters.elementAt(i); local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/
FilterShowActivity.java 302 public void loadEditorPanel(FilterRepresentation representation,
304 if (representation.getEditorId() == ImageOnlyEditor.ID) {
463 for (FilterRepresentation representation : filtersRepresentations) {
464 if (representation.getTextId() != 0) {
465 representation.setName(getString(representation.getTextId()));
467 mCategoryFiltersAdapter.add(new Action(this, representation));
479 for (FilterRepresentation representation : filtersRepresentations) {
480 mCategoryGeometryAdapter.add(new Action(this, representation));
481 if (representation instanceof FilterDrawRepresentation)
486 FilterRepresentation representation = new FilterDrawRepresentation(); local
636 FilterRepresentation representation = copy.getRepresentation(filterRepresentation); local
1140 FilterUserPresetRepresentation representation = presets.get(i); local
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
FormatString.h 32 /// Class representing optional flags with location and representation
36 OptionalFlag(const char *Representation)
37 : representation(Representation), flag(false) {}
50 const char *toString() const { return representation; }
59 const char *representation; member in class:clang::analyze_format_string::OptionalFlag
  /external/robolectric/v1/src/main/java/android/net/
Uri__FromAndroid.java 336 * Compares the string representation of this Uri with that of
344 * Returns the encoded string representation of this URI.
411 /** URI string representation. */
1970 int representation = parcel.readInt(); local
2154 int representation = parcel.readInt(); local
    [all...]
  /external/v8/src/compiler/
instruction.h 458 MachineRepresentation representation() const { function in class:v8::internal::compiler::LocationOperand
542 !IsFloatingPoint(LocationOperand::cast(this)->representation());
547 IsFloatingPoint(LocationOperand::cast(this)->representation());
552 LocationOperand::cast(this)->representation() ==
558 LocationOperand::cast(this)->representation() ==
564 LocationOperand::cast(this)->representation() ==
572 !IsFloatingPoint(LocationOperand::cast(this)->representation());
579 IsFloatingPoint(LocationOperand::cast(this)->representation());
586 LocationOperand::cast(this)->representation() ==
594 LocationOperand::cast(this)->representation() =
    [all...]
register-allocator.h 53 // Returns a numeric representation of this lifetime position.
172 // Representation of the non-empty interval [start,end[.
248 // Representation of a use position.
305 // Representation of SSA values' live ranges as a collection of (continuous)
324 MachineRepresentation representation() const { function in class:v8::internal::compiler::LiveRange
    [all...]
simplified-lowering.cc 20 #include "src/compiler/representation-change.h"
31 // Macro for outputting trace information from representation inference.
37 // Representation selection and lowering of {Simplified} operators to machine
39 // output representation and the best possible lowering for {Simplified} nodes.
40 // Representation change insertion ensures that all values are in the correct
41 // machine representation after this phase, as dictated by the machine
49 // the output representation.
58 // representation changes between uses that demand a particular
59 // representation and nodes that produce a different representation
204 MachineRepresentation representation() const { return representation_; } function in class:v8::internal::compiler::RepresentationSelector::NodeInfo
    [all...]
  /frameworks/base/core/java/android/net/
Uri.java 348 * Compares the string representation of this Uri with that of
356 * Returns the encoded string representation of this URI.
362 * Return a string representation of the URI that is safe to print
470 /** URI string representation. */
2021 int representation = parcel.readInt(); local
2206 int representation = parcel.readInt(); local
    [all...]
  /external/v8/src/crankshaft/arm/
lithium-arm.h 826 return hydrogen()->representation().IsDouble();
2003 Representation representation() const { function in class:v8::internal::final
    [all...]
lithium-codegen-arm.cc 399 Representation r = chunk_->LookupLiteralRepresentation(const_op);
435 Representation r = chunk_->LookupLiteralRepresentation(const_op);
477 return ToRepresentation(op, Representation::Integer32());
482 const Representation& r) const {
508 Representation r = chunk_->LookupLiteralRepresentation(const_op);
3782 Representation representation = instr->representation(); local
    [all...]
  /external/v8/src/crankshaft/arm64/
lithium-arm64.h 1112 return hydrogen()->representation().IsDouble();
2401 Representation representation() const { function in class:v8::internal::final
    [all...]
  /external/v8/src/crankshaft/mips/
lithium-mips.h 801 return hydrogen()->representation().IsDouble();
1967 Representation representation() const { function in class:v8::internal::final
    [all...]
  /external/v8/src/crankshaft/mips64/
lithium-mips64.h 819 return hydrogen()->representation().IsDouble();
2013 Representation representation() const { function in class:v8::internal::final
    [all...]
  /external/v8/src/crankshaft/ppc/
lithium-ppc.h 807 bool is_double() const { return hydrogen()->representation().IsDouble(); }
1952 Representation representation() const { function in class:v8::internal::final
    [all...]
  /external/v8/src/crankshaft/s390/
lithium-s390.h 770 bool is_double() const { return hydrogen()->representation().IsDouble(); }
1821 Representation representation() const { function in class:v8::internal::final
    [all...]
  /external/v8/src/crankshaft/x64/
lithium-x64.h 810 return hydrogen()->representation().IsDouble();
2011 Representation representation() const { function in class:v8::internal::final
    [all...]

Completed in 1937 milliseconds

1 2 34 5 6