HomeSort by relevance Sort by last modified time
    Searched full:combine (Results 51 - 75 of 2000) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium/testing/gtest/samples/
sample8_unittest.cc 33 // Combine() helps with generating all possible combinations of such flags,
86 using ::testing::Combine;
153 // Here, we instantiate our tests with a list of parameters. We must combine
157 // PrecalcPrimeTable instance and some inside it (10). Combine will produce all
161 Combine(Bool(), Values(1, 10)));
165 // Google Test may not support Combine() with some compilers. If we
  /external/chromium_org/chrome/installer/util/
language_selector_unittest.cc 127 ::testing::Combine(
134 ::testing::Combine(
141 ::testing::Combine(
148 ::testing::Combine(
155 ::testing::Combine(
162 ::testing::Combine(
  /external/chromium_org/testing/gtest/samples/
sample8_unittest.cc 33 // Combine() helps with generating all possible combinations of such flags,
86 using ::testing::Combine;
153 // Here, we instantiate our tests with a list of parameters. We must combine
157 // PrecalcPrimeTable instance and some inside it (10). Combine will produce all
161 Combine(Bool(), Values(1, 10)));
165 // Google Test may not support Combine() with some compilers. If we
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
texenv.c 156 if (texUnit->Combine.ModeRGB == mode)
159 texUnit->Combine.ModeRGB = mode;
163 if (texUnit->Combine.ModeA == mode)
166 texUnit->Combine.ModeA = mode;
259 texUnit->Combine.SourceA[term] = param;
261 texUnit->Combine.SourceRGB[term] = param;
341 texUnit->Combine.OperandA[term] = param;
343 texUnit->Combine.OperandRGB[term] = param;
371 if (texUnit->Combine.ScaleShiftRGB == shift)
374 texUnit->Combine.ScaleShiftRGB = shift
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_texcombine.c 96 const struct gl_tex_env_combine_state *combine = textureUnit->_CurrentCombine; local
99 const GLfloat scaleRGB = (GLfloat) (1 << combine->ScaleShiftRGB);
100 const GLfloat scaleA = (GLfloat) (1 << combine->ScaleShiftA);
101 const GLuint numArgsRGB = combine->_NumArgsRGB;
102 const GLuint numArgsA = combine->_NumArgsA;
137 combine->ModeRGB,
138 combine->ModeA,
139 combine->SourceRGB[0],
140 combine->SourceA[0],
141 combine->SourceRGB[1]
    [all...]
  /external/gtest/samples/
sample8_unittest.cc 33 // Combine() helps with generating all possible combinations of such flags,
86 using ::testing::Combine;
153 // Here, we instantiate our tests with a list of parameters. We must combine
157 // PrecalcPrimeTable instance and some inside it (10). Combine will produce all
161 Combine(Bool(), Values(1, 10)));
165 // Google Test may not support Combine() with some compilers. If we
  /external/libvpx/libvpx/third_party/googletest/src/samples/
sample8_unittest.cc 33 // Combine() helps with generating all possible combinations of such flags,
86 using ::testing::Combine;
153 // Here, we instantiate our tests with a list of parameters. We must combine
157 // PrecalcPrimeTable instance and some inside it (10). Combine will produce all
161 Combine(Bool(), Values(1, 10)));
165 // Google Test may not support Combine() with some compilers. If we
  /external/mesa3d/src/mesa/main/
texenv.c 156 if (texUnit->Combine.ModeRGB == mode)
159 texUnit->Combine.ModeRGB = mode;
163 if (texUnit->Combine.ModeA == mode)
166 texUnit->Combine.ModeA = mode;
259 texUnit->Combine.SourceA[term] = param;
261 texUnit->Combine.SourceRGB[term] = param;
341 texUnit->Combine.OperandA[term] = param;
343 texUnit->Combine.OperandRGB[term] = param;
371 if (texUnit->Combine.ScaleShiftRGB == shift)
374 texUnit->Combine.ScaleShiftRGB = shift
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_texcombine.c 88 const struct gl_tex_env_combine_state *combine = textureUnit->_CurrentCombine; local
91 const GLfloat scaleRGB = (GLfloat) (1 << combine->ScaleShiftRGB);
92 const GLfloat scaleA = (GLfloat) (1 << combine->ScaleShiftA);
93 const GLuint numArgsRGB = combine->_NumArgsRGB;
94 const GLuint numArgsA = combine->_NumArgsA;
129 combine->ModeRGB,
130 combine->ModeA,
131 combine->SourceRGB[0],
132 combine->SourceA[0],
133 combine->SourceRGB[1]
    [all...]
  /external/protobuf/gtest/samples/
sample8_unittest.cc 33 // Combine() helps with generating all possible combinations of such flags,
86 using ::testing::Combine;
153 // Here, we instantiate our tests with a list of parameters. We must combine
157 // PrecalcPrimeTable instance and some inside it (10). Combine will produce all
161 Combine(Bool(), Values(1, 10)));
165 // Google Test doesn't support Combine() on some platforms and compilers,
  /ndk/sources/third_party/googletest/googletest/samples/
sample8_unittest.cc 33 // Combine() helps with generating all possible combinations of such flags,
86 using ::testing::Combine;
153 // Here, we instantiate our tests with a list of parameters. We must combine
157 // PrecalcPrimeTable instance and some inside it (10). Combine will produce all
161 Combine(Bool(), Values(1, 10)));
165 // Google Test may not support Combine() with some compilers. If we
  /external/llvm/include/llvm/ADT/
Hashing.h 344 /// A type trait which is true if we want to combine values for hashing by
511 /// This sets up the state for a recursive hash combine, including getting
516 /// \brief Combine one chunk of data into the current in-flight hash.
527 // with the variadic combine because that formation can have varying
564 hash_code combine(size_t length, char *buffer_ptr, char *buffer_end, function in struct:llvm::hashing::detail::hash_combine_recursive_helper
569 return combine(length, buffer_ptr, buffer_end, args...);
578 hash_code combine(size_t length, char *buffer_ptr, char *buffer_end, function in struct:llvm::hashing::detail::hash_combine_recursive_helper
582 return combine(length, buffer_ptr, buffer_end, arg2, arg3, arg4, arg5, arg6);
585 hash_code combine(size_t length, char *buffer_ptr, char *buffer_end, function in struct:llvm::hashing::detail::hash_combine_recursive_helper
589 return combine(length, buffer_ptr, buffer_end, arg2, arg3, arg4, arg5)
592 hash_code combine(size_t length, char *buffer_ptr, char *buffer_end, function in struct:llvm::hashing::detail::hash_combine_recursive_helper
599 hash_code combine(size_t length, char *buffer_ptr, char *buffer_end, function in struct:llvm::hashing::detail::hash_combine_recursive_helper
605 hash_code combine(size_t length, char *buffer_ptr, char *buffer_end, function in struct:llvm::hashing::detail::hash_combine_recursive_helper
611 hash_code combine(size_t length, char *buffer_ptr, char *buffer_end, function in struct:llvm::hashing::detail::hash_combine_recursive_helper
624 hash_code combine(size_t length, char *buffer_ptr, char *buffer_end) { function in struct:llvm::hashing::detail::hash_combine_recursive_helper
    [all...]
  /external/chromium_org/ui/gfx/
transform_util.cc 33 void Combine(double* out,
87 Combine<4>(out, q1, q2, scale1, scale2);
131 Combine<3>(out->translate, to.translate, from.translate, scalea, scaleb);
132 Combine<3>(out->scale, to.scale, from.scale, scalea, scaleb);
133 Combine<3>(out->skew, to.skew, from.skew, scalea, scaleb);
134 Combine<4>(
212 Combine<3>(row[1], row[1], row[0], 1.0, -decomp->skew[0]);
223 Combine<3>(row[2], row[2], row[0], 1.0, -decomp->skew[1]);
225 Combine<3>(row[2], row[2], row[1], 1.0, -decomp->skew[2]);
  /external/clang/test/Sema/
thread-specifier.c 50 __thread auto int t12a; // expected-error-re {{cannot combine with previous '(__thread|_Thread_local)' declaration specifier}}
51 auto __thread int t12b; // expected-error {{cannot combine with previous 'auto' declaration specifier}}
56 __thread register int t13a; // expected-error-re {{cannot combine with previous '(__thread|_Thread_local|thread_local)' declaration specifier}}
57 register __thread int t13b; // expected-error {{cannot combine with previous 'register' declaration specifier}}
60 __thread typedef int t14; // expected-error-re {{cannot combine with previous '(__thread|_Thread_local|thread_local)' declaration specifier}}
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
CombinerHeightMap.java 65 //the combine mode.
73 * @param map1 the first heightmap to combine.
74 * @param map2 the second heightmap to combine.
119 * @param map1 the first heightmap to combine.
121 * @param map2 the second heightmap to combine.
189 * <code>setHeightMaps</code> sets the height maps to combine.
  /dalvik/dexgen/src/com/android/dexgen/rop/annotation/
AnnotationsList.java 39 public static AnnotationsList combine(AnnotationsList list1, method in class:AnnotationsList
52 result.set(i, Annotations.combine(a1, a2));
  /dalvik/dx/src/com/android/dx/rop/annotation/
AnnotationsList.java 39 public static AnnotationsList combine(AnnotationsList list1, method in class:AnnotationsList
52 result.set(i, Annotations.combine(a1, a2));
  /external/apache-harmony/security/src/test/api/java/tests/api/java/security/
DomainCombinerTest.java 37 * @tests java.security.DomainCombiner#combine(java.security.ProtectionDomain[],
50 public ProtectionDomain[] combine( method in class:DomainCombinerTest.MyCombiner
  /external/dexmaker/src/dx/java/com/android/dx/rop/annotation/
AnnotationsList.java 39 public static AnnotationsList combine(AnnotationsList list1, method in class:AnnotationsList
52 result.set(i, Annotations.combine(a1, a2));
  /frameworks/base/docs/html/design/get-started/
creative-vision.jd 18 of art in their own right. Just like a well-made tool, your app should strive to combine beauty,
37 and to use apps in inventive new ways. Android lets people combine applications into new workflows
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
file.c 294 /* Combine any double slashes when copying */
309 /* Combine any double slashes when copying */
358 /* Combine any double slashes when copying */
379 /* Combine any double slashes when copying */
398 /* Combine any double slashes when copying */
454 /* Combine any double slashes when copying */
542 char *combine; local
547 combine = yasm__combpath(from, iname);
548 f = fopen(combine, mode);
551 *oname = combine;
    [all...]
  /dalvik/dx/tests/093-ssa-invoke-range/
Blort.java 54 // ensure that an attempt to combine registers for a local
  /external/chromium_org/third_party/skia/src/pathops/
SkOpSpan.h 23 int fOppValue; // normally 0 -- when binary coincident edges combine, opp value goes here
SkPathOpsSpan.h 23 int fOppValue; // normally 0 -- when binary coincident edges combine, opp value goes here
  /external/libvpx/libvpx/vp8/common/x86/
mfqe_sse2.asm 48 .combine
80 jnz .combine
125 .combine
148 jnz .combine

Completed in 1111 milliseconds

1 23 4 5 6 7 8 91011>>