Searched defs:modes (Results 101 - 125 of 129) sorted by relevance

123456

/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dffvertex_prog.c1431 GLuint modes[4]; local
1438 modes[0] = p->state->unit[i].texgen_mode0;
1439 modes[1] = p->state->unit[i].texgen_mode1;
1440 modes[2] = p->state->unit[i].texgen_mode2;
1441 modes[3] = p->state->unit[i].texgen_mode3;
1444 switch (modes[j]) {
/external/chromium_org/third_party/openssl/openssl/ssl/
H A Dssltest.c421 static int modes[CRYPTO_NUM_LOCKS]; /* = {0, 0, ... } */ local
440 if (modes[type])
448 modes[type] = rw;
452 if (!modes[type])
458 if (modes[type] != rw)
465 modes[type] = 0;
/external/chromium_org/third_party/skia/src/utils/
H A DSkLua.cpp693 SkShader::TileMode modes[2]; local
694 switch (shader->asABitmap(&bm, &matrix, modes)) {
700 setfield_string(L, "tileX", mode2string(modes[0]));
701 setfield_string(L, "tileY", mode2string(modes[1]));
/external/icu4c/tools/pkgdata/
H A Dpkgdata.cpp112 /* This sets the modes that are available */
116 } modes[] = { variable in typeref:struct:__anon19502
327 fprintf(stderr, "modes: (-m option)\n");
328 for(i=0;i<(sizeof(modes)/sizeof(modes[0]));i++) {
329 fprintf(stderr, " %-9s ", modes[i].name);
330 if (modes[i].alt_name) {
331 fprintf(stderr, "/ %-9s", modes[i].alt_name);
335 fprintf(stderr, " %s\n", modes[i].desc);
/external/kernel-headers/original/sound/
H A Dcompress_params.h92 * Profile and modes are listed with bit masks. This allows for a
99 /* MP3 modes are only useful for encoders */
107 /* AMR modes are only useful for encoders */
122 /* AMRWB modes are only useful for encoders */
131 /* AAC modes are required for encoders and decoders */
209 * IEC modes are mandatory for decoders. Format autodetection
351 * @modes: Supported modes. See SND_AUDIOMODE defines
356 * This structure provides a scalar value for profiles, modes and stream
373 __u32 modes; member in struct:snd_codec_desc
[all...]
/external/mesa3d/src/gallium/state_trackers/d3d1x/dxgi/src/
H A Ddxgi_native.cpp393 const struct native_mode** modes; member in struct:GalliumDXGIOutput
410 modes = 0;
413 modes = parent->display->modeset->get_modes(parent->display, connector, (int*)&num_modes);
414 if(modes && num_modes)
419 dxgi_modes[i].Width = modes[i]->width;
420 dxgi_modes[i].Height = modes[i]->height;
421 dxgi_modes[i].RefreshRate.Numerator = modes[i]->refresh_rate;
429 if(modes)
431 free(modes);
432 modes
[all...]
/external/mesa3d/src/mesa/main/
H A Dffvertex_prog.c1431 GLuint modes[4]; local
1438 modes[0] = p->state->unit[i].texgen_mode0;
1439 modes[1] = p->state->unit[i].texgen_mode1;
1440 modes[2] = p->state->unit[i].texgen_mode2;
1441 modes[3] = p->state->unit[i].texgen_mode3;
1444 switch (modes[j]) {
/external/openssl/ssl/
H A Dssltest.c421 static int modes[CRYPTO_NUM_LOCKS]; /* = {0, 0, ... } */ local
440 if (modes[type])
448 modes[type] = rw;
452 if (!modes[type])
458 if (modes[type] != rw)
465 modes[type] = 0;
/external/skia/src/utils/
H A DSkLua.cpp693 SkShader::TileMode modes[2]; local
694 switch (shader->asABitmap(&bm, &matrix, modes)) {
700 setfield_string(L, "tileX", mode2string(modes[0]));
701 setfield_string(L, "tileY", mode2string(modes[1]));
/external/webp/src/enc/
H A Dquant.c757 // RD-opt decision. Reconstruct each modes, evalue distortion and bit-cost.
811 // return the cost array corresponding to the surrounding prediction modes.
813 const uint8_t modes[16]) {
816 const int left = (x == 0) ? it->preds_[y * preds_w - 1] : modes[it->i4_ - 1];
817 const int top = (y == 0) ? it->preds_[-preds_w + x] : modes[it->i4_ - 4];
960 // Refine intra16/intra4 sub-modes based on distortion only (not rate).
812 GetCostModeI4(VP8EncIterator* const it, const uint8_t modes[16]) argument
/external/wpa_supplicant_8/wpa_supplicant/
H A Dwps_supplicant.c1341 struct hostapd_hw_modes *modes; local
1379 modes = wpa_s->hw.modes;
1380 if (modes) {
1382 if (modes[m].mode == HOSTAPD_MODE_IEEE80211B ||
1383 modes[m].mode == HOSTAPD_MODE_IEEE80211G)
1385 else if (modes[m].mode == HOSTAPD_MODE_IEEE80211A)
H A Dwpa_supplicant_i.h697 struct hostapd_hw_modes *modes; member in struct:wpa_supplicant::__anon29757
H A Dp2p_supplicant.c2970 static struct hostapd_hw_modes * get_mode(struct hostapd_hw_modes *modes, argument
2977 if (modes[i].mode == mode)
2978 return &modes[i];
3063 if (wpa_s->hw.modes == NULL) {
3077 mode = get_mode(wpa_s->hw.modes, wpa_s->hw.num_modes, o->mode);
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcbiditst.c2932 modes[] = { variable in typeref:struct:__anon11778
2949 #define MODES_COUNT LENGTHOF(modes)
3326 switch (modes[mode].value) {
3362 "Reordering mode:", modes[mode].description,
3373 "Reordering mode:", modes[mode].description,
3567 modeValue = modes[mode].value;
3586 tc, modes[mode].value, options[option].value, level);
3596 if (!((modes[mode].value == UBIDI_REORDER_INVERSE_NUMBERS_AS_L) &&
3601 if (modes[mode].value == UBIDI_REORDER_INVERSE_NUMBERS_AS_L) {
3611 modes[mod
[all...]
/external/libvpx/libvpx/vp8/encoder/
H A Drdopt.c1089 B_PREDICTION_MODE modes[16]; member in struct:__anon21580
1364 bsi->modes[i] = x->partition_info->bmi[i].mode;
1403 bsi.modes[i] = ZERO4X4;
1511 x->partition_info->bmi[i].mode = bsi.modes[j];
2101 /* Experimental code. Special case for gf and arf zeromv modes.
2135 * block's intra eobs will be overwritten when we check inter modes,
2583 /* macroblock modes */
/external/skia/gm/
H A Dgmmain.cpp306 * Add all render modes encountered thus far to the "modes" array.
308 void GetRenderModesEncountered(SkTArray<SkString> &modes) { argument
313 // TODO(epoger): It seems a bit silly that all of these modes were
321 modes.push_back(modeAsString);
774 * report errors across rendering modes, such as pipe vs tiled.
1653 * Run this test in a number of different drawing modes (pipe,
2314 SkTArray<SkString> modes; local
2315 gmmain.GetRenderModesEncountered(modes);
2320 int expectedNumberOfTests = gmsRun * (configs.count() + modes
[all...]
/external/wpa_supplicant_8/hostapd/src/drivers/
H A Ddriver_test.c2556 struct hostapd_hw_modes *modes; local
2561 modes = os_calloc(*num_modes, sizeof(struct hostapd_hw_modes));
2562 if (modes == NULL)
2564 modes[0].mode = HOSTAPD_MODE_IEEE80211G;
2565 modes[0].num_channels = 11;
2566 modes[0].num_rates = 12;
2567 modes[0].channels = os_calloc(11, sizeof(struct hostapd_channel_data));
2568 modes[0].rates = os_calloc(modes[0].num_rates, sizeof(int));
2569 if (modes[
[all...]
H A Ddriver_nl80211.c5515 struct hostapd_hw_modes *modes; member in struct:phy_info_arg
5703 mode = os_realloc_array(phy_info->modes,
5708 phy_info->modes = mode;
5710 mode = &phy_info->modes[*(phy_info->num_modes)];
5731 mode = &phy_info->modes[*(phy_info->num_modes) - 1];
5779 wpa_driver_nl80211_postprocess_modes(struct hostapd_hw_modes *modes, argument
5786 /* heuristic to set up modes */
5788 if (!modes[m].num_channels)
5790 if (modes[m].channels[0].freq < 4000) {
5791 modes[
[all...]
/external/wpa_supplicant_8/src/drivers/
H A Ddriver_test.c2556 struct hostapd_hw_modes *modes; local
2561 modes = os_calloc(*num_modes, sizeof(struct hostapd_hw_modes));
2562 if (modes == NULL)
2564 modes[0].mode = HOSTAPD_MODE_IEEE80211G;
2565 modes[0].num_channels = 11;
2566 modes[0].num_rates = 12;
2567 modes[0].channels = os_calloc(11, sizeof(struct hostapd_channel_data));
2568 modes[0].rates = os_calloc(modes[0].num_rates, sizeof(int));
2569 if (modes[
[all...]
H A Ddriver_nl80211.c5515 struct hostapd_hw_modes *modes; member in struct:phy_info_arg
5703 mode = os_realloc_array(phy_info->modes,
5708 phy_info->modes = mode;
5710 mode = &phy_info->modes[*(phy_info->num_modes)];
5731 mode = &phy_info->modes[*(phy_info->num_modes) - 1];
5779 wpa_driver_nl80211_postprocess_modes(struct hostapd_hw_modes *modes, argument
5786 /* heuristic to set up modes */
5788 if (!modes[m].num_channels)
5790 if (modes[m].channels[0].freq < 4000) {
5791 modes[
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/drivers/
H A Ddriver_test.c2556 struct hostapd_hw_modes *modes; local
2561 modes = os_calloc(*num_modes, sizeof(struct hostapd_hw_modes));
2562 if (modes == NULL)
2564 modes[0].mode = HOSTAPD_MODE_IEEE80211G;
2565 modes[0].num_channels = 11;
2566 modes[0].num_rates = 12;
2567 modes[0].channels = os_calloc(11, sizeof(struct hostapd_channel_data));
2568 modes[0].rates = os_calloc(modes[0].num_rates, sizeof(int));
2569 if (modes[
[all...]
H A Ddriver_nl80211.c5515 struct hostapd_hw_modes *modes; member in struct:phy_info_arg
5703 mode = os_realloc_array(phy_info->modes,
5708 phy_info->modes = mode;
5710 mode = &phy_info->modes[*(phy_info->num_modes)];
5731 mode = &phy_info->modes[*(phy_info->num_modes) - 1];
5779 wpa_driver_nl80211_postprocess_modes(struct hostapd_hw_modes *modes, argument
5786 /* heuristic to set up modes */
5788 if (!modes[m].num_channels)
5790 if (modes[m].channels[0].freq < 4000) {
5791 modes[
[all...]
/external/icu4c/test/cintltst/
H A Dcbiditst.c3412 modes[] = { variable in typeref:struct:__anon19286
3429 #define MODES_COUNT LENGTHOF(modes)
3806 switch (modes[mode].value) {
3842 "Reordering mode:", modes[mode].description,
3853 "Reordering mode:", modes[mode].description,
4047 modeValue = modes[mode].value;
4066 tc, modes[mode].value, options[option].value, level);
4076 if (!((modes[mode].value == UBIDI_REORDER_INVERSE_NUMBERS_AS_L) &&
4081 if (modes[mode].value == UBIDI_REORDER_INVERSE_NUMBERS_AS_L) {
4091 modes[mod
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.debug.core_3.6.0.v20100519.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_rdopt.c104 // certain modes are assumed to be based on 8x8 blocks.
1057 // Only do the oblique modes if the best so far is
1058 // one of the neighboring directional modes
1173 // Pick modes for each sub-block (of size 4x4, 4x8, or 8x4) in an 8x8 block.
1635 MB_PREDICTION_MODE modes[4]; member in struct:__anon21651
2067 bsi->modes[i] = mi->bmi[i].as_mode;
2100 bsi->modes[i] = ZEROMV;
2109 mode_idx = INTER_OFFSET(bsi->modes[i]);
2114 mi->bmi[i].as_mode = bsi->modes[i];
2125 mbmi->mode = bsi->modes[
[all...]

Completed in 698 milliseconds

123456