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

1 2

  /external/compiler-rt/lib/tsan/rtl/
tsan_suppressions.cc 102 const char *stype = conv(typ); local
103 if (0 == internal_strcmp(stype, kSuppressionNone))
109 if (suppression_ctx->Match(info.function, stype, &s) ||
110 suppression_ctx->Match(info.file, stype, &s) ||
111 suppression_ctx->Match(info.module, stype, &s)) {
126 const char *stype = conv(typ); local
127 if (0 == internal_strcmp(stype, kSuppressionNone))
131 if (suppression_ctx->Match(global.name, stype, &s) ||
132 suppression_ctx->Match(global.module, stype, &s)) {
  /external/ppp/pppd/plugins/rp-pppoe/
if.c 101 int domain, stype; local
113 stype = SOCK_RAW;
116 stype = SOCK_PACKET;
119 if ((fd = socket(domain, stype, htons(type))) < 0) {
pppoe-discovery.c 106 int domain, stype; local
118 stype = SOCK_RAW;
121 stype = SOCK_PACKET;
124 if ((fd = socket(domain, stype, htons(type))) < 0) {
  /bionic/libc/upstream-netbsd/lib/libc/gen/
popen.c 95 int stype = flags ? (SOCK_STREAM | SOCK_CLOEXEC) : SOCK_STREAM; local
98 if (socketpair(AF_LOCAL, stype, 0, pdes) < 0)
  /external/openfst/src/include/fst/
push.h 133 const StringType stype = rtype == REWEIGHT_TO_INITIAL local
136 vector<typename GallicArc<Arc, stype>::Weight> gdistance;
137 VectorFst<GallicArc<Arc, stype> > gfst;
138 ArcMap(ifst, &gfst, ToGallicMapper<Arc, stype>());
144 ArcMapFst<Arc, GallicArc<Arc, stype>, ToGallicMapper<Arc, stype> >
145 guwfst(uwfst, ToGallicMapper<Arc, stype>());
148 typename GallicArc<Arc, stype>::Weight total_weight =
149 GallicArc<Arc, stype>::Weight::One();
153 total_weight = typename GallicArc<Arc, stype>::Weight
    [all...]
  /external/sepolicy/tools/sepolicy-analyze/
dups.c 21 struct type_datum *stype, *ttype, *stype2, *ttype2; local
35 stype = policydb->type_val_to_struct[k->source_type - 1];
37 attrib1 = stype->flavor || ttype->flavor;
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
TextureGeneratorBlend.java 53 INTENSITY_FUNCTION[0] = new IntensityFunction() {//Linear: stype = 0 (TEX_LIN)
59 INTENSITY_FUNCTION[1] = new IntensityFunction() {//Quad: stype = 1 (TEX_QUAD)
66 INTENSITY_FUNCTION[2] = new IntensityFunction() {//Ease: stype = 2 (TEX_EASE)
79 INTENSITY_FUNCTION[3] = new IntensityFunction() {//Diagonal: stype = 3 (TEX_DIAG)
85 INTENSITY_FUNCTION[4] = new IntensityFunction() {//Sphere: stype = 4 (TEX_SPHERE)
92 INTENSITY_FUNCTION[5] = new IntensityFunction() {//Halo: stype = 5 (TEX_HALO)
99 INTENSITY_FUNCTION[6] = new IntensityFunction() {//Radial: stype = 6 (TEX_RAD)
119 int stype = ((Number) tex.getFieldValue("stype")).intValue(); local
140 texres.intensity = INTENSITY_FUNCTION[stype].getIntensity(x, y, dDelta * k)
    [all...]
TextureGeneratorMusgrave.java 62 int stype = ((Number) tex.getFieldValue("stype")).intValue(); local
82 musgraveFunction = NoiseGenerator.musgraveFunctions.get(Integer.valueOf(musgraveData.stype));
84 throw new IllegalStateException("Unknown type of musgrave texture: " + stype);
117 public final int stype; field in class:TextureGeneratorMusgrave.MusgraveData
127 stype = ((Number) tex.getFieldValue("stype")).intValue();
TextureGeneratorStucci.java 67 int stype = ((Number) tex.getFieldValue("stype")).intValue(); local
90 if (stype != 0) {
103 if (stype == NoiseGenerator.TEX_WALLOUT) {
TextureGeneratorMarble.java 49 // tex->stype
117 if (marbleData.stype >= TEX_SOFT) {
119 if (marbleData.stype == TEX_SHARP) {
121 } else if (marbleData.stype == TEX_SHARPER) {
132 public final int stype; field in class:TextureGeneratorMarble.MarbleData
141 stype = ((Number) tex.getFieldValue("stype")).intValue();
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_tgsi.c 291 enum tgsi_opcode_type stype = tgsi_opcode_infer_src_type(inst->Instruction.Opcode); local
306 res = bld_base->emit_fetch_funcs[reg->Register.File](bld_base, reg, stype,
  /external/selinux/policycoreutils/sepolgen-ifgen/
sepolgen-ifgen-attr-helper.c 90 char *stype, *ttype, *tclass; local
91 stype = p->p_type_val_to_name[key->source_type - 1];
94 if (stype && ttype) {
95 fprintf(fp, "%s,%s,%s", stype, ttype, tclass);
  /external/toybox/kconfig/
lkc.h 56 enum symbol_type stype; member in struct:kconf_id
  /external/mesa3d/src/gallium/state_trackers/xa/
xa_tracker.c 140 enum xa_surface_type stype; local
155 for (stype = 0; stype < XA_LAST_SURFACE_TYPE; ++stype)
156 num_formats += num_preferred[stype];
167 for (stype = 0; stype < XA_LAST_SURFACE_TYPE; ++stype) {
168 unsigned int bind = stype_bind[stype];
172 for (i = 0; i < num_preferred[stype]; ++i)
    [all...]
  /external/selinux/checkpolicy/test/
dispol.c 115 char *stype, *ttype, *tclass; local
116 stype = p->p_type_val_to_name[key->source_type - 1];
119 if (stype && ttype)
120 fprintf(fp, "%s %s : %s ", stype, ttype, tclass);
121 else if (stype)
122 fprintf(fp, "%s %u : %s ", stype, key->target_type, tclass);
390 display_id(p, fp, SYM_TYPES, ft->stype - 1, "");
  /external/wpa_supplicant_8/src/common/
ieee802_11_common.c 432 u16 fc, type, stype; local
443 stype = WLAN_FC_GET_STYPE(fc);
459 if (stype != WLAN_FC_STYPE_PSPOLL)
896 u16 stype = WLAN_FC_GET_STYPE(fc); local
901 switch (stype) {
917 switch (stype) {
927 switch (stype) {
  /external/opencv/cv/src/
cvundistort.cpp 386 int stype, dtype; local
428 stype = CV_MAT_TYPE(_src->type);
430 sstep = _src->rows == 1 ? 1 : _src->step/CV_ELEM_SIZE(stype);
445 if( stype == CV_32FC2 )
  /external/wpa_supplicant_8/src/drivers/
driver_hostap.c 59 u16 stype)
131 event.tx_status.stype = WLAN_FC_GET_STYPE(fc);
143 u16 fc, extra_len, type, stype; local
159 stype = WLAN_FC_GET_STYPE(fc);
161 if (type != WLAN_FC_TYPE_MGMT || stype != WLAN_FC_STYPE_BEACON) {
200 handle_data(drv, buf, data_len, stype);
driver_atheros.c 833 u16 fc, stype; local
847 stype = WLAN_FC_GET_STYPE(fc);
849 wpa_printf(MSG_DEBUG, "%s: subtype 0x%x len %d", __func__, stype,
852 if (stype == WLAN_FC_STYPE_PROBE_REQ) {
873 switch (stype) {
1301 u16 fc, stype; local
    [all...]
driver_nl80211_event.c 540 u16 fc, stype; local
552 stype = WLAN_FC_GET_STYPE(fc);
564 " freq=%d ssi_signal=%d fc=0x%x seq_ctrl=0x%x stype=%u (%s) len=%u",
566 le_to_host16(mgmt->seq_ctrl), stype, fc2str(fc),
606 event.tx_status.stype = WLAN_FC_GET_STYPE(fc);
    [all...]
  /frameworks/base/core/java/android/content/
UndoManager.java 183 int stype; local
184 while ((stype=p.readInt()) != 0) {
186 if (stype == 1) {
  /external/mksh/src/
eval.c 202 short stype; /* [=+-?%#] action after expanded word */ member in struct:SubType
374 int stype; local
379 type = varsub(&x, varname, sp, &stype, &slen);
410 st->stype = stype;
425 if (stype)
427 switch (stype & 0x17F) {
621 if (stype & 0x80)
705 switch (st->stype & 0x17F) {
721 dp, st->stype);
1094 int stype; \/* substitution type *\/ local
    [all...]
  /external/wpa_supplicant_8/src/ap/
ieee802_11.c 2193 u16 fc, stype; local
    [all...]
  /external/selinux/libsepol/src/
expand.c 3229 type_datum_t *stype = p->type_val_to_struct[k->source_type - 1]; local
3359 type_datum_t *stype = p->type_val_to_struct[k->source_type - 1]; local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
events.c 3492 u16 fc, stype; local
    [all...]

Completed in 6114 milliseconds

1 2