HomeSort by relevance Sort by last modified time
    Searched refs:ic (Results 251 - 275 of 487) sorted by null

<<11121314151617181920

  /external/v8/src/interpreter/
interpreter.cc 20 #include "src/ic/accessor-assembler.h"
579 void Interpreter::DoStaGlobal(Callable ic, InterpreterAssembler* assembler) {
587 Node* code_target = __ HeapConstant(ic.code());
594 __ CallStub(ic.descriptor(), code_target, context, global, name, value,
604 Callable ic = CodeFactory::StoreICInOptimizedCode(isolate_, SLOPPY); local
605 DoStaGlobal(ic, assembler);
613 Callable ic = CodeFactory::StoreICInOptimizedCode(isolate_, STRICT); local
614 DoStaGlobal(ic, assembler);
847 Callable ic = CodeFactory::LoadICInOptimizedCode(isolate_); local
848 Node* code_target = __ HeapConstant(ic.code())
868 Callable ic = CodeFactory::KeyedLoadICInOptimizedCode(isolate_); local
905 Callable ic = CodeFactory::StoreICInOptimizedCode(isolate_, SLOPPY); local
915 Callable ic = CodeFactory::StoreICInOptimizedCode(isolate_, STRICT); local
925 Callable ic = CodeFactory::StoreOwnICInOptimizedCode(isolate_); local
950 Callable ic = CodeFactory::KeyedStoreICInOptimizedCode(isolate_, SLOPPY); local
959 Callable ic = CodeFactory::KeyedStoreICInOptimizedCode(isolate_, STRICT); local
    [all...]
  /toolchain/binutils/binutils-2.27/gas/config/
tc-i960.c     [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
InputTestsBase.java 217 final InputConnection ic = mEditText.onCreateInputConnection(ei); local
223 mLatinIME.onCreateInputMethodInterface().startInput(ic, ei);
228 mInputConnection = ic;
  /prebuilts/go/darwin-x86/src/cmd/internal/dwarf/
dwarf.go 991 ic := &calls.Calls[slot]
992 if ic.InlIndex == -2 {
996 for _, k := range ic.Children {
1001 if len(ic.Ranges) > 0 {
1005 ic.InlIndex = -2
1032 for _, ic := range inlcalls.Calls {
1033 for _, v := range ic.InlVars {
1162 ic := s.InlCalls.Calls[callIdx]
1163 callee := ic.AbsFunSym
1166 if len(ic.Ranges) == 1
    [all...]
  /prebuilts/go/linux-x86/src/cmd/internal/dwarf/
dwarf.go 991 ic := &calls.Calls[slot]
992 if ic.InlIndex == -2 {
996 for _, k := range ic.Children {
1001 if len(ic.Ranges) > 0 {
1005 ic.InlIndex = -2
1032 for _, ic := range inlcalls.Calls {
1033 for _, v := range ic.InlVars {
1162 ic := s.InlCalls.Calls[callIdx]
1163 callee := ic.AbsFunSym
1166 if len(ic.Ranges) == 1
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/
ULocaleTest.java 376 String ic = ULocale.GERMANY.getISO3Country(); local
378 assertEquals(ic, jc);
385 String ic = ULocale.getISO3Country(ULocale.GERMANY.getName()); local
387 assertEquals(ic, jc);
  /external/python/cpython3/Tools/msi/
testrelease.bat 68 @dir /s/b "%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs" | findstr /ic:"python" > "%~2\startmenu.txt" 2>&1
69 @dir /s/b "%APPDATA%\Microsoft\Windows\Start Menu\Programs" | findstr /ic:"python" >> "%~2\startmenu.txt" 2>&1
  /frameworks/base/core/tests/coretests/src/android/graphics/drawable/
IconTest.java 115 final Icon ic = Icon.createWithBitmap(bm); local
116 ic.scaleDownIfNecessary(40, 20);
121 assertThat(ic.getBitmap().getWidth()).isLessThan(41);
122 assertThat(ic.getBitmap().getHeight()).isLessThan(21);
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/reflectionmodel/
ReflectionClassDeclaration.java 331 .map(ic -> ReflectionFactory.typeDeclarationFor(ic, typeSolver))
  /frameworks/native/opengl/libagl/
primitives.cpp 881 unsigned int ic = 3; local
901 vertex_t* s = ivl[ic-1];
905 for (unsigned int i=0 ; i<ic ; i++) {
946 ic = oc;
967 vertex_t* s = ivl[ic-1];
970 for (unsigned int i=0 ; i<ic ; i++) {
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
BidiLine.java 619 int runIndex, ic; local
621 for (ic = 0; ic < bidi.length; ic++) {
622 c = bidi.text[ic];
624 runIndex = getRunFromLogicalIndex(bidi, ic);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
BidiLine.java 618 int runIndex, ic; local
620 for (ic = 0; ic < bidi.length; ic++) {
621 c = bidi.text[ic];
623 runIndex = getRunFromLogicalIndex(bidi, ic);
    [all...]
  /external/libcxx/test/std/algorithms/alg.nonmodifying/alg.is_permutation/
is_permutation.pass.cpp 28 int ic[] = {1, 0, 1}; local
32 && std::is_permutation(std::begin(ib), std::end(ib), std::begin(ic))
33 && std::is_permutation(std::begin(ib), std::end(ib), std::begin(ic), std::end(ic))
34 && !std::is_permutation(std::begin(ic), std::end(ic), std::begin(id), std::end(id))
is_permutation_pred.pass.cpp 35 int ic[] = {1, 0, 1}; local
40 && std::is_permutation(std::begin(ib), std::end(ib), std::begin(ic) , c)
41 && std::is_permutation(std::begin(ib), std::end(ib), std::begin(ic), std::end(ic), c)
42 && !std::is_permutation(std::begin(ic), std::end(ic), std::begin(id), std::end(id), c)
    [all...]
  /external/tensorflow/tensorflow/c/
c_api.cc 661 tensorflow::shape_inference::InferenceContext* ic, int num_dims,
667 dim_vec.push_back(ic->MakeDim(dims[i]));
669 return ic->MakeShape(dim_vec);
671 return ic->UnknownShape();
686 tensorflow::shape_inference::InferenceContext* ic = local
688 if (ic == nullptr) {
699 ShapeHandleFromDims(ic, ranks[i], shapes[i]);
704 ic->set_output_handle_shapes_and_types(output.index, shape_and_type_vec);
1013 tensorflow::shape_inference::InferenceContext* ic = local
1030 tensorflow::shape_inference::InferenceContext* ic = local
1053 tensorflow::shape_inference::InferenceContext* ic = local
    [all...]
  /external/icu/icu4c/source/i18n/
decimfmt.cpp 1943 UChar32 ic = input.char32At(pos); local
1963 UChar32 ic = input.char32At(pos); local
2002 UChar32 ic = input.char32At(pos); local
2025 UChar32 ic = input.char32At(pos); local
2045 UChar32 ic = input.char32At(pos); local
    [all...]
  /external/mesa3d/src/mesa/program/
prog_optimize.c 913 * instruction 'ic'.
918 GLuint index, GLuint ic)
921 GLuint begin = ic;
922 GLuint end = ic;
938 if (loopStackDepth > 0 && ic > loopStack[0].Start && ic < loopStack[0].End) {
    [all...]
  /frameworks/av/cmds/screenrecord/
screenrecord.cpp 940 int ic = getopt_long(argc, argv, "", longOptions, &optionIndex); local
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPSerializerRDF.java 663 for (Iterator ic = node.iterateChildren(); ic.hasNext(); )
665 XMPNode field = (XMPNode) ic.next();
    [all...]
XMPUtilsImpl.java 541 for (Iterator ic = sourceSchema.iterateChildren(); ic.hasNext();)
543 XMPNode sourceProp = (XMPNode) ic.next();
    [all...]
  /external/llvm/test/MC/AArch64/
arm64-diags.s 330 ic ialluis, x0 label
331 ; CHECK-ERRORS: error: specified ic op does not use a register
332 ic iallu, x0 label
333 ; CHECK-ERRORS: error: specified ic op does not use a register
334 ic ivau label
335 ; CHECK-ERRORS: error: specified ic op requires a register
  /cts/hostsidetests/incident/src/com/android/server/cts/
JobSchedulerIncidentTest.java 309 StateControllerProto.IdleController ic = sc.getIdle(); local
310 for (StateControllerProto.IdleController.TrackedJob tj : ic.getTrackedJobsList()) {
  /device/linaro/bootloader/edk2/ArmPkg/Library/ArmLib/AArch64/
AArch64Support.S 42 ic ivau, x0 // Invalidate single instruction cache line to PoU
67 ic iallu // Invalidate entire instruction cache
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
StatusBarIconControllerImpl.java 318 StatusIconDisplayable ic = (StatusIconDisplayable) group.getChildAt(i); local
319 pw.println(" [" + i + "] icon=" + ic);
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/
objdump_test.go 114 ic

Completed in 714 milliseconds

<<11121314151617181920