Searched refs:value (Results 351 - 375 of 13868) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dsem_getvalue.c54 * This function stores the current count value of the
58 * Return value
76 * This function stores the current count value of the semaphore
87 long value; local
102 value = s->value;
104 *sval = value;
/external/chromium_org/net/base/
H A Dbig_endian.cc38 bool BigEndianReader::Read(T* value) { argument
41 ReadBigEndian<T>(ptr_, value);
46 bool BigEndianReader::ReadU8(uint8* value) { argument
47 return Read(value);
50 bool BigEndianReader::ReadU16(uint16* value) { argument
51 return Read(value);
54 bool BigEndianReader::ReadU32(uint32* value) { argument
55 return Read(value);
77 bool BigEndianWriter::Write(T value) { argument
80 WriteBigEndian<T>(ptr_, value);
85 WriteU8(uint8 value) argument
89 WriteU16(uint16 value) argument
93 WriteU32(uint32 value) argument
[all...]
/external/chromium_org/sync/internal_api/public/sessions/
H A Dsync_session_snapshot_unittest.cc58 scoped_ptr<base::DictionaryValue> value(snapshot.ToValue());
59 EXPECT_EQ(17u, value->size());
61 *value, "numSuccessfulCommits");
63 *value, "numSuccessfulBookmarkCommits");
65 *value, "numUpdatesDownloadedTotal");
67 *value, "numTombstoneUpdatesDownloadedTotal");
69 *value, "numReflectedUpdatesDownloadedTotal");
71 *value, "numLocalOverwrites");
73 *value, "numServerOverwrites");
75 *value, "numServerChangesRemainin
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8ArrayBufferViewCustom.h47 static bool HasInstance(v8::Handle<v8::Value> value, v8::Isolate*, WrapperWorldType) argument
49 return value->IsArrayBufferView();
51 static bool HasInstanceInAnyWorld(v8::Handle<v8::Value> value, v8::Isolate*) argument
53 return value->IsArrayBufferView();
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DStylePendingShader.h44 static PassRefPtr<StylePendingShader> create(CSSShaderValue* value) { return adoptRef(new StylePendingShader(value)); } argument
49 StylePendingShader(CSSShaderValue* value) argument
50 : m_value(value)
/external/chromium_org/third_party/mesa/src/src/glx/
H A Dglxhash.h11 void **value);
13 void *value);
16 void **value);
18 void **value);
/external/chromium_org/third_party/openssl/openssl/crypto/asn1/
H A Da_type.c66 if ((a->value.ptr != NULL) || (a->type == V_ASN1_NULL))
72 void ASN1_TYPE_set(ASN1_TYPE *a, int type, void *value) argument
74 if (a->value.ptr != NULL)
81 a->value.boolean = value ? 0xff : 0;
83 a->value.ptr=value;
86 int ASN1_TYPE_set1(ASN1_TYPE *a, int type, const void *value) argument
88 if (!value || (type == V_ASN1_BOOLEAN))
90 void *p = (void *)value;
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
H A Datomicops_internals_x86_msvc.h61 inline void NoBarrier_Store(volatile Atomic32* ptr, Atomic32 value) { argument
62 *ptr = value;
65 inline void Acquire_Store(volatile Atomic32* ptr, Atomic32 value) { argument
66 NoBarrier_AtomicExchange(ptr, value);
70 inline void Release_Store(volatile Atomic32* ptr, Atomic32 value) { argument
71 *ptr = value; // works w/o barrier for current Intel chips as of June 2005
80 Atomic32 value = *ptr; local
81 return value;
98 inline void NoBarrier_Store(volatile Atomic64* ptr, Atomic64 value) { argument
99 *ptr = value;
102 Acquire_Store(volatile Atomic64* ptr, Atomic64 value) argument
107 Release_Store(volatile Atomic64* ptr, Atomic64 value) argument
123 Atomic64 value = *ptr; local
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/win32/tests/
H A Dwin32-segof.asm1 extern value
2 mov ax, seg value
/external/chromium_org/tools/perf/page_sets/tough_canvas_cases/canvas2d_balls_common/
H A Dparse_url.js20 value = parts[1];
21 value = unescape(value);
22 return value;
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-720.js29 // keeps the existing value of the writable flag if none is given
34 Object.defineProperty(o, "x", {value: 5});
/external/clang/test/CXX/temp/temp.decls/temp.mem/
H A Dp1.cpp8 static T twice(U value) { argument
9 return (cond ? value + value : value);
/external/clang/test/CodeGenCXX/
H A Ddebug-info-union-template.cpp7 void g(float value) { argument
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DCallablesTest.java33 Object value = new Object();
34 Callable<Object> callable = Callables.returning(value);
35 assertSame(value, callable.call());
36 // Expect the same value on subsequent calls
37 assertSame(value, callable.call());
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
H A DUserData.java59 protected Object value; field in class:UserData
66 * type and value.
69 * @param value Value of the data
71 public UserData(byte type, Object value) { argument
74 this.value = value;
78 return value;
83 return value.toString();
108 int i = (Integer) value;
112 float f = (Float) value;
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DStringInternStrategy.java28 * If there exists a String in the pool equal to the provided value then it will be returned.
33 * that value == intern(value) will never be true.
35 * @param value String to be interned
38 String intern(String value); argument
/external/llvm/include/llvm/Support/
H A DSwapByteOrder.h27 inline uint16_t SwapByteOrder_16(uint16_t value) { argument
31 return _byteswap_ushort(value);
33 uint16_t Hi = value << 8;
34 uint16_t Lo = value >> 8;
41 inline uint32_t SwapByteOrder_32(uint32_t value) { argument
44 return __builtin_bswap32(value);
46 return _byteswap_ulong(value);
48 uint32_t Byte0 = value & 0x000000FF;
49 uint32_t Byte1 = value & 0x0000FF00;
50 uint32_t Byte2 = value
58 SwapByteOrder_64(uint64_t value) argument
[all...]
/external/mesa3d/src/glx/
H A Dglxhash.h11 void **value);
13 void *value);
16 void **value);
18 void **value);
/external/openssl/crypto/asn1/
H A Da_type.c66 if ((a->value.ptr != NULL) || (a->type == V_ASN1_NULL))
72 void ASN1_TYPE_set(ASN1_TYPE *a, int type, void *value) argument
74 if (a->value.ptr != NULL)
81 a->value.boolean = value ? 0xff : 0;
83 a->value.ptr=value;
86 int ASN1_TYPE_set1(ASN1_TYPE *a, int type, const void *value) argument
88 if (!value || (type == V_ASN1_BOOLEAN))
90 void *p = (void *)value;
[all...]
/external/proguard/src/proguard/classfile/constant/
H A DDoubleConstant.java45 * Creates a new DoubleConstant with the given double value.
47 public DoubleConstant(double value) argument
49 f8value = value;
54 * Returns the double value of this DoubleConstant.
63 * Sets the double value of this DoubleConstant.
65 public void setValue(double value) argument
67 f8value = value;
H A DFloatConstant.java45 * Creates a new FloatConstant with the given float value.
47 public FloatConstant(float value) argument
49 f4value = value;
54 * Returns the float value of this FloatConstant.
63 * Sets the float value of this FloatConstant.
65 public void setValue(float value) argument
67 f4value = value;
H A DIntegerConstant.java45 * Creates a new IntegerConstant with the given integer value.
47 public IntegerConstant(int value) argument
49 u4value = value;
54 * Returns the integer value of this IntegerConstant.
63 * Sets the integer value of this IntegerConstant.
65 public void setValue(int value) argument
67 u4value = value;
H A DLongConstant.java45 * Creates a new LongConstant with the given long value.
47 public LongConstant(long value) argument
49 u8value = value;
54 * Returns the long value of this LongConstant.
63 * Sets the long value of this LongConstant.
65 public void setValue(long value) argument
67 u8value = value;
/external/v8/test/mjsunit/regress/
H A Dregress-720.js29 // keeps the existing value of the writable flag if none is given
34 Object.defineProperty(o, "x", {value: 5});
/external/valgrind/main/memcheck/tests/
H A Dclientperm.stdout.exp1 m_na: returned value is -1
3 m_rm: returned value is 1

Completed in 3805 milliseconds

<<11121314151617181920>>