HomeSort by relevance Sort by last modified time
    Searched refs:SRC (Results 51 - 75 of 269) sorted by null

1 23 4 5 6 7 8 91011

  /external/e2fsprogs/contrib/
populate-extfs.sh 94 SRC=`head -1 $INODE_DIR/$i`
98 echo "ln $SRC $TGT"
102 echo "sif $SRC links_count $LN_CNT"
  /ndk/build/tools/
dev-platform-expand.sh 23 # The idea is that the content of $SRC/android-N/ only contains stuff
28 # $SRC/android-N/include --> $DST/android-N/arch-A/usr/include
29 # $SRC/android-N/arch-A/include --> $DST/android-N/arch-A/usr/include
30 # $SRC/android-N/arch-A/lib --> $DST/android-N/arch-A/usr/lib
59 register_var_option "--src-dir=<path>" SRCDIR "Source for compressed platforms"
74 in a platform-specific way under SRC=$$NDK/../development/ndk, i.e.:
76 \$SRC/platforms/android-3/ -> all files corresponding to API level 3
77 \$SRC/platforms/android-4/ -> only new/modified files corresponding to API level 4
78 \$SRC/platforms/android-5/ -> only new/modified files corresponding to API level 5
188 # $SRC/android-$PLATFORM/include --> $DST/platforms/android-$PLATFORM/arch-$ARCH/usr/includ
    [all...]
  /prebuilts/go/darwin-x86/test/
errchk 41 open(SRC, $file) || die "BUG: errchk: open $file: $!";
42 $src{$file} = [<SRC>];
43 close(SRC);
87 foreach my $src (@{$src{$file}}) {
89 next if $src =~ m|////|; # double comment disables ERROR
90 next unless $src =~ m|// (GC_)?ERROR (.*)|;
  /prebuilts/go/linux-x86/test/
errchk 41 open(SRC, $file) || die "BUG: errchk: open $file: $!";
42 $src{$file} = [<SRC>];
43 close(SRC);
87 foreach my $src (@{$src{$file}}) {
89 next if $src =~ m|////|; # double comment disables ERROR
90 next unless $src =~ m|// (GC_)?ERROR (.*)|;
  /external/llvm/utils/buildit/
GNUmakefile 28 SRC = $(shell cd $(SRCROOT) && pwd | sed s,/private,,)
29 OBJROOT = $(SRC)/obj
64 $(SRC)/utils/buildit/build_llvm "$(RC_ARCHS)" "$(TARGETS)" \
65 $(SRC) $(PREFIX) $(DSTROOT) $(SYMROOT) \
  /ndk/tests/build/issue64679-prctl/
build.sh 79 SRC=$NAME.c
80 SRC_FILE=$PROJECT_DIR/jni/$SRC
81 cat > $PROJECT_DIR/jni/$SRC <<EOF
87 echo " $SRC \\" >> $ANDROID_MK
  /system/core/libpixelflinger/arch-arm64/
t32cb16blend.S 37 * top or bottom 16 bits of DREG register with SRC 32 bit pixel value
44 * \SRC is a 32-bit 0xAABBGGRR pixel value, with pre-multiplied colors.
56 .macro pixel, DREG, SRC, FB, ODD
58 // SRC = 0xAABBGGRR
59 lsr w7, \SRC, #24 // sA
71 lsr w6, \SRC, #3
82 lsr w16, \SRC, #(8+2)
93 lsr w6, \SRC, #(8+8+3)
107 lsr w6, \SRC, #3
119 lsr w16, \SRC, #(8+2
    [all...]
  /system/core/libpixelflinger/
t32cb16blend.S 33 * \SRC is a 32-bit 0xAABBGGRR pixel value, with pre-multiplied colors.
45 .macro pixel, DREG, SRC, FB, ODD
47 // SRC = 0xAABBGGRR
48 mov r7, \SRC, lsr #24 // sA
59 mov r6, \SRC, lsr #3
69 mov lr, \SRC, lsr #(8+2)
79 mov r6, \SRC, lsr #(8+8+3)
92 mov r6, \SRC, lsr #3
103 mov lr, \SRC, lsr #(8+2)
113 mov r6, \SRC, lsr #(8+8+3
    [all...]
  /sdk/eclipse/scripts/
collect_sources_for_sdk.py 42 self.SRC = None
91 p.SRC = args[0]
94 if not os.path.isdir(p.SRC):
95 error = "%s is not a directory" % p.SRC
162 def _cp(p, src, dst):
164 print "cp", src, dst
166 shutil.copyfile(src, dst)
173 parseSrcDir(p, os.path.join(p.SRC, d))
  /external/avahi/avahi-common/
avahi-malloc.c 34 #define va_copy(DEST,SRC) __va_copy((DEST),(SRC))
36 #define va_copy(DEST,SRC) memcpy(&(DEST), &(SRC), sizeof(va_list))
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
OpaqueActivity.java 54 canvas.drawColor(0xffff0000, PorterDuff.Mode.SRC);
  /system/tpm/trunks/
Makefile 26 CXXFLAGS += -I$(SRC)/.. $(PC_CFLAGS)
  /toolchain/binutils/binutils-2.25/include/opcode/
h8300.h 101 SRC = 0x10000,
127 IMM8 = IMM | SRC | L_8,
128 IMM8U = IMM | SRC | L_8U,
129 IMM16 = IMM | SRC | L_16,
130 IMM16U = IMM | SRC | L_16U,
131 IMM32 = IMM | SRC | L_32,
144 RS8 = SRC | L_8 | REG,
145 RS16 = SRC | L_16 | REG,
146 RS32 = SRC | L_32 | REG,
148 RSP = SRC | L_P | REG
    [all...]
  /development/build/tools/
mk_sources_zip.py 27 TOP_FOLDER = "src"
36 self.SRC = None
117 p.SRC = args[2]
121 if not os.path.isdir(p.SRC):
122 error = "%s is not a directory" % p.SRC
237 parseSrcDir(p, os.path.join(p.SRC, d))
  /external/autotest/server/site_tests/firmware_PDPowerSwap/
firmware_PDPowerSwap.py 29 SRC ='SRC_READY'
44 return bool(plankton_state == self.SRC)
187 if new_state == self.SRC:
188 dual_mode = 'src'
  /external/libxml2/os400/
make-src.sh 73 for SRC in ${CSOURCES}
74 do MODULE=`db2_name "${SRC}"`
75 make_module "${MODULE}" "${SRC}"
  /external/curl/packages/OS400/
make-lib.sh 52 for SRC in ${CSOURCES}
53 do MODULE=`db2_name "${SRC}"`
54 make_module "${MODULE}" "${SRC}"
  /external/webp/src/dsp/
filters_mips_dsp_r2.c 37 // preds == &dst[-1] == &src[-1]
39 // preds == &src[-1] != &dst[-1]
40 #define DO_PREDICT_LINE(SRC, DST, LENGTH, INVERSE) do { \
41 const uint8_t* psrc = (uint8_t*)(SRC); \
52 "lbu %[temp1], -1(%[src]) \n\t" \
54 "lbu %[temp2], 0(%[src]) \n\t" \
55 "lbu %[temp3], 1(%[src]) \n\t" \
56 "lbu %[temp4], 2(%[src]) \n\t" \
57 "lbu %[temp5], 3(%[src]) \n\t" \
58 "addiu %[src], %[src], 4 \n\t"
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
PorterDuffUtility.java 67 case SRC:
68 return AlphaComposite.getInstance(AlphaComposite.SRC, alpha1);
  /external/minijail/
common.mk 117 # TODO(wad) Relative paths are resolved against SRC and not the calling dir.
121 # SRC is not meant to be set by the end user, but during make call relocation.
123 export SRC ?= $(CURDIR)
128 BASE_VER := $(shell cat $(SRC)/../common-mk/BASE_VER)
173 $(MAKE) -r -I "$(SRC)" -f "$(CURDIR)/Makefile" \
174 SRC="$(CURDIR)" OUT="$(OUT)" $(foreach g,$(MAKECMDGOALS),"$(g)"),)
183 ifeq ($(words $(filter-out Makefile common.mk %.d $(SRC)/Makefile \
184 $(SRC)/common.mk,$(MAKEFILE_LIST))),0)
204 $(SRC)/,,$(^:.o=$(suffix $(basename $(TARGET_OR_MEMBER))).o)) \
205 -> $(subst $(SRC)/,,$(TARGET_OR_MEMBER))
    [all...]
  /external/modp_b64/
common.mk 117 # TODO(wad) Relative paths are resolved against SRC and not the calling dir.
121 # SRC is not meant to be set by the end user, but during make call relocation.
123 export SRC ?= $(CURDIR)
128 BASE_VER := $(shell cat $(SRC)/../common-mk/BASE_VER)
173 $(MAKE) -r -I "$(SRC)" -f "$(CURDIR)/Makefile" \
174 SRC="$(CURDIR)" OUT="$(OUT)" $(foreach g,$(MAKECMDGOALS),"$(g)"),)
183 ifeq ($(words $(filter-out Makefile common.mk %.d $(SRC)/Makefile \
184 $(SRC)/common.mk,$(MAKEFILE_LIST))),0)
204 $(SRC)/,,$(^:.o=$(suffix $(basename $(TARGET_OR_MEMBER))).o)) \
205 -> $(subst $(SRC)/,,$(TARGET_OR_MEMBER))
    [all...]
  /external/mesa3d/src/mesa/math/
m_translate.c 102 #define PTR_ELT(ptr, elt) (((SRC *)ptr)[elt])
120 #define SRC GLbyte
165 #undef SRC
178 #define SRC GLubyte
213 #undef SRC
225 #define SRC GLshort
267 #undef SRC
279 #define SRC GLushort
320 #undef SRC
332 #define SRC GLin
    [all...]
  /build/core/
pdk_fusion_modules.mk 54 $(_pdk_fusion_intermediates)/$(PDK.DEXPREOPT.$(l).SRC),\
69 $(_pdk_fusion_intermediates)/$(PDK.DEXPREOPT.$(a).SRC),\
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
Attribute.java 30 public static final Attribute SRC = new AttributeImpl ("SRC");
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_flatshade.c 51 #define COPY_3FV( DST, SRC ) \
53 (DST)[0] = (SRC)[0]; \
54 (DST)[1] = (SRC)[1]; \
55 (DST)[2] = (SRC)[2]; \
66 /** Copy all the color attributes from 'src' vertex to 'dst' vertex */
69 const struct vertex_header *src )
76 COPY_4FV(dst->data[attr], src->data[attr]);
81 COPY_3FV(dst->data[attr], src->data[attr]);
86 /** Copy all the color attributes from src vertex to dst0 & dst1 vertices */
90 const struct vertex_header *src )
    [all...]

Completed in 2907 milliseconds

1 23 4 5 6 7 8 91011