HomeSort by relevance Sort by last modified time
    Searched defs:temp (Results 126 - 150 of 1947) sorted by null

1 2 3 4 56 7 8 91011>>

  /bootable/recovery/edify/
main.c 162 char temp = script[n->end]; local
167 script[n->end] = temp;
  /development/perftests/panorama/feature_stab/db_vlvm/
db_utilities_random.h 77 int temp,temp2,i,j; local
81 temp=db_RandomInt(r_seed,pool_size-1-i);
85 if(s[j]<=temp) temp++;
89 temp2=temp;
90 temp=s[j];
94 s[i]=temp;
  /device/asus/flo/conn_init/
wfc_util_common.c 53 char temp; local
66 temp = pAsciiString[i];
68 if (temp >= '0' && temp <= '9') {
69 temp = temp - '0';
70 } else if ( temp >= 'a' && temp <= 'f' ) {
71 temp = temp - 'a' + 10
    [all...]
  /device/generic/goldfish/qemu-props/
qemu-props.c 85 char temp[BUFF_SIZE]; local
86 int len = qemud_channel_recv(qemud_fd, temp, sizeof temp - 1);
89 if (len < 0 || len > BUFF_SIZE-1 || temp[0] == '\0')
92 temp[len] = '\0'; /* zero-terminate string */
94 DD("received: %.*s", len, temp);
97 q = strchr(temp, '=');
104 if (property_set(temp, q) < 0) {
105 DD("could not set property '%s' to '%s'", temp, q);
  /device/lge/mako/conn_init/
wfc_util_common.c 53 char temp; local
66 temp = pAsciiString[i];
68 if (temp >= '0' && temp <= '9') {
69 temp = temp - '0';
70 } else if ( temp >= 'a' && temp <= 'f' ) {
71 temp = temp - 'a' + 10
    [all...]
  /external/checkpolicy/
queue.c 109 queue_node_ptr_t p, temp; local
116 temp = p;
118 free(temp);
146 queue_node_ptr_t p, last, temp; local
167 temp = p;
169 g(temp->element, vp);
170 free(temp);
  /external/chromium_org/base/mac/
scoped_authorizationref.h 61 AuthorizationRef temp = that.authorization_; local
63 authorization_ = temp;
71 AuthorizationRef temp = authorization_; variable
73 return temp;
scoped_block.h 74 B temp = that.block_; local
76 block_ = temp;
80 B temp = block_; variable
82 return temp;
scoped_cffiledescriptorref.h 61 CFFileDescriptorRef temp = fdref_; variable
63 return temp;
scoped_ioobject.h 54 IOT temp = that.object_; local
56 object_ = temp;
60 IOT temp = object_; variable
62 return temp;
scoped_launch_data.h 61 launch_data_t temp = object_; variable
63 return temp;
scoped_typeref.h 112 T temp = that.object_; local
114 object_ = temp;
121 T temp = object_; variable
123 return temp;
  /external/chromium_org/cc/resources/
resource_update_queue.cc 30 std::deque<ResourceUpdate> temp; local
31 entry_queue->swap(temp);
32 while (temp.size()) {
33 ResourceUpdate upload = temp.front();
34 temp.pop_front();
  /external/chromium_org/components/nacl/loader/
nacl_validation_query.cc 107 // Calculate the digest into a temp buffer. It is likely safe to calculate it
110 unsigned char temp[kDigestLength]; local
111 CHECK(hasher_.Sign(base::StringPiece(buffer_, buffer_length_), temp,
113 memcpy(buffer_, temp, kDigestLength);
  /external/chromium_org/extensions/common/permissions/
usb_device_permission_data.cc 68 int temp; local
69 if (!dict_value->GetInteger(kVendorIdKey, &temp))
71 if (temp < 0 || temp > kuint16max)
73 vendor_id_ = temp;
75 if (!dict_value->GetInteger(kProductIdKey, &temp))
77 if (temp < 0 || temp > kuint16max)
79 product_id_ = temp;
81 if (!dict_value->GetInteger(kInterfaceIdKey, &temp))
    [all...]
  /external/chromium_org/media/base/
bit_reader_core.h 57 uint64 temp; local
58 bool ret = ReadBitsInternal(num_bits, &temp);
59 *out = static_cast<T>(temp);
  /external/chromium_org/mojo/embedder/
scoped_platform_handle.h 34 PlatformHandle temp = handle_; local
36 other.handle_ = temp;
  /external/chromium_org/ppapi/c/
pp_completion_callback.h 280 struct PP_CompletionCallback temp = *cc; local
282 PP_RunCompletionCallback(&temp, res);
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
DenormalDisabler.h 97 int temp = a; local
98 asm volatile("ldmxcsr %0" : : "m" (temp));
  /external/chromium_org/third_party/icu/source/test/perf/strsrchperf/
strsrchperf.cpp 42 UChar* temp = (UChar*)malloc(sizeof(UChar)*(pttrnLen));
44 temp[i] = src[start++];
46 pttrn = temp; /* store word in pttrn */
61 UChar* temp = (UChar*)malloc(sizeof(UChar)*(pttrnLen)); local
63 temp[i] = src[start++];
65 pttrn = temp; /* store word in pttrn */
  /external/chromium_org/third_party/icu/source/tools/genrb/
rbutil.c 74 char temp; local
106 temp = buffer[(length-1) - j];
108 buffer[j] = temp;
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
rdopt.h 31 int temp; local
33 temp = arr[i];
38 arr[j] = temp ;
54 int temp, tempi; local
56 temp = arr[i];
65 arr[j] = temp ;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_fog.c 98 GLfloat d, temp; local
107 temp = (end - z) * d;
108 return CLAMP(temp, 0.0F, 1.0F);
112 NEG_EXP( temp, d * z );
113 return temp;
117 NEG_EXP( temp, d * z * z );
118 return temp;
  /external/chromium_org/third_party/skia/include/utils/win/
SkTScopedComPtr.h 64 T* temp = this->fPtr; local
66 that.fPtr = temp;
70 T* temp = this->fPtr; local
72 return temp;
  /external/chromium_org/third_party/skia/src/gpu/gl/
SkGLContextHelper.cpp 38 const GrGLubyte* temp; local
46 SK_GL_RET(*this, temp, GetString(GR_GL_VERSION));
47 const char* versionStr = reinterpret_cast<const char*>(temp);

Completed in 550 milliseconds

1 2 3 4 56 7 8 91011>>