Searched defs:sub (Results 26 - 50 of 291) sorted by relevance

1234567891011>>

/external/llvm/test/MC/AArch64/
H A Darm64-diags.s275 ; Relocated expressions should not be accepted for 32-bit adds or sub (imm)
290 sub x3, x5, sym@PAGEOFF label
291 sub w20, w30, sym@PAGEOFF label
293 ; CHECK-ERRORS: sub x3, x5, sym@PAGEOFF
296 ; CHECK-ERRORS: sub w20, w30, sym@PAGEOFF
436 sub.8h v0, v1
447 ; CHECK-ERRORS: sub.8h v0, v1
/external/skia/tools/fonts/
H A Dsk_tool_utils_font.cpp36 const SubFont* sub; local
39 sub = &gSubFonts[index];
40 if (!strcmp(name, sub->fName) && sub->fStyle == style) {
41 fontData = &sub->fFont;
56 sub = &gSubFonts[gDefaultFontIndex];
57 fontData = &sub->fFont;
/external/tensorflow/tensorflow/core/framework/
H A Dtensor_slice_test.cc211 TensorSlice sub = TensorSlice::ParseOrDie("-:1,2:-:3,4"); local
213 base.ComputeRelative(sub, &relative);
220 TensorSlice sub = TensorSlice::ParseOrDie("1,1:4,2:3,3:5,1"); local
222 base.ComputeRelative(sub, &relative);
/external/blktrace/btreplay/
H A Dbtrecord.h78 static inline __u64 mk_btversion(int mjr, int mnr, int sub) argument
80 return ((mjr & 0xff) << 16) | ((mnr & 0xff) << 8) | (sub & 0xff);
83 static inline void get_btversion(__u64 version, int *mjr, int *mnr, int *sub) argument
87 *sub = (int)((version >> 0) & 0xff);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DObjCUnusedIVarsChecker.cpp54 const Expr *sub = *i; local
55 if (const OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(sub))
56 sub = OVE->getSourceExpr();
57 Scan(M, sub);
/external/clang/test/SemaCXX/
H A Dqual-id-test.cpp11 // expected-note@-2 {{lookup in the object type 'A::sub' refers here}}
29 struct sub : B::base struct in namespace:A
45 A::sub a;
49 a.sub::x();
54 a.A::sub::x();
57 a.bad::x(); // expected-error{{'bad::x' is not a member of class 'A::sub'}}
66 A::sub *a;
70 a->sub::x();
75 a->A::sub::x();
78 a->bad::x(); // expected-error{{'bad::x' is not a member of class 'A::sub'}}
[all...]
/external/llvm/lib/Support/
H A DRegex.cpp98 std::string Regex::sub(StringRef Repl, StringRef String, function in class:Regex
/external/opencv/cv/src/
H A Dcvcalcimagehomography.cpp67 CvMat sub = cvMat( 3, 3, CV_32F, _sub ); local
105 cvSetIdentity( &sub );
106 cvSub( &sub, &r_trans, &sub );
107 cvMatMul( &sub, &center, &t_trans );
109 cvMatMul( &t_trans, &rz, &sub );
110 cvScaleAdd( &sub, cvRealScalar(1./plane_dist), &r_trans, &sub ); /* ? */
112 cvMatMul( &intrinsic, &sub, &r_trans );
113 cvInvert( &intrinsic, &sub, CV_SV
[all...]
/external/python/cpython2/Lib/test/
H A Dtest_defaultdict.py153 class sub(defaultdict): class in function:TestDefaultDict.test_recursive_repr
158 d = sub()
160 "defaultdict(<bound method sub._factory of defaultdict(..."))
/external/python/cpython2/Objects/stringlib/
H A Dsplit.h24 sub = STRINGLIB_NEW((data) + (left), \
26 if (sub == NULL) \
28 if (PyList_Append(list, sub)) { \
29 Py_DECREF(sub); \
33 Py_DECREF(sub);
36 sub = STRINGLIB_NEW((data) + (left), \
38 if (sub == NULL) \
41 PyList_SET_ITEM(list, count, sub); \
43 if (PyList_Append(list, sub)) { \
44 Py_DECREF(sub); \
63 PyObject *sub; local
112 PyObject *sub; local
154 PyObject *list, *sub; local
202 PyObject *sub; local
253 PyObject *sub; local
296 PyObject *list, *sub; local
354 PyObject *sub; local
[all...]
/external/python/cpython3/Lib/test/
H A Dtest_defaultdict.py153 class sub(defaultdict): class in function:TestDefaultDict.test_recursive_repr
158 d = sub()
160 r"defaultdict\(<bound method .*sub\._factory "
/external/python/cpython3/Objects/stringlib/
H A Dfind.h9 const STRINGLIB_CHAR* sub, Py_ssize_t sub_len,
18 pos = FASTSEARCH(str, str_len, sub, sub_len, -1, FAST_SEARCH);
28 const STRINGLIB_CHAR* sub, Py_ssize_t sub_len,
37 pos = FASTSEARCH(str, str_len, sub, sub_len, -1, FAST_RSEARCH);
47 const STRINGLIB_CHAR* sub, Py_ssize_t sub_len,
50 return STRINGLIB(find)(str + start, end - start, sub, sub_len, start);
55 const STRINGLIB_CHAR* sub, Py_ssize_t sub_len,
58 return STRINGLIB(rfind)(str + start, end - start, sub, sub_len, start);
64 STRINGLIB(contains_obj)(PyObject* str, PyObject* sub) argument
68 STRINGLIB_STR(sub), STRINGLIB_LE
8 find(const STRINGLIB_CHAR* str, Py_ssize_t str_len, const STRINGLIB_CHAR* sub, Py_ssize_t sub_len, Py_ssize_t offset) argument
27 rfind(const STRINGLIB_CHAR* str, Py_ssize_t str_len, const STRINGLIB_CHAR* sub, Py_ssize_t sub_len, Py_ssize_t offset) argument
46 find_slice(const STRINGLIB_CHAR* str, Py_ssize_t str_len, const STRINGLIB_CHAR* sub, Py_ssize_t sub_len, Py_ssize_t start, Py_ssize_t end) argument
54 rfind_slice(const STRINGLIB_CHAR* str, Py_ssize_t str_len, const STRINGLIB_CHAR* sub, Py_ssize_t sub_len, Py_ssize_t start, Py_ssize_t end) argument
[all...]
H A Dsplit.h21 sub = STRINGLIB_NEW((data) + (left), \
23 if (sub == NULL) \
25 if (PyList_Append(list, sub)) { \
26 Py_DECREF(sub); \
30 Py_DECREF(sub);
33 sub = STRINGLIB_NEW((data) + (left), \
35 if (sub == NULL) \
38 PyList_SET_ITEM(list, count, sub); \
40 if (PyList_Append(list, sub)) { \
41 Py_DECREF(sub); \
60 PyObject *sub; local
109 PyObject *sub; local
151 PyObject *list, *sub; local
199 PyObject *sub; local
250 PyObject *sub; local
293 PyObject *list, *sub; local
351 PyObject *sub; local
[all...]
/external/skia/tests/
H A DSubsetPath.cpp27 bool SubsetPath::subset(bool testFailed, SkPath* sub) { argument
58 *sub = getSubsetPath();
/external/skqp/tests/
H A DSubsetPath.cpp27 bool SubsetPath::subset(bool testFailed, SkPath* sub) { argument
58 *sub = getSubsetPath();
/external/strace/
H A Daio.c61 enum iocb_sub sub; member in struct:__anon21942
76 return cmds[cmd].sub;
107 enum iocb_sub sub; local
120 sub = tprint_lio_opcode(cb->aio_lio_opcode);
126 return sub;
132 enum iocb_sub sub = print_iocb_header(tcp, cb); local
134 switch (sub) {
/external/swiftshader/third_party/LLVM/lib/Support/
H A DRegex.cpp94 std::string Regex::sub(StringRef Repl, StringRef String, function in class:Regex
/external/swiftshader/third_party/llvm-subzero/lib/Support/
H A DRegex.cpp110 std::string Regex::sub(StringRef Repl, StringRef String, function in class:Regex
/external/tensorflow/tensorflow/compiler/xla/service/
H A Ddefuser_test.cc120 auto sub = builder.AddInstruction( local
123 HloInstruction::CreateBinary(shape_, HloOpcode::kMultiply, sub, param3));
133 {add2, constant, div, mul, sub, negate, add},
158 auto sub = builder.AddInstruction( local
161 HloInstruction::CreateBinary(shape_, HloOpcode::kMultiply, sub, param3));
172 computation->CreateFusionInstruction({sub, negate, add},
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
H A DPixelUtils.java56 public static PointF sub(PointF lhs, PointF rhs) { method in class:PixelUtils
61 * Converts a sub-pixel accurate RectF to a Rect
76 * Converts a sub-pixel accurate RectF to
/external/boringssl/src/crypto/curve25519/asm/
H A Dx25519-asm-arm.S32 sub sp,sp,#736 label
64 sub r7,r7,#2 label
66 sub r7,r7,r7,LSL #7 label
73 sub r1,r6,#16 label
195 sub r2,r2,#8 label
199 sub r2,r2,#24 label
267 sub r2,r4,#32 label
269 sub r4,r5,#32 label
271 sub r5,r6,#32 label
273 sub r label
472 sub r2,r2,#8 label
473 sub r4,r4,#8 label
478 sub r2,r2,#24 label
479 sub r4,r4,#24 label
756 sub r2,r2,#8 label
757 sub r4,r4,#8 label
762 sub r2,r2,#24 label
763 sub r4,r4,#24 label
1077 sub r2,r2,#8 label
1078 sub r4,r4,#8 label
1083 sub r2,r2,#24 label
1084 sub r4,r4,#24 label
1250 sub r2,r2,#8 label
1251 sub r4,r4,#8 label
1256 sub r2,r2,#24 label
1257 sub r4,r4,#24 label
1549 sub r2,r2,#8 label
1550 sub r4,r4,#8 label
1555 sub r2,r2,#24 label
1556 sub r4,r4,#24 label
1710 sub r6,r7,#32 label
1740 sub r6,r6,#16 label
1799 sub r6,r6,#8 label
1804 sub r6,r6,#32 label
1901 sub r2,r5,#32 label
1931 sub r2,r2,#16 label
1990 sub r2,r2,#8 label
1995 sub r2,r2,#32 label
2062 sub r2,r2,r11,LSL #26 label
2065 sub r3,r3,r11,LSL #25 label
2068 sub r4,r4,r11,LSL #26 label
2071 sub r5,r5,r11,LSL #25 label
2074 sub r6,r6,r11,LSL #26 label
2077 sub r7,r7,r11,LSL #25 label
2080 sub r8,r8,r11,LSL #26 label
2083 sub r9,r9,r11,LSL #25 label
2086 sub r10,r10,r11,LSL #26 label
2088 sub r1,r1,r11,LSL #25 label
[all...]
/external/clang/test/Analysis/inlining/
H A Dcontainers.cpp38 void testSubclass(MySetSubclass &sub) { argument
39 sub.useIterator(sub.begin());
/external/clang/utils/
H A DFindSpecRefs722 def sub(a,b): function in function:SpecIndex.__sub__
726 return map(sub,self.indices,indices)
/external/freetype/src/gzip/
H A Dinflate.c43 } sub; /* submode */ member in struct:internal_state
162 if (((z->state->sub.method = NEXTBYTE) & 0xf) != Z_DEFLATED)
166 z->state->sub.marker = 5; /* can't try inflateSync */
169 if ((z->state->sub.method >> 4) + 8 > z->state->wbits)
173 z->state->sub.marker = 5; /* can't try inflateSync */
180 if (((z->state->sub.method << 8) + b) % 31)
184 z->state->sub.marker = 5; /* can't try inflateSync */
196 z->state->sub.check.need = (uLong)NEXTBYTE << 24;
200 z->state->sub.check.need += (uLong)NEXTBYTE << 16;
204 z->state->sub
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
H A DULocaleCollationTest.java210 * @param sub an object that can be used to retrieve a subobject
216 Subobject sub, Registrar reg) {
220 if (sub != null) {
221 Object subobj = sub.get(obj);
229 if (sub != null) {
230 Object subobj = sub.get(obj);
215 checkService(String requestedLocale, ServiceFacade svc, Subobject sub, Registrar reg) argument

Completed in 785 milliseconds

1234567891011>>