HomeSort by relevance Sort by last modified time
    Searched refs:sc (Results 26 - 50 of 648) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
complex-convert.c 11 void foo(signed char sc, unsigned char uc, signed long long sll,
25 // Match the prototype to pick up the size of sc and sll.
122 csc1 = sc;
152 cuc1 = sc;
182 csll1 = sc;
212 cull1 = sc;
242 csc1 = sc + csc;
260 cuc1 = sc + cuc;
278 csll1 = sc + csll;
292 cull1 = sc + cull
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
IntrinsicConvolve3x3.java 23 private void testConvolve3(int w, int h, Element.DataType dt, int vecSize, Script.LaunchOptions sc) {
41 si.forEach(mAllocRef, sc);
49 if (sc != null) {
57 sr.forEach_convolve_U4(mAllocDst, sc);
60 sr.forEach_convolve_U3(mAllocDst, sc);
63 sr.forEach_convolve_U2(mAllocDst, sc);
66 sr.forEach_convolve_U1(mAllocDst, sc);
72 sr.forEach_convolve_F4(mAllocDst, sc);
75 sr.forEach_convolve_F3(mAllocDst, sc);
78 sr.forEach_convolve_F2(mAllocDst, sc);
    [all...]
  /art/runtime/arch/arm/
fault_handler_arm.cc 57 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); local
61 sc->arm_r0 = reinterpret_cast<uintptr_t>(*self->GetNestedSignalState());
62 sc->arm_r1 = 1;
63 sc->arm_pc = reinterpret_cast<uintptr_t>(longjmp);
64 VLOG(signals) << "longjmp address: " << reinterpret_cast<void*>(sc->arm_pc);
71 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); local
72 *out_sp = static_cast<uintptr_t>(sc->arm_sp);
80 uintptr_t* fault_addr = reinterpret_cast<uintptr_t*>(sc->fault_address);
84 *out_method = reinterpret_cast<ArtMethod*>(sc->arm_r0);
96 uint8_t* ptr = reinterpret_cast<uint8_t*>(sc->arm_pc)
120 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); local
146 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); local
211 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); local
213 VLOG(signals) << "sigcontext: " << std::hex << sc; local
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/string/
strcasestr.c 51 char c, sc; local
62 if ((sc = *s++) == 0)
64 } while ((char)tolower((unsigned char)sc) != c);
  /external/lldb/source/Breakpoint/
BreakpointResolverFileLine.cpp 91 SymbolContext sc; local
102 sc_list.GetContextAtIndex (current_idx, sc);
105 match_file_spec = sc.line_entry.file;
110 matches = (sc.line_entry.file == match_file_spec);
114 tmp_sc_list.Append (sc);
119 if (sc.line_entry.line < closest_line_number)
120 closest_line_number = sc.line_entry.line;
131 if (tmp_sc_list.GetContextAtIndex(current_idx, sc))
133 if (sc.line_entry.line != closest_line_number)
147 if (tmp_sc_list.GetContextAtIndex(current_idx, sc))
    [all...]
  /frameworks/rs/tests/cppbasic/
compute.cpp 38 sp<ScriptC_mono> sc = new ScriptC_mono(rs); local
41 sc->set_alloc(a1);
42 sc->set_elem(e);
43 sc->set_type(t);
44 sc->set_script(sc);
45 sc->set_script(nullptr);
47 sc->set_sampler(samp);
57 sc->bind_failed(failed_alloc);
66 sc->forEach_root(ain, aout)
    [all...]
  /frameworks/rs/tests/cppbasic-shared/
compute.cpp 38 sp<ScriptC_mono> sc = new ScriptC_mono(rs); local
41 sc->set_alloc(a1);
42 sc->set_elem(e);
43 sc->set_type(t);
44 sc->set_script(sc);
45 sc->set_script(nullptr);
47 sc->set_sampler(samp);
57 sc->bind_failed(failed_alloc);
66 sc->forEach_root(ain, aout)
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/text/
SpoofCheckerTest.java 51 String scMixed = new String(scMixedChars); /* "sc", with Cyrillic 'c' */
54 String scLatin = "sc"; /* "sc", plain ascii. */
73 SpoofChecker sc = new SpoofChecker.Builder().build(); local
74 if (sc == null) {
170 SpoofChecker sc = new SpoofChecker.Builder().setChecks(SpoofChecker.ALL_CHECKS).build(); local
172 t = sc.getChecks();
175 sc = new SpoofChecker.Builder().setChecks(0).build();
176 t = sc.getChecks();
181 sc = new SpoofChecker.Builder().setChecks(checks).build()
190 SpoofChecker sc = new SpoofChecker.Builder().build(); local
205 SpoofChecker sc = new SpoofChecker.Builder().build(); local
230 SpoofChecker sc = new SpoofChecker.Builder().build(); local
288 SpoofChecker sc = new SpoofChecker.Builder().build(); local
317 SpoofChecker sc = new SpoofChecker.Builder().build(); local
343 SpoofChecker sc = new SpoofChecker.Builder().build(); local
356 SpoofChecker sc = new SpoofChecker.Builder().build(); local
372 SpoofChecker sc = new SpoofChecker.Builder().build(); local
394 SpoofChecker sc = new SpoofChecker.Builder().build(); local
472 SpoofChecker sc = new SpoofChecker.Builder().build(); local
481 SpoofChecker sc = new SpoofChecker.Builder().build(); local
520 SpoofChecker sc = new SpoofChecker.Builder() local
554 SpoofChecker sc = new SpoofChecker.Builder() local
720 SpoofChecker sc = new SpoofChecker.Builder().build(); local
    [all...]
  /external/lldb/include/lldb/Symbol/
SymbolFile.h 123 virtual lldb::LanguageType ParseCompileUnitLanguage (const SymbolContext& sc) = 0;
124 virtual size_t ParseCompileUnitFunctions (const SymbolContext& sc) = 0;
125 virtual bool ParseCompileUnitLineTable (const SymbolContext& sc) = 0;
126 virtual bool ParseCompileUnitSupportFiles (const SymbolContext& sc, FileSpecList& support_files) = 0;
127 virtual size_t ParseFunctionBlocks (const SymbolContext& sc) = 0;
128 virtual size_t ParseTypes (const SymbolContext& sc) = 0;
129 virtual size_t ParseVariablesForContext (const SymbolContext& sc) = 0;
132 virtual clang::DeclContext* GetClangDeclContextForTypeUID (const lldb_private::SymbolContext &sc, lldb::user_id_t type_uid) { return NULL; }
134 virtual uint32_t ResolveSymbolContext (const Address& so_addr, uint32_t resolve_scope, SymbolContext& sc) = 0;
140 virtual uint32_t FindTypes (const SymbolContext& sc, const ConstString &name, const ClangNamespaceDecl *namespace_decl, bool append, uint32_t max_matc (…)
    [all...]
SymbolVendor.h 58 ParseCompileUnitLanguage (const SymbolContext& sc);
61 ParseCompileUnitFunctions (const SymbolContext& sc);
64 ParseCompileUnitLineTable (const SymbolContext& sc);
67 ParseCompileUnitSupportFiles (const SymbolContext& sc,
71 ParseFunctionBlocks (const SymbolContext& sc);
74 ParseTypes (const SymbolContext& sc);
77 ParseVariablesForContext (const SymbolContext& sc);
85 SymbolContext& sc);
122 FindTypes (const SymbolContext& sc,
130 FindNamespace (const SymbolContext& sc,
    [all...]
  /external/lldb/source/API/
SBSymbolContextList.cpp 55 SymbolContext sc; local
56 if (m_opaque_ap->GetContextAtIndex (idx, sc))
58 sb_sc.SetSymbolContext(&sc);
72 SBSymbolContextList::Append(SBSymbolContext &sc)
74 if (sc.IsValid() && m_opaque_ap.get())
75 m_opaque_ap->Append(*sc);
  /frameworks/native/opengl/tests/lib/
WindowSurface.cpp 57 sp<SurfaceControl> sc = surfaceComposerClient->createSurface( local
60 if (sc == NULL || !sc->isValid()) {
66 err = sc->setLayer(0x7FFFFFFF); // always on top
72 err = sc->show();
79 mSurfaceControl = sc;
  /external/lldb/source/Core/
AddressResolverName.cpp 98 SymbolContext sc; local
156 if (func_list.GetContextAtIndex(i, sc) == false)
159 if (sc.function == NULL)
169 if (sc.function->GetAddressRange().GetBaseAddress() == symbol_sc.symbol->GetAddress())
183 if (func_list.GetContextAtIndex(i, sc))
185 if (sc.function)
187 func_addr = sc.function->GetAddressRange().GetBaseAddress();
188 addr_t byte_size = sc.function->GetAddressRange().GetByteSize();
191 const uint32_t prologue_byte_size = sc.function->GetPrologueByteSize();
211 if (sym_list.GetContextAtIndex(i, sc))
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/channels/
SelectorTest.java 41 SocketChannel sc = SocketChannel.open(); local
42 sc.configureBlocking(false);
43 sc.connect(ssc.socket().getLocalSocketAddress());
44 SelectionKey key = sc.register(selector, SelectionKey.OP_CONNECT);
47 sc.finishConnect();
59 SocketChannel sc = SocketChannel.open(); local
60 sc.configureBlocking(false);
61 sc.connect(ss.getLocalSocketAddress());
62 SelectionKey key = sc.register(selector, SelectionKey.OP_CONNECT);
65 sc.finishConnect()
135 SocketChannel sc = SocketChannel.open(); local
    [all...]
  /external/valgrind/coregrind/m_sigframe/
sigframe-tilegx-linux.c 75 struct vki_sigcontext *sc = *sc1; local
78 (Addr)sc, sizeof(unsigned long long)*34 );
79 sc->gregs[0] = tst->arch.vex.guest_r0;
80 sc->gregs[1] = tst->arch.vex.guest_r1;
81 sc->gregs[2] = tst->arch.vex.guest_r2;
82 sc->gregs[3] = tst->arch.vex.guest_r3;
83 sc->gregs[4] = tst->arch.vex.guest_r4;
84 sc->gregs[5] = tst->arch.vex.guest_r5;
85 sc->gregs[6] = tst->arch.vex.guest_r6;
86 sc->gregs[7] = tst->arch.vex.guest_r7
    [all...]
sigframe-mips32-linux.c 82 struct vki_sigcontext *sc = *sc1; local
85 (Addr)sc, sizeof(unsigned long long)*34 );
86 sc->sc_regs[1] = tst->arch.vex.guest_r1;
87 sc->sc_regs[2] = tst->arch.vex.guest_r2;
88 sc->sc_regs[3] = tst->arch.vex.guest_r3;
89 sc->sc_regs[4] = tst->arch.vex.guest_r4;
90 sc->sc_regs[5] = tst->arch.vex.guest_r5;
91 sc->sc_regs[6] = tst->arch.vex.guest_r6;
92 sc->sc_regs[7] = tst->arch.vex.guest_r7;
93 sc->sc_regs[8] = tst->arch.vex.guest_r8
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/spi/
AbstractSelectableChannelTest.java 112 SocketChannel sc = SocketChannel.open(); local
113 sc.configureBlocking(false);
114 SelectionKey acceptKey = sc.register(acceptSelector1,
118 assertSame(sc, acceptKey.channel());
120 //test that sc.register invokes Selector.register()
121 acceptKey = sc.register(acceptSelector2, SelectionKey.OP_READ, null);
211 SocketChannel sc = SocketChannel.open(); local
212 sc.configureBlocking(false);
214 sc.register(null, SelectionKey.OP_READ, argObj);
235 SocketChannel sc = SocketChannel.open() local
257 SocketChannel sc = SocketChannel.open(); local
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
uspoof.h 403 uspoof_close(USpoofChecker *sc);
428 * @param sc The source USpoofChecker
434 uspoof_clone(const USpoofChecker *sc, UErrorCode *status);
441 * @param sc The USpoofChecker
450 uspoof_setChecks(USpoofChecker *sc, int32_t checks, UErrorCode *status);
455 * @param sc The USpoofChecker
464 uspoof_getChecks(const USpoofChecker *sc, UErrorCode *status);
475 uspoof_setRestrictionLevel(USpoofChecker *sc, URestrictionLevel restrictionLevel);
486 uspoof_getRestrictionLevel(const USpoofChecker *sc);
516 * @param sc The USpoofChecker
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/algorithms/centrality/
communicability_alg.py 60 SC(u)=(e^A)_{uu} .
77 >>> sc = nx.communicability_centrality_exp(G)
87 sc = dict(zip(nodelist,map(float,expA.diagonal())))
88 return sc
130 SC(u)=\sum_{j=1}^{N}(v_{j}^{u})^2 e^{\lambda_{j}},
138 >>> sc = nx.communicability_centrality(G)
162 sc = dict(zip(nodelist,map(float,xg)))
163 return sc
249 sc = {}
262 sc[v] = float(B.sum()
    [all...]
  /frameworks/base/rs/java/android/renderscript/
RenderScriptGL.java 74 public SurfaceConfig(SurfaceConfig sc) {
75 mDepthMin = sc.mDepthMin;
76 mDepthPref = sc.mDepthPref;
77 mStencilMin = sc.mStencilMin;
78 mStencilPref = sc.mStencilPref;
79 mColorMin = sc.mColorMin;
80 mColorPref = sc.mColorPref;
81 mAlphaMin = sc.mAlphaMin;
82 mAlphaPref = sc.mAlphaPref;
83 mSamplesMin = sc.mSamplesMin
    [all...]
  /external/selinux/sepolgen/tests/
test_refpolicy.py 34 sc = refpolicy.SecurityContext()
35 sc = refpolicy.SecurityContext("user_u:object_r:foo_t")
39 sc = refpolicy.SecurityContext()
40 sc.from_string(context)
41 self.assertEquals(sc.user, "user_u")
42 self.assertEquals(sc.role, "object_r")
43 self.assertEquals(sc.type, "foo_t")
44 self.assertEquals(sc.level, None)
46 self.assertEquals(str(sc), context + ":s0")
48 self.assertEquals(str(sc), context
    [all...]
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/mp4/parser/
viddec_mp4_parse.c 135 uint32_t sc=0; local
143 if((getbits = viddec_pm_peek_bits(parent, &sc, 32)) == -1)
151 viddec_pm_get_bits(parent, &sc, 32);
152 sc = sc & 0xFF;
153 cxt->current_sc = sc;
155 DEB("current_sc=0x%.8X, prev_sc=0x%x\n", sc, cxt->prev_sc);
157 switch(sc)
213 if( (sc >= MP4_SC_VIDEO_OBJECT_LAYER_MIN) && (sc <= MP4_SC_VIDEO_OBJECT_LAYER_MAX)
    [all...]
  /external/icu/icu4c/source/i18n/
uspoof.cpp 181 uspoof_clone(const USpoofChecker *sc, UErrorCode *status) {
182 const SpoofImpl *src = SpoofImpl::validateThis(sc, *status);
196 uspoof_close(USpoofChecker *sc) {
198 SpoofImpl *This = SpoofImpl::validateThis(sc, status);
204 uspoof_setChecks(USpoofChecker *sc, int32_t checks, UErrorCode *status) {
205 SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
222 uspoof_getChecks(const USpoofChecker *sc, UErrorCode *status) {
223 const SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
231 uspoof_setRestrictionLevel(USpoofChecker *sc, URestrictionLevel restrictionLevel) {
233 SpoofImpl *This = SpoofImpl::validateThis(sc, status)
    [all...]
  /external/icu/icu4c/source/test/cintltst/
spooftest.c 50 * "sc" is the ready-to-go SpoofChecker for use in the tests.
54 USpoofChecker *sc; \
55 sc = uspoof_open(&status); \
62 uspoof_close(sc); \
82 const UChar scMixed[] = {(UChar)0x73, (UChar)0x0441, 0}; /* "sc", with Cyrillic 'c' */
85 const UChar scLatin[] = {(UChar)0x73, (UChar)0x63, 0}; /* "sc", plain ascii. */
114 USpoofChecker *sc; local
116 sc = uspoof_open(&status);
123 uspoof_close(sc);
189 serializedSize = uspoof_serialize(sc, NULL, 0, &status)
    [all...]
  /external/lldb/source/Symbol/
CompileUnit.cpp 59 CompileUnit::CalculateSymbolContext(SymbolContext* sc)
61 sc->comp_unit = this;
62 GetModule()->CalculateSymbolContext(sc);
228 SymbolContext sc; local
229 CalculateSymbolContext(&sc);
230 m_language = symbol_vendor->ParseCompileUnitLanguage(sc);
248 SymbolContext sc; local
249 CalculateSymbolContext(&sc);
250 symbol_vendor->ParseCompileUnitLineTable(sc);
272 SymbolContext sc; local
449 SymbolContext sc; local
    [all...]

Completed in 895 milliseconds

12 3 4 5 6 7 8 91011>>