HomeSort by relevance Sort by last modified time
    Searched defs:inc (Results 1 - 25 of 165) sorted by null

1 2 3 4 5 6 7

  /external/llvm/test/MC/X86/
x86_long_nop.s 8 inc %eax label
10 inc %eax label
11 # CHECK: 0: inc
15 # CHECK-NEXT: 20: inc
x86_nop.s 11 inc %eax label
13 inc %eax label
  /external/llvm/test/DebugInfo/Inputs/
macho-universal.cc 4 int inc(int x) { function
9 return inc(argc);
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
fwdequ64.asm 3 inc dword [l2] label
nomem64.asm 27 inc ebx label
  /external/compiler-rt/lib/asan/lit_tests/TestCases/SharedLibs/
shared-lib-test-so.cc 19 void inc(int index) { function
  /external/compiler-rt/lib/asan/lit_tests/TestCases/
shared-lib-test.cc 32 fun_t *inc = (fun_t*)dlsym(lib, "inc"); local
33 if (!inc) return 1;
35 inc(1);
36 inc(-1); // BOOM
  /external/chromium_org/v8/test/mjsunit/regress/
regress-2073.js 12 // * Neither the name of Google Inc. nor the names of its
81 function inc(scope) { function
93 inc(b);
  /external/clang/test/SemaCXX/
increment-decrement.cpp 5 const int &inc = i++; variable
  /frameworks/compile/slang/
RSSpec.mk 19 define generate-rs-spec-inc
29 ifneq ($(findstring RSClangBuiltinEnums.inc,$(RS_SPEC_TABLES)),)
30 LOCAL_GENERATED_SOURCES += $(intermediates)/RSClangBuiltinEnums.inc
31 $(intermediates)/RSClangBuiltinEnums.inc: $(RS_SPEC_GEN)
32 $(call generate-rs-spec-inc,clang-builtin-enums)
35 ifneq ($(findstring RSDataTypeEnums.inc,$(RS_SPEC_TABLES)),)
36 LOCAL_GENERATED_SOURCES += $(intermediates)/RSDataTypeEnums.inc
37 $(intermediates)/RSDataTypeEnums.inc: $(RS_SPEC_GEN)
38 $(call generate-rs-spec-inc,rs-data-type-enums)
41 ifneq ($(findstring RSMatrixTypeEnums.inc,$(RS_SPEC_TABLES)),
    [all...]
  /hardware/qcom/media/mm-video-legacy/vidc/venc/
Android.mk 45 libmm-venc-inc := bionic/libc/include
46 libmm-venc-inc += bionic/libstdc++/include
47 libmm-venc-inc := $(LOCAL_PATH)/inc
48 libmm-venc-inc += $(OMX_VIDEO_PATH)/vidc/common/inc
49 libmm-venc-inc += hardware/qcom/media/mm-core/inc
50 libmm-venc-inc += hardware/qcom/media/libstagefrighthw
53 libmm-venc-inc += hardware/qcom/display/msm8974/libgrallo
    [all...]
  /hardware/qcom/media/mm-video-legacy/vidc/vdec/
Android.mk 54 libmm-vdec-inc := bionic/libc/include
55 libmm-vdec-inc += bionic/libstdc++/include
56 libmm-vdec-inc += $(LOCAL_PATH)/inc
57 libmm-vdec-inc += $(OMX_VIDEO_PATH)/vidc/common/inc
58 libmm-vdec-inc += hardware/qcom/media/mm-core/inc
60 libmm-vdec-inc += $(OMX_VIDEO_PATH)/DivxDrmDecrypt/inc
    [all...]
  /hardware/qcom/media/mm-video-v4l2/vidc/vdec/
Android.mk 89 libmm-vdec-inc := bionic/libc/include
90 libmm-vdec-inc += bionic/libstdc++/include
91 libmm-vdec-inc += $(LOCAL_PATH)/inc
92 libmm-vdec-inc += $(OMX_VIDEO_PATH)/vidc/common/inc
93 libmm-vdec-inc += hardware/qcom/media/mm-core/inc
95 libmm-vdec-inc += $(OMX_VIDEO_PATH)/DivxDrmDecrypt/inc
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_sqrtl.c 38 inc(long double x) function
150 xn = inc(xn); /* xn = xn + ulp. */
152 u.e = inc(u.e); /* u.e = u.e + ulp. */
153 xn = inc(xn); /* xn = xn + ulp. */
  /bootable/recovery/updater/
Android.mk 49 inc := $(call intermediates-dir-for,PACKAGING,updater_extensions)/register.inc macro
55 inc_dep_file := $(inc).dep.$(subst $(space),-,$(sort $(TARGET_RECOVERY_UPDATER_LIBS)))
56 $(inc_dep_file): stem := $(inc).dep
62 $(inc) : libs := $(TARGET_RECOVERY_UPDATER_LIBS)
63 $(inc) : $(inc_dep_file)
71 $(call intermediates-dir-for,EXECUTABLES,updater)/updater.o : $(inc)
72 LOCAL_C_INCLUDES += $(dir $(inc))
74 inc := macro
  /external/chromium_org/third_party/openssl/openssl/crypto/hmac/
hm_ameth.c 119 int inc; local
126 inc = 0;
128 else inc = 1;
132 if (inc)
  /external/openssl/crypto/hmac/
hm_ameth.c 119 int inc; local
126 inc = 0;
128 else inc = 1;
132 if (inc)
  /hardware/qcom/media/mm-video-v4l2/vidc/venc/
Android.mk 77 libmm-venc-inc := bionic/libc/include
78 libmm-venc-inc += bionic/libstdc++/include
79 libmm-venc-inc += $(LOCAL_PATH)/inc
80 libmm-venc-inc += $(OMX_VIDEO_PATH)/vidc/common/inc
81 libmm-venc-inc += hardware/qcom/media/mm-core/inc
82 libmm-venc-inc += hardware/qcom/media/libstagefrighthw
83 libmm-venc-inc += hardware/qcom/display/$(TARGET_BOARD_PLATFORM)/libgrallo
    [all...]
  /external/aac/libSBRenc/src/
sbr_misc.cpp 95 INT inc = 1; local
98 inc = 3 * inc + 1;
99 while (inc <= n);
102 inc = inc / 3;
103 for (i = inc + 1; i <= n; i++) {
106 while (in[j-inc-1] > v) {
107 in[j-1] = in[j-inc-1];
108 j -= inc;
123 INT inc = 1; local
    [all...]
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udir/
p1.cpp 133 int inc(int x);
139 int test5::inc(int x = default_x) { function in class:test5
  /external/javassist/src/main/javassist/runtime/
Cflow.java 30 void inc() { ++depth; } method in class:Cflow.Depth
41 public void enter() { ((Depth)get()).inc(); }
  /external/skia/bench/
MemoryBench.cpp 2 * Copyright 2012 Google Inc.
35 size_t inc = fMinSize >> 4; variable
36 SkASSERT(inc > 0);
45 alloc.allocThrow(inc);
46 size += inc;
  /libcore/luni/src/main/java/libcore/icu/
CollationKeyICU.java 98 int inc = ((len - 32) / 32) + 1; local
101 i += inc;
  /external/aac/libFDK/src/arm/
dct_arm.cpp 188 int inc)
199 twiddle += inc;
203 LDR val_tw, [twiddle], inc, LSL #2 // val_tw = *twiddle; twiddle += inc local
227 LDR val_tw, [twiddle], inc, LSL #2 // val_tw = *twiddle; twiddle += inc local
255 LDR val_tw, [twiddle], inc, LSL #2 // val_tw = *twiddle; twiddle += inc local
357 int inc)
383 LDR val_tw, [twiddle], inc, LSL #2 // val_tw = *twiddle; twiddle += in local
415 LDR val_tw, [twiddle], inc, LSL #2 \/\/ val_tw = *twiddle; twiddle += inc local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
genmodule.c 57 include *inc; local
75 inc = malloc(sizeof(include));
76 inc->filename = malloc(len+1);
77 strcpy(inc->filename, argv[2]);
78 STAILQ_INSERT_TAIL(&includes, inc, link);
83 inc = STAILQ_FIRST(&includes);
85 in = fopen(inc->filename, "rt");
87 fprintf(stderr, "Could not open `%s'.\n", inc->filename);
90 free(inc->filename);
91 free(inc);
    [all...]

Completed in 835 milliseconds

1 2 3 4 5 6 7