HomeSort by relevance Sort by last modified time
    Searched refs:sf (Results 76 - 100 of 947) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/test/
copy1.go 15 sf := make([]float64, 8)
21 _ = copy(si, sf) // ERROR "have different element types.*int.*float64"
  /prebuilts/go/linux-x86/test/
copy1.go 15 sf := make([]float64, 8)
21 _ = copy(si, sf) // ERROR "have different element types.*int.*float64"
  /external/autotest/client/site_tests/hardware_DiskFirmwareUpgrade/
hardware_DiskFirmwareUpgrade.py 39 with open(status_file) as sf:
40 for l in sf:
  /external/iptables/iptables/
Android.mk 56 ln -sf iptables $(TARGET_OUT)/bin/iptables-save; \
57 ln -sf iptables $(TARGET_OUT)/bin/iptables-restore
96 ln -sf ip6tables $(TARGET_OUT)/bin/ip6tables-save; \
97 ln -sf ip6tables $(TARGET_OUT)/bin/ip6tables-restore
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_opt_coalesce_ff_writes.c 55 if (!qir_is_raw_mov(mov_inst) || mov_inst->sf)
78 if (qir_depends_on_flags(inst) || inst->sf)
  /external/python/cpython2/Modules/
ar_beos 66 ln -sf $PWD lib
  /external/python/cpython3/Modules/
ar_beos 66 ln -sf $PWD lib
  /external/selinux/policycoreutils/semodule/
Makefile 17 ln -sf semodule genhomedircon
22 (cd $(SBINDIR); ln -sf semodule genhomedircon)
  /external/selinux/python/audit2allow/
Makefile 19 ln -sf audit2allow audit2why
27 (cd $(BINDIR); ln -sf audit2allow audit2why)
  /external/selinux/python/sepolicy/
Makefile 27 ln -sf sepolicy sepolgen
36 (cd $(BINDIR); ln -sf sepolicy sepolgen)
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
cor_h_x.cpp 125 sf = scaling factor of type Word16 ; 2 when mode is MR122, 1 for all
171 Word16 sf // (i): scaling factor: 2 for 12.2, 1 for others
174 cor_h_x2(h, x, dn, sf, NB_TRACK, STEP);
182 Word16 sf, // (i): scaling factor: 2 for 12.2, 1 for others
213 j = sub (norm_l (tot), sf);
248 Word16 sf, /* (i): scaling factor: 2 for 12.2, 1 for others */
306 j = norm_l(tot) - sf;
cor_h_x2.cpp 114 sf = scaling factor of type Word16 ; 2 when mode is MR122, 1 for all
166 Word16 sf, // (i): scaling factor: 2 for 12.2, 1 for others
197 j = sub (norm_l (tot), sf);
232 Word16 sf, /* (i): scaling factor: 2 for 12.2, 1 for others */
274 j = sub(norm_l(tot), sf, pOverflow);
  /external/guice/core/src/com/google/inject/internal/
ProxyFactory.java 28 import net.sf.cglib.core.MethodWrapper;
29 import net.sf.cglib.proxy.Callback;
30 import net.sf.cglib.proxy.CallbackFilter;
31 import net.sf.cglib.proxy.Enhancer;
32 import net.sf.cglib.reflect.FastClass;
33 import net.sf.cglib.reflect.FastConstructor;
131 callbacks[i] = net.sf.cglib.proxy.NoOp.INSTANCE;
165 if (callbacks[i] == net.sf.cglib.proxy.NoOp.INSTANCE) {
166 callbackTypes[i] = net.sf.cglib.proxy.NoOp.class;
168 callbackTypes[i] = net.sf.cglib.proxy.MethodInterceptor.class
    [all...]
  /external/libjpeg-turbo/java/
TJUnitTest.java 296 int subsamp, TJScalingFactor sf, int flags)
304 int halfway = 16 * sf.getNum() / sf.getDenom();
305 int blockSize = 8 * sf.getNum() / sf.getDenom();
420 int subsamp, TJScalingFactor sf, int flags)
427 int halfway = 16 * sf.getNum() / sf.getDenom();
428 int blockSize = 8 * sf.getNum() / sf.getDenom()
783 TJScalingFactor[] sf = TJ.getScalingFactors(); local
    [all...]
TJExample.java 55 for (int i = 0; i < sf.length; i++) {
56 System.out.print(sf[i].getNum() + "/" + sf[i].getDenom());
57 if (sf.length == 2 && i != sf.length - 1)
59 else if (sf.length > 2) {
60 if (i != sf.length - 1)
62 if (i == sf.length - 2)
110 sf = TJ.getScalingFactors();
136 for (int j = 0; j < sf.length; j++)
361 static TJScalingFactor[] sf = null; field in class:TJExample
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/nvc0/
nvc0_state_validate.c 14 struct nv50_surface *sf = nv50_surface(fb->zsbuf);
15 struct nv50_miptree *mt = nv50_miptree(sf->base.texture);
92 struct nv50_surface *sf; local
101 sf = nv50_surface(fb->cbufs[i]);
102 res = nv04_resource(sf->base.texture);
106 PUSH_DATAh(push, res->address + sf->offset);
107 PUSH_DATA (push, res->address + sf->offset);
109 struct nv50_miptree *mt = nv50_miptree(sf->base.texture);
111 assert(sf->base.texture->target != PIPE_BUFFER);
113 PUSH_DATA(push, sf->width)
153 struct nv50_surface *sf = nv50_surface(fb->zsbuf); local
724 struct pipe_surface *sf = nvc0->framebuffer.cbufs[0]; local
    [all...]
  /external/aac/libFDK/src/
fixpoint_math.cpp 762 INT fixp_floorToInt(FIXP_DBL f_inp, INT sf) {
763 FDK_ASSERT(sf >= 0);
764 INT floorInt = (INT)(f_inp >> ((DFRACT_BITS - 1) - sf));
768 FIXP_DBL fixp_floor(FIXP_DBL f_inp, INT sf) {
769 FDK_ASSERT(sf >= 0);
770 INT floorInt = fixp_floorToInt(f_inp, sf);
771 FIXP_DBL f_floor = (FIXP_DBL)(floorInt << ((DFRACT_BITS - 1) - sf));
775 INT fixp_ceilToInt(FIXP_DBL f_inp, INT sf) // sf mantissaBits left of dot
777 FDK_ASSERT(sf >= 0)
    [all...]
  /system/core/rootdir/
Android.mk 81 ln -sf /system/bin $(TARGET_ROOT_OUT)/bin; \
82 ln -sf /system/etc $(TARGET_ROOT_OUT)/etc; \
83 ln -sf /data/user_de/0/com.android.shell/files/bugreports $(TARGET_ROOT_OUT)/bugreports; \
84 ln -sf /sys/kernel/debug $(TARGET_ROOT_OUT)/d; \
85 ln -sf /storage/self/primary $(TARGET_ROOT_OUT)/sdcard
89 LOCAL_POST_INSTALL_CMD += ; ln -sf /system/vendor $(TARGET_ROOT_OUT)/vendor
94 LOCAL_POST_INSTALL_CMD += ; ln -sf /system/product $(TARGET_ROOT_OUT)/product
106 LOCAL_POST_INSTALL_CMD += ; ln -sf /vendor/odm/app $(TARGET_ROOT_OUT)/odm/app
107 LOCAL_POST_INSTALL_CMD += ; ln -sf /vendor/odm/bin $(TARGET_ROOT_OUT)/odm/bin
108 LOCAL_POST_INSTALL_CMD += ; ln -sf /vendor/odm/etc $(TARGET_ROOT_OUT)/odm/et
    [all...]
  /device/linaro/hikey/bootloader/
Makefile 22 ln -sf $(EDK2_DIR)/../OpenPlatformPkg OpenPlatformPkg && \
27 ln -sf $(ANDROID_BUILD_TOP)/$(PRODUCT_OUT)/obj/uefi $(EDK2_DIR)/Build/HiKey && \
33 ln -sf $(EDK2_DIR)/Build/HiKey/$(TARGET)_GCC49/FV//bl1.bin && \
  /external/libldac/src/
ldacBT_internal.h 117 int sf; /* sampling frequency */ member in struct:_ldacbt_pcm_info
195 DECLFUNC int ldacBT_assert_pcm_sampling_freq( int sf );
201 DECLFUNC int ldacBT_frmlen_to_bitrate( int frmlen, int flgFrmHdr, int sf, int frame_samples );
  /external/libcap/libcap/
Makefile 56 ln -sf $(MINLIBNAME) $(MAJLIBNAME)
57 ln -sf $(MAJLIBNAME) $(LIBNAME)
71 ln -sf $(MINLIBNAME) $(FAKEROOT)$(LIBDIR)/$(MAJLIBNAME)
72 ln -sf $(MAJLIBNAME) $(FAKEROOT)$(LIBDIR)/$(LIBNAME)
  /external/mesa3d/src/gallium/drivers/swr/
swr_clear.cpp 82 const struct pipe_surface *sf = fb->cbufs[c]; local
83 if (sf && (sf->u.tex.last_layer <= sf->u.tex.first_layer + i))
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_sf.c 70 * it manually to let SF shader generate the needed interpolation
109 /* FINISHME: SF programs use calculated jumps (i.e., JMPI with a register
119 fprintf(stderr, "sf:\n");
129 &brw->sf.prog_offset, &brw->sf.prog_data);
229 &brw->sf.prog_offset, &brw->sf.prog_data)) {
  /external/ppp/pppd/include/
pcap-int.h 75 struct pcap_sf sf; member in struct:pcap
  /external/sonic/
Makefile 36 ln -sf libsonic.so.$(LIB_TAG) libsonic.so
37 ln -sf libsonic.so.$(LIB_TAG) libsonic.so.0
48 ln -sf libsonic.so.$(LIB_TAG) $(DESTDIR)$(PREFIX)/lib/libsonic.so
49 ln -sf libsonic.so.$(LIB_TAG) $(DESTDIR)$(PREFIX)/lib/libsonic.so.0

Completed in 597 milliseconds

1 2 34 5 6 7 8 91011>>