HomeSort by relevance Sort by last modified time
    Searched full:used (Results 176 - 200 of 64207) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_program.c 75 unsigned char * Used;
94 d->Used[index] |= mask;
98 * This function fills in the parameter 'used' with a writemask that
99 * represent which components of each temporary register are used by the
102 * @param used The function does not initialize this parameter.
106 unsigned char * used,
111 d.Used = used;
122 /* Search a list of used temporaries for a free one
124 * @note If this functions finds a free temporary, it will mark it as used
152 unsigned char used[RC_REGISTER_MAX_INDEX]; local
    [all...]
radeon_pair_dead_sources.c 9 if (sub->Src[RC_PAIR_PRESUB_SRC].Used) {
14 sub->Src[i].Used = 1;
28 inst->U.P.RGB.Src[sub->Arg[i].Source].Used = 1;
32 inst->U.P.Alpha.Src[sub->Arg[i].Source].Used = 1;
38 * This pass finds sources that are not used by their instruction and marks
53 inst->U.P.RGB.Src[i].Used = 0;
54 inst->U.P.Alpha.Src[i].Used = 0;
  /external/clang/test/CXX/expr/expr.ass/
p9-cxx11.cpp 16 a = { 1 } = b; // expected-error {{initializer list cannot be used on the left hand side of operator '='}}
17 a = a + { 4 }; // expected-error {{initializer list cannot be used on the right hand side of operator '+'}}
18 a = { 3 } * { 4 }; // expected-error {{initializer list cannot be used on the left hand side of operator '*'}} \
19 expected-error {{initializer list cannot be used on the right hand side of operator '*'}}
33 int k1 = T() = { 1, 2 } = { 3, 4 }; // expected-error {{initializer list cannot be used on the left hand side of operator '='}}
34 int k2 = T() = { 1, 2 } + 1; // expected-error {{initializer list cannot be used on the left hand side of operator '+'}}
  /external/dropbear/libtommath/
bn_mp_reduce_is_2k_l.c 18 /* determines if reduce_2k_l can be used */
23 if (a->used == 0) {
25 } else if (a->used == 1) {
27 } else if (a->used > 1) {
29 for (iy = ix = 0; ix < a->used; ix++) {
34 return (iy >= (a->used/2)) ? MP_YES : MP_NO;
bn_fast_s_mp_mul_high_digs.c 22 * This is used in the Barrett reduction since for one of the multiplications
34 pa = a->used + b->used;
42 pa = a->used + b->used;
49 ty = MIN(b->used-1, ix);
57 while (tx++ < a->used && ty-- >= 0) { ... }
59 iy = MIN(a->used-tx, ty+1);
74 olduse = c->used;
75 c->used = pa
    [all...]
bn_mp_add_d.c 26 if (c->alloc < a->used + 1) {
27 if ((res = mp_grow(c, a->used + 1)) != MP_OKAY) {
33 if (a->sign == MP_NEG && (a->used > 1 || a->dp[0] >= b)) {
49 /* old number of used digits in c */
50 oldused = c->used;
71 for (ix = 1; ix < a->used; ix++) {
81 c->used = a->used + 1;
84 c->used = 1;
87 if (a->used == 1)
    [all...]
bn_mp_sub_d.c 26 if (c->alloc < a->used + 1) {
27 if ((res = mp_grow(c, a->used + 1)) != MP_OKAY) {
47 oldused = c->used;
52 if ((a->used == 1 && a->dp[0] <= b) || a->used == 0) {
53 if (a->used == 1) {
62 c->used = 1;
66 c->used = a->used;
74 for (ix = 1; ix < a->used; ix++)
    [all...]
bn_s_mp_add.c 28 if (a->used > b->used) {
29 min = b->used;
30 max = a->used;
33 min = a->used;
34 max = b->used;
45 /* get old used digit count and set new one */
46 olduse = c->used;
47 c->used = max + 1;
97 for (i = c->used; i < olduse; i++)
    [all...]
bn_mp_lshd.c 29 if (a->alloc < a->used + b) {
30 if ((res = mp_grow (a, a->used + b)) != MP_OKAY) {
38 /* increment the used by the shift amount then copy upwards */
39 a->used += b;
42 top = a->dp + a->used - 1;
45 bottom = a->dp + a->used - 1 - b;
51 for (x = a->used - 1; x >= b; x--) {
  /external/icu4c/test/cintltst/
cnumtst.h 27 * The function used to test the Number format API
32 * The function used to test parsing of numbers in UNUM_SPELLOUT style
37 * The function used to test significant digits in the Number format API
42 * The function used to test Number format API rounding with significant digits
47 * The function used to test the Number format API with padding
52 * The function used to test the Number format API with padding
ccaltst.h 26 * The function used to test the Calendar API
30 * The function used to test getMillis, setMillis, setDate and setDateTime functions extensively
34 * This function is used to test and confirm the functioning of
56 * test subroutine used by TestGMTvsLocal()
72 /*Internal functions used*/
74 * test subroutines used by TestAddRollExtensive()
83 * test subroutines used by TestGetSetDateAPI and TestFieldGetSet
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_program.c 75 unsigned char * Used;
94 d->Used[index] |= mask;
98 * This function fills in the parameter 'used' with a writemask that
99 * represent which components of each temporary register are used by the
102 * @param used The function does not initialize this parameter.
106 unsigned char * used,
111 d.Used = used;
122 /* Search a list of used temporaries for a free one
124 * @note If this functions finds a free temporary, it will mark it as used
152 unsigned char used[RC_REGISTER_MAX_INDEX]; local
    [all...]
radeon_pair_dead_sources.c 9 if (sub->Src[RC_PAIR_PRESUB_SRC].Used) {
14 sub->Src[i].Used = 1;
28 inst->U.P.RGB.Src[sub->Arg[i].Source].Used = 1;
32 inst->U.P.Alpha.Src[sub->Arg[i].Source].Used = 1;
38 * This pass finds sources that are not used by their instruction and marks
53 inst->U.P.RGB.Src[i].Used = 0;
54 inst->U.P.Alpha.Src[i].Used = 0;
  /external/wpa_supplicant_8/src/eap_peer/
eap_config.h 19 * This field is used to set the real user identity or NAI (for
32 * This field is used for unencrypted use with EAP types that support
36 * If not set, the identity field will be used for both unencrypted and
39 * This field can also be used with EAP-SIM/AKA/AKA' to store the
56 * only be used with authentication mechanism that use this hash as the
60 * In addition, this field is used to configure a pre-shared key for
79 * file should be used since working directory may change when
82 * Alternatively, a named configuration blob can be used by setting
85 * Alternatively, this can be used to only perform matching of the
98 * certificate store (My user account) is used, whereas computer stor
    [all...]
  /external/freetype/include/freetype/config/
ftheader.h 10 /* This file is part of the FreeType project, and may only be used, */
28 /* This macro is used in association with @FT_END_HEADER in header */
46 /* This macro is used in association with @FT_BEGIN_HEADER in header */
73 /* Macro definitions used to #include specific header files. */
77 /* FreeType~2 header files. They can be used directly in #include */
105 * A macro used in #include statements to name the file containing
120 * A macro used in #include statements to name the file containing
135 * A macro used in #include statements to name the file containing
150 * A macro used in #include statements to name the file containing the
169 * A macro used in #include statements to name the file containing th
    [all...]
  /external/chromium_org/net/data/websocket/
README 1 This directory contains resources used by WebSocket server for testing.
6 Used by ProxyBrowserTest.BasicAuthWSConnect,
14 Used by WebSocketBrowserTest.WebSocketSplitSegments and
20 Used by WorkerTest.WebSocketSharedWorker.
24 Used by WorkerTest.WebSocketSharedWorker.
29 Used by kinds of PPAPI tests for WebSocket, ExtensionApiTest.WebSocket,
34 Used by kinds of PPAPI tests for WebSocket.
39 Used by kinds of PPAPI tests for WebSocket.
44 Used by WebSocketBrowserTest.WebSocketSplitSegments and
49 Used by kinds of PPAPI tests for WebSocket
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/draw2d/
IColorConstants.java 25 * System color used to paint highlight shadow areas.
29 * System color used to paint background areas.
33 * System color used to paint normal shadow areas.
37 // * System color used to paint dark shadow areas.
41 * System color used to paint list background areas.
45 * System color used to paint list foreground areas.
49 * System color used to paint list selection area.
53 * System color used to paint list selection text.
57 * System color used to paint tooltip text.
61 * System color used to paint tooltip background areas
    [all...]
  /frameworks/base/packages/Keyguard/res/values/
alias.xml 22 <!-- Alias used to reference framework color for transparency. -->
25 <!-- Alias used to reference framework drawable in keyguard. -->
28 <!-- Alias used to reference framework drawable in keyguard. -->
31 <!-- Alias used to reference framework drawable in keyguard. -->
34 <!-- Alias used to reference framework drawable in keyguard. -->
37 <!-- Alias used to reference framework "OK" string in keyguard. -->
40 <!-- Alias used to reference framework "OK" string in keyguard. -->
43 <!-- Alias used to reference framework configuration for screen rotation. -->
46 <!-- Alias used to reference framework configuration for translucent decor. -->
49 <!-- Alias used to reference framework activity duration. --
    [all...]
  /external/dropbear/
circbuffer.c 41 cbuf->used = 0;
57 return cbuf->used;
63 return cbuf->size - cbuf->used;
69 dropbear_assert(((2*cbuf->size)+cbuf->writepos-cbuf->readpos)%cbuf->size == cbuf->used%cbuf->size);
70 dropbear_assert(((2*cbuf->size)+cbuf->readpos-cbuf->writepos)%cbuf->size == (cbuf->size-cbuf->used)%cbuf->size);
72 if (cbuf->used == 0) {
86 dropbear_assert(cbuf->used <= cbuf->size);
87 dropbear_assert(((2*cbuf->size)+cbuf->writepos-cbuf->readpos)%cbuf->size == cbuf->used%cbuf->size);
88 dropbear_assert(((2*cbuf->size)+cbuf->readpos-cbuf->writepos)%cbuf->size == (cbuf->size-cbuf->used)%cbuf->size);
90 if (cbuf->used == cbuf->size)
    [all...]
  /external/chromium_org/third_party/freetype/include/freetype/config/
ftheader.h 10 /* This file is part of the FreeType project, and may only be used, */
28 /* This macro is used in association with @FT_END_HEADER in header */
46 /* This macro is used in association with @FT_BEGIN_HEADER in header */
73 /* Macro definitions used to #include specific header files. */
77 /* FreeType~2 header files. They can be used directly in #include */
105 * A macro used in #include statements to name the file containing
120 * A macro used in #include statements to name the file containing
135 * A macro used in #include statements to name the file containing
150 * A macro used in #include statements to name the file containing the
169 * A macro used in #include statements to name the file containing th
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
ccaltst.h 26 * The function used to test the Calendar API
30 * The function used to test getMillis, setMillis, setDate and setDateTime functions extensively
34 * This function is used to test and confirm the functioning of
56 * test subroutine used by TestGMTvsLocal()
68 /*Internal functions used*/
70 * test subroutines used by TestAddRollExtensive()
79 * test subroutines used by TestGetSetDateAPI and TestFieldGetSet
  /external/chromium_org/third_party/re2/util/
strutil.cc 20 int used = 0; local
23 if (dest_len - used < 2) // Need space for two letter escape
28 case '\n': dest[used++] = '\\'; dest[used++] = 'n'; break;
29 case '\r': dest[used++] = '\\'; dest[used++] = 'r'; break;
30 case '\t': dest[used++] = '\\'; dest[used++] = 't'; break;
31 case '\"': dest[used++] = '\\'; dest[used++] = '\"'; break
    [all...]
  /external/regex-re2/util/
strutil.cc 20 int used = 0; local
23 if (dest_len - used < 2) // Need space for two letter escape
28 case '\n': dest[used++] = '\\'; dest[used++] = 'n'; break;
29 case '\r': dest[used++] = '\\'; dest[used++] = 'r'; break;
30 case '\t': dest[used++] = '\\'; dest[used++] = 't'; break;
31 case '\"': dest[used++] = '\\'; dest[used++] = '\"'; break
    [all...]
  /external/chromium_org/content/public/common/
renderer_preferences.h 57 // Currently only used by Linux.
61 // Currently only used by Linux.
64 // Whether auto hinter should be used. Currently only used by Linux.
67 // Whether embedded bitmap strikes in fonts should be used.
68 // Current only used by Linux.
72 // Currently only used by Linux.
75 // Whether subpixel positioning should be used, permitting fractional X
76 // positions for glyphs. Currently only used by Linux.
79 // The color of the focus ring. Currently only used on Linux
    [all...]
  /external/chromium_org/third_party/libxml/src/include/libxml/
schemasInternals.h 159 * Obsolete, not used anymore.
166 * Obsolete, not used anymore.
173 * Obsolete, not used anymore.
185 * Used by wildcards.
192 * Used by wildcards.
199 * Used by wildcards.
250 struct _xmlSchemaAttribute *next; /* the next attribute (not used?) */
252 const xmlChar *id; /* Deprecated; not used */
253 const xmlChar *ref; /* Deprecated; not used */
254 const xmlChar *refNs; /* Deprecated; not used */
    [all...]

Completed in 1078 milliseconds

1 2 3 4 5 6 78 91011>>