Searched defs:sub (Results 176 - 200 of 291) sorted by relevance

1234567891011>>

/external/icu/icu4c/source/test/cintltst/
H A Dcldrtest.c392 /* The ures_* API does not do fallback of sub-resource bundles,
1321 UBool sub; local
1340 sub = ulocdata_getNoSubstitute(uld);
1341 ulocdata_setNoSubstitute(uld,sub);
H A Dccapitst.c3530 static const UChar sub[5]={ 0x61, 0x62, 0x63, 0x64, 0x65 }; local
3537 /* UTF-16/32: test that the BOM is output before the sub character */
3575 ucnv_setSubstString(cnv, sub, UPRV_LENGTHOF(sub), &errorCode);
3577 log_err("ucnv_setSubstString(ISO-8859-1, sub[5]) failed - %s\n", u_errorName(errorCode));
3583 log_err("ucnv_getSubstChars(ucnv_setSubstString(ISO-8859-1, sub[5])) failed - %s\n", u_errorName(errorCode));
3595 ucnv_setSubstString(cnv, sub, UPRV_LENGTHOF(sub), &errorCode);
3597 log_err("ucnv_setSubstString(HZ, sub[5]) failed - %s\n", u_errorName(errorCode));
3603 log_err("ucnv_getSubstChars(ucnv_setSubstString(HZ, sub[
[all...]
/external/libvpx/libvpx/vpx_dsp/arm/
H A Dhighbd_intrapred_neon.c909 const int16x8_t sub = vsubq_s16(above_s16, top_left); local
914 sum = vaddq_s16(sum, sub);
923 sum = vaddq_s16(sum, sub);
932 const int16x8_t left_dup, const int16x8_t sub,
935 int16x8_t sum = vaddq_s16(left_dup, sub);
949 const int16x8_t sub = vsubq_s16(above_s16, top_left); local
958 tm_8_kernel(&dst, stride, left_dup, sub, max);
961 tm_8_kernel(&dst, stride, left_dup, sub, max);
964 tm_8_kernel(&dst, stride, left_dup, sub, max);
967 tm_8_kernel(&dst, stride, left_dup, sub, ma
931 tm_8_kernel(uint16_t **dst, const ptrdiff_t stride, const int16x8_t left_dup, const int16x8_t sub, const int16x8_t max) argument
[all...]
H A Dintrapred_neon.c886 int16x8_t sub, sum; local
889 sub = vreinterpretq_s16_u16(vsubl_u8(above_u8, top_left));
891 sub = vreinterpretq_s16_s64(
892 vdupq_lane_s64(vreinterpret_s64_s16(vget_low_s16(sub)), 0));
895 sum = vaddq_s16(sum, sub);
903 sum = vaddq_s16(sum, sub);
911 const int16x8_t left_dup, const int16x8_t sub) {
912 const int16x8_t sum = vaddq_s16(left_dup, sub);
924 const int16x8_t sub = vreinterpretq_s16_u16(vsubl_u8(above_u8, top_left)); local
932 tm_8_kernel(&dst, stride, left_dup, sub);
910 tm_8_kernel(uint8_t **dst, const ptrdiff_t stride, const int16x8_t left_dup, const int16x8_t sub) argument
[all...]
/external/llvm/include/llvm/Support/
H A DCommandLine.h407 // sub - Specify the subcommand that this option belongs to.
408 struct sub { struct in namespace:llvm
410 sub(SubCommand &S) : Sub(S) {} function in struct:llvm::sub
/external/llvm/lib/Support/
H A DCommandLine.cpp123 // If we're adding this to all sub-commands, add it to the ones that have
174 // If we're adding this to all sub-commands, add it to the ones that have
283 void registerSubCommand(SubCommand *sub) { argument
285 [sub](const SubCommand *Sub) {
286 return (sub->getName() != nullptr) &&
287 (Sub->getName() == sub->getName());
290 RegisteredSubCommands.insert(sub);
294 if (sub != &*AllSubCommands) {
299 addOption(O, sub);
301 addLiteralOption(*O, sub,
306 unregisterSubCommand(SubCommand *sub) argument
[all...]
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
H A Dnv50_ir_peephole.cpp1529 // turn "sub" into "add neg" (do we really want this ?)
1619 Instruction *sub = abs->getSrc(0)->getInsn(); local
1621 if (!sub ||
1625 if (sub->src(0).mod || sub->src(1).mod)
1628 ty = intTypeToSigned(sub->dType);
1632 if ((sub->op != OP_ADD && sub->op != OP_SUB) ||
1633 sub->src(0).getFile() != FILE_GPR || sub
[all...]
/external/mksh/src/
H A Dvar.c208 char *sub, *tmp; local
214 sub = substitute(tmp, 0);
217 evaluate(sub, &rval, KSH_UNWIND_ERROR, true);
219 afree(sub, ATEMP);
1364 /* common sub-cases */
/external/one-true-awk/
H A Drun.c1773 Cell *sub(Node **a, int nnn) /* substitute command */ function
1782 FATAL("out of memory in sub");
1796 adjbuf(&buf, &bufsz, 1+patbeg-sptr, recsize, 0, "sub");
1802 adjbuf(&buf, &bufsz, 5+pb-buf, recsize, &pb, "sub");
1807 adjbuf(&buf, &bufsz, 1+patlen+pb-buf, recsize, &pb, "sub");
1815 FATAL("sub result1 %.30s too big; can't happen", buf);
1818 adjbuf(&buf, &bufsz, 1+strlen(sptr)+pb-buf, 0, &pb, "sub");
1823 FATAL("sub result2 %.30s too big; can't happen", buf);
/external/python/cpython2/Objects/
H A Dbytearrayobject.c1179 "B.find(sub [,start [,end]]) -> int\n\
1181 Return the lowest index in B where subsection sub is found,\n\
1182 such that sub is contained within B[start,end]. Optional\n\
1197 "B.count(sub [,start [,end]]) -> int\n\
1199 Return the number of non-overlapping occurrences of subsection sub in\n\
1229 "B.index(sub [,start [,end]]) -> int\n\
1249 "B.rfind(sub [,start [,end]]) -> int\n\
1251 Return the highest index in B where subsection sub is found,\n\
1252 such that sub is contained within B[start,end]. Optional\n\
1268 "B.rindex(sub [,star
2074 const char *s = PyByteArray_AS_STRING(self), *sub; local
2167 const char *s = PyByteArray_AS_STRING(self), *sub; local
[all...]
/external/python/cpython3/Modules/_decimal/libmpdec/literature/
H A Dumodarith.lisp345 (defun sub (a b) function
539 (x (sub lo x))
550 (x (sub lo x))
561 (x (sub lo x))
/external/python/cpython3/Objects/
H A Dbytearrayobject.c1352 const char *s = PyByteArray_AS_STRING(self), *sub; local
1364 sub = vsub.buf;
1368 (PyObject*) self, s, len, sub, n, maxsplit
1462 const char *s = PyByteArray_AS_STRING(self), *sub; local
1474 sub = vsub.buf;
1478 (PyObject*) self, s, len, sub, n, maxsplit
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DCommandLine.h425 // sub - Specify the subcommand that this option belongs to.
426 struct sub { struct in namespace:llvm
429 sub(SubCommand &S) : Sub(S) {} function in struct:llvm::sub
/external/swiftshader/third_party/llvm-subzero/lib/Support/
H A DCommandLine.cpp137 // If we're adding this to all sub-commands, add it to the ones that have
188 // If we're adding this to all sub-commands, add it to the ones that have
297 void registerSubCommand(SubCommand *sub) { argument
299 [sub](const SubCommand *Sub) {
300 return (!sub->getName().empty()) &&
301 (Sub->getName() == sub->getName());
304 RegisteredSubCommands.insert(sub);
308 if (sub != &*AllSubCommands) {
313 addOption(O, sub);
315 addLiteralOption(*O, sub,
320 unregisterSubCommand(SubCommand *sub) argument
[all...]
/external/tensorflow/tensorflow/compiler/xla/service/
H A Dalgebraic_simplifier.cc171 Status HandleSubtract(HloInstruction* sub) override;
522 Status AlgebraicSimplifierVisitor::HandleSubtract(HloInstruction* sub) { argument
523 auto lhs = sub->mutable_operand(0);
524 auto rhs = sub->mutable_operand(1);
526 VLOG(10) << "trying transform [A - 0 => A]: " << sub->ToString();
527 if (IsAll(rhs, 0) && ReplaceInstructionIfSameShape(sub, lhs)) {
537 sub, HloInstruction::CreateBinary(sub->shape(), HloOpcode::kAdd, lhs,
H A Dbuffer_assignment_test.cc352 // paramscalar ------- (mul) -- (add) -- (sub)
368 auto sub = builder.AddInstruction(HloInstruction::CreateBinary( local
392 // The sub node has a valid output buffer assigned.
393 GetAssignedOutputAllocation(*buffers, sub);
397 // paramscalar ------- (mul) -- (add) -- (sub)
415 auto sub = builder.AddInstruction(HloInstruction::CreateBinary( local
451 // The sub node has a valid output buffer assigned.
452 GetAssignedOutputAllocation(*buffers, sub);
456 // paramscalar ------- (mul) -- (add) -- (sub)
474 auto sub local
544 auto sub = builder.AddInstruction( local
[all...]
/external/tensorflow/tensorflow/core/graph/
H A Dmkl_layout_pass.cc296 csinfo_.sub = "Sub";
373 rinfo_.push_back({csinfo_.sub, mkl_op_registry::GetMklOpName(csinfo_.sub),
488 string sub; member in struct:tensorflow::MklLayoutRewritePass::__anon26308
2449 csinfo_.sub = "Sub";
2534 rinfo_.push_back({csinfo_.sub,
2535 mkl_op_registry::GetMklOpName(csinfo_.sub),
2640 string sub;
/external/tinyxml2/
H A Dxmltest.cpp428 static const char* test = "<element><sub/></element>";
430 XMLTest( "Element with sub element", false, doc->Error() );
457 // <sub attrib="1" />
458 // <sub attrib="2" />
459 // <sub attrib="3" >& Text!</sub>
465 XMLElement* sub[3] = { doc->NewElement( "sub" ), doc->NewElement( "sub" ), doc->NewElement( "sub" ) }; local
[all...]
/external/v8/src/x87/
H A Dassembler-x87.cc1093 void Assembler::sub(const Operand& dst, const Immediate& x) { function in class:v8::internal::Assembler
1099 void Assembler::sub(Register dst, const Operand& src) { function in class:v8::internal::Assembler
1106 void Assembler::sub(const Operand& dst, Register src) { function in class:v8::internal::Assembler
/external/valgrind/coregrind/m_demangle/
H A Ddemangle.h601 struct demangle_component *sub; member in struct:demangle_component::__anon28994::__anon29006
/external/vixl/src/aarch64/
H A Dassembler-aarch64.cc420 void Assembler::sub(const Register& rd, function in class:vixl::aarch64::Assembler
442 sub(rd, zr, operand);
2653 V(sub, NEON_SUB, vd.IsVector() || vd.Is1D()) \
3956 // add/sub wsp, <Wn>, <Wm> [, LSL #0-3 ]
3957 // add/sub <Wd>, wsp, <Wm> [, LSL #0-3 ]
3958 // add/sub wsp, wsp, <Wm> [, LSL #0-3 ]
3961 // extended register mode, and emit an add/sub extended instruction.
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_new_handlers_p2p.c2426 DBusMessageIter variant_iter, iter_dict, array_iter, sub; local
2479 dbus_message_iter_recurse(&array_iter, &sub);
2480 dbus_message_iter_get_fixed_array(&sub, &val, &len);
/external/annotation-tools/annotation-file-utilities/lib/
H A Dplume-core.jarMETA-INF/ META-INF/MANIFEST.MF plume/ArraysMDE$ComparableArrayComparatorLengthFirst.class ArraysMDE.java package ...
/external/deqp/modules/gles2/functional/
H A Des2fUniformApiTests.cpp409 UniformCollection* const sub = basic(types[i], ("_" + de::toString(i) + nameSuffix).c_str()); local
410 sub->moveContents(*res);
411 delete sub;
424 UniformCollection* const sub = basicArray(types[i], ("_" + de::toString(i) + nameSuffix).c_str()); local
425 sub->moveContents(*res);
426 delete sub;
442 UniformCollection* const sub = nestedArraysStructs(types0[i], types1[i], ("_" + de::toString(i) + nameSuffix).c_str()); local
443 sub->moveContents(*res);
444 delete sub;
/external/deqp/modules/gles31/functional/
H A Des31fProgramUniformTests.cpp455 UniformCollection* const sub = basic(types[i], ("_" + de::toString(i) + nameSuffix).c_str()); local
456 sub->moveContents(*res);
457 delete sub;
470 UniformCollection* const sub = basicArray(types[i], ("_" + de::toString(i) + nameSuffix).c_str()); local
471 sub->moveContents(*res);
472 delete sub;
488 UniformCollection* const sub = nestedArraysStructs(types0[i], types1[i], ("_" + de::toString(i) + nameSuffix).c_str()); local
489 sub->moveContents(*res);
490 delete sub;

Completed in 739 milliseconds

1234567891011>>