/external/deqp/modules/gles2/functional/ |
es2fFboCompletenessTests.cpp | 261 bool tryCombination (const FormatCombination& comb); 265 bool SupportedCombinationTest::tryCombination (const FormatCombination& comb) 270 attachTargetToNew(GL_COLOR_ATTACHMENT0, comb.colorKind, comb.colorFmt, 272 attachTargetToNew(GL_DEPTH_ATTACHMENT, comb.depthKind, comb.depthFmt, 274 attachTargetToNew(GL_STENCIL_ATTACHMENT, comb.stencilKind, comb.stencilFmt, 302 FormatCombination comb; local 311 comb.colorFmt = *col [all...] |
/external/ipsec-tools/src/libipsec/ |
key_debug.c | 216 struct sadb_comb *comb; local 224 / sizeof(*comb); 225 comb = (void *)(prop + 1); 231 comb->sadb_comb_auth, comb->sadb_comb_encrypt, 232 comb->sadb_comb_flags, comb->sadb_comb_reserved); 236 comb->sadb_comb_auth_minbits, 237 comb->sadb_comb_auth_maxbits, 238 comb->sadb_comb_encrypt_minbits [all...] |
/external/opencv3/modules/photo/src/ |
contrast_preserve.hpp | 61 vector<double> product(vector < vector<int> > &comb, vector <double> &initRGB); 67 void add_vector(vector < vector <int> > &comb, int &idx, int r,int g,int b); 71 vector < double > &Cg, vector < vector <int> >& comb); 73 void wei_inti(vector < vector <int> > &comb, vector <double> &wei); 123 vector<double> Decolor::product(vector < vector<int> > &comb, vector <double> &initRGB) 127 for (unsigned int i=0;i<comb.size();i++) 131 dp = dp + (comb[i][j] * initRGB[j]); 211 void Decolor::add_vector(vector < vector <int> > &comb, int &idx, int r,int g,int b) 213 comb.push_back( vector <int>() ); 214 comb.at(idx).push_back( r ) [all...] |
contrast_preserve.cpp | 83 vector < vector < int > > comb; local 87 obj.grad_system(img,polyGrad,Cg,comb); 95 obj.wei_inti(comb,wei);
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/hppa/reloc/ |
labelopbug.s | 23 comb,= %r29,%r19,L$0002
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/hppa/unsorted/ |
brlenbug.s | 213 comb,>=,n %r4,%r19,L$1155 ;# 121 bleu+1 222 comb,>=,n %r19,%r20,L$1156 ;# 144 bleu+1 231 comb,>= %r22,%r20,L$0037 ;# 167 bleu+1 634 comb,=,n %r19,%r25,L$0055 ;# 308 bleu+1 648 comb,>>=,n %r20,%r19,L$0060 ;# 7990 bleu+1 654 comb,>>= %r3,%r19,L$0066 ;# 375 bleu+1 664 comb,= %r28,%r4,L$0059 ;# 407 bleu+1 685 comb,<< %r20,%r19,L$0061 692 comb,=,n %r16,%r26,L$0079 ;# 485 bleu+1 706 comb,>>=,n %r20,%r19,L$0084 ;# 7998 bleu+ [all...] |
/external/mesa3d/src/mesa/main/ |
ff_fragment_shader.cpp | 431 const struct gl_tex_env_combine_state *comb = texUnit->_CurrentCombine; local 454 key->unit[i].NumArgsRGB = comb->_NumArgsRGB; 455 key->unit[i].NumArgsA = comb->_NumArgsA; 458 translate_mode(texUnit->EnvMode, comb->ModeRGB); 460 translate_mode(texUnit->EnvMode, comb->ModeA); 462 key->unit[i].ScaleShiftRGB = comb->ScaleShiftRGB; 463 key->unit[i].ScaleShiftA = comb->ScaleShiftA; 466 key->unit[i].OptRGB[j].Operand = translate_operand(comb->OperandRGB[j]); 467 key->unit[i].OptA[j].Operand = translate_operand(comb->OperandA[j]); 468 key->unit[i].OptRGB[j].Source = translate_source(comb->SourceRGB[j]) [all...] |
/external/deqp/framework/common/ |
tcuTexCompareVerifier.cpp | 223 for (deUint32 comb = 0; comb < (1<<2); comb++) 226 if (((comb & isTrue) | (~comb & isFalse)) != (1<<2)-1) 229 const bool cmp0True = ((comb>>0)&1) != 0; 230 const bool cmp1True = ((comb>>1)&1) != 0; 333 for (deUint32 comb = 0; comb < (1<<4); comb++ [all...] |
/external/clang/utils/ABITest/ |
TypeGen.py | 266 comb = num_combinations(len(self.values), numEnumerators) 267 if valuesCovered + comb > n: 270 valuesCovered += comb
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/pdp11/ |
opcode.s | 153 comb @-(r5)
|
opcode.d | 149 126: 8a6d [ ]*comb \*-\(r5\)
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_itertools.py | 135 [e for e in values if e in c]) # comb is a subsequence of the input iterable 207 [e for e in values if e in c]) # comb is a subsequence of the input iterable 292 comb = list(combinations(s, r)) 298 self.assertEqual(len(comb), 0 if r>n else fact(n) // fact(r) // fact(n-r)) 304 self.assertEqual(comb, sorted(set(comb))) 309 self.assertEqual(comb, [t for t in perm if sorted(t)==list(t)]) # comb: perms that are sorted 310 self.assertEqual(comb, [t for t in cwr if len(set(t))==r]) # comb: cwrs without dup [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_itertools.py | 135 [e for e in values if e in c]) # comb is a subsequence of the input iterable 207 [e for e in values if e in c]) # comb is a subsequence of the input iterable 292 comb = list(combinations(s, r)) 298 self.assertEqual(len(comb), 0 if r>n else fact(n) // fact(r) // fact(n-r)) 304 self.assertEqual(comb, sorted(set(comb))) 309 self.assertEqual(comb, [t for t in perm if sorted(t)==list(t)]) # comb: perms that are sorted 310 self.assertEqual(comb, [t for t in cwr if len(set(t))==r]) # comb: cwrs without dup [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_itertools.py | 135 [e for e in values if e in c]) # comb is a subsequence of the input iterable 207 [e for e in values if e in c]) # comb is a subsequence of the input iterable 292 comb = list(combinations(s, r)) 298 self.assertEqual(len(comb), 0 if r>n else fact(n) // fact(r) // fact(n-r)) 304 self.assertEqual(comb, sorted(set(comb))) 309 self.assertEqual(comb, [t for t in perm if sorted(t)==list(t)]) # comb: perms that are sorted 310 self.assertEqual(comb, [t for t in cwr if len(set(t))==r]) # comb: cwrs without dup [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_itertools.py | 135 [e for e in values if e in c]) # comb is a subsequence of the input iterable 207 [e for e in values if e in c]) # comb is a subsequence of the input iterable 292 comb = list(combinations(s, r)) 298 self.assertEqual(len(comb), 0 if r>n else fact(n) // fact(r) // fact(n-r)) 304 self.assertEqual(comb, sorted(set(comb))) 309 self.assertEqual(comb, [t for t in perm if sorted(t)==list(t)]) # comb: perms that are sorted 310 self.assertEqual(comb, [t for t in cwr if len(set(t))==r]) # comb: cwrs without dup [all...] |
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/m68hc11/ |
all_insns.s | 132 L128: comb
|
all_insns.d | 236 0+0149 <L128> comb
|
/external/pdfium/fpdfsdk/src/javascript/ |
Field.h | 121 FX_BOOL comb(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError); 513 JS_STATIC_PROP(comb, Field);
|
Field.cpp | 36 JS_STATIC_PROP_ENTRY(comb) 847 FX_BOOL Field::comb(IJS_Context* cc, function in class:Field [all...] |
/prebuilts/tools/common/m2/repository/net/sourceforge/cssparser/cssparser/0.9.13/ |
cssparser-0.9.13.jar | |
/external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/ |
Precomposer.java | 1030 public static char precompose(char base, char comb) { 1035 long sought = base << UNICODE_SHIFT | comb;
|
/toolchain/binutils/binutils-2.25/gold/ |
arm.cc | [all...] |
/toolchain/binutils/binutils-2.25/bfd/ |
elf32-arm.c | 11586 const int *comb[] = local [all...] |