Searched refs:current (Results 151 - 175 of 1571) sorted by relevance

1234567891011>>

/external/iputils/
H A Dtftpsubs.c40 server. Written originally with multiple buffers in mind, but current
72 static int current; /* index of buffer in use */ variable
90 current = 0;
97 /* Have emptied current buffer by sending to net and getting ack.
104 bfs[current].counter = BF_FREE; /* free old one */
105 current = !current; /* "incr" current */
107 b = &bfs[current]; /* look at new buffer */
169 bfs[current]
[all...]
/external/libxcam/modules/ocl/
H A Dpriority_buffer_queue.cpp49 SmartPtr<PriorityBuffer> &current = *iter; local
50 XCAM_ASSERT (current.ptr ());
51 if (buf->priority_greater_than (*current.ptr()))
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dtimestamp.cpp57 timestamp::current::current(command_queue &q) : function in class:timestamp::current
62 timestamp::current::operator()() const {
/external/ImageMagick/Magick++/lib/
H A DOptions.cpp788 current=_drawInfo->affine; local
800 _drawInfo->affine.sx=current.sx*affine.sx+current.ry*affine.rx;
801 _drawInfo->affine.rx=current.rx*affine.sx+current.sy*affine.rx;
802 _drawInfo->affine.ry=current.sx*affine.ry+current.ry*affine.sy;
803 _drawInfo->affine.sy=current.rx*affine.ry+current.sy*affine.sy;
804 _drawInfo->affine.tx=current
822 current=_drawInfo->affine; local
848 current=_drawInfo->affine; local
872 current=_drawInfo->affine; local
897 current=_drawInfo->affine; local
[all...]
/external/swiftshader/src/Shader/
H A DPixelRoutine.cpp861 void PixelRoutine::blendFactor(Vector4s &blendFactor, const Vector4s &current, const Vector4s &pixel, BlendFactor blendFactorActive) argument
872 blendFactor.x = current.x;
873 blendFactor.y = current.y;
874 blendFactor.z = current.z;
877 blendFactor.x = Short4(0xFFFFu) - current.x;
878 blendFactor.y = Short4(0xFFFFu) - current.y;
879 blendFactor.z = Short4(0xFFFFu) - current.z;
892 blendFactor.x = current.w;
893 blendFactor.y = current.w;
894 blendFactor.z = current
942 blendFactorAlpha(Vector4s &blendFactor, const Vector4s &current, const Vector4s &pixel, BlendFactor blendFactorAlphaActive) argument
1170 alphaBlend(int index, Pointer<Byte> &cBuffer, Vector4s &current, Int &x) argument
1289 logicOperation(int index, Pointer<Byte> &cBuffer, Vector4s &current, Int &x) argument
1384 writeColor(int index, Pointer<Byte> &cBuffer, Int &x, Vector4s &current, Int &sMask, Int &zMask, Int &cMask) argument
[all...]
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAtomicDouble.java80 * Gets the current value.
82 * @return the current value
123 * if the current value is <a href="#bitEquals">bitwise equal</a>
139 * if the current value is <a href="#bitEquals">bitwise equal</a>
159 * Atomically adds the given value to the current value.
166 long current = value;
167 double currentVal = longBitsToDouble(current);
170 if (updater.compareAndSet(this, current, next)) {
177 * Atomically adds the given value to the current value.
184 long current
[all...]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/
H A DTextElementIteratorsFactory.java36 private Iterator<E> current; field in class:TextElementIteratorsFactory.CascadingIterator
41 public CascadingIterator(Iterator<E> current, Provider<E> nextProvider) { argument
43 this.current = current;
49 if (current.hasNext()) {
60 if (current.hasNext()) {
63 return current.next();
76 current.remove();
/external/libcups/filter/
H A Derror.c30 *current, /* Current position in buffer */ member in struct:_cups_raster_error_s
73 if (bytes > (ssize_t)(buf->end - buf->current))
98 buf->current = temp + (buf->current - buf->start);
103 * Append the message to the end of the current string...
106 memcpy(buf->current, s, (size_t)bytes);
107 buf->current += bytes - 1;
122 buf->current = buf->start;
144 if (buf->current == buf->start)
/external/llvm/test/MC/Mips/mips32r2/
H A Dinvalid.s1 # Instructions that are valid for the current ISA but should be rejected by the assembler (e.g.
/external/llvm/test/MC/Mips/mips32r3/
H A Dinvalid.s1 # Instructions that are valid for the current ISA but should be rejected by the assembler (e.g.
/external/llvm/test/MC/Mips/mips32r5/
H A Dinvalid.s1 # Instructions that are valid for the current ISA but should be rejected by the assembler (e.g.
/external/llvm/test/MC/Mips/mips64r2/
H A Dinvalid.s1 # Instructions that are valid for the current ISA but should be rejected by the assembler (e.g.
/external/llvm/test/MC/Mips/mips64r3/
H A Dinvalid.s1 # Instructions that are valid for the current ISA but should be rejected by the assembler (e.g.
/external/llvm/test/MC/Mips/mips64r5/
H A Dinvalid.s1 # Instructions that are valid for the current ISA but should be rejected by the assembler (e.g.
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_create/
H A D1-5.c109 void *current; local
111 long stacksize = sysconf(_SC_THREAD_STACK_MIN); /* make sure we touch the current stack memory */
118 current = overflow(&current);
133 if (((long)arg) < ((long)&current)) {
135 if (((long)&current) - ((long)arg) >= stacksize) {
138 arg, &current);
143 if (((long)arg) - ((long)&current) >= stacksize) {
146 arg, &current);
/external/libmojo/third_party/jinja2/
H A Dparser.py46 line number or last line number as well as the current name and
50 lineno = self.stream.current.lineno
100 if self.stream.current.type in ('variable_end', 'block_end', 'rparen'):
103 return self.stream.current.test_any(extra_end_rules)
115 token = self.stream.current
122 return getattr(self, 'parse_' + self.stream.current.value)()
145 current token is a colon and skips it if there is one. Then it checks
161 if self.stream.current.type == 'eof':
204 new_node = nodes.If(lineno=self.stream.current.lineno)
224 if self.stream.current
[all...]
/external/v8/src/heap/
H A Dpage-parallel-job.h154 Item* current = items_; variable
157 current = current->next;
160 if (current->state.TrySetValue(kAvailable, kProcessing)) {
162 heap_, data_, current->chunk, current->data);
163 current->state.SetValue(success ? kFinished : kFailed);
165 current = current->next;
167 if (current
[all...]
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_state_static.c107 i915->current.cbuf_bo = tex->buffer;
108 i915->current.cbuf_flags = BUF_3D_ID_COLOR_BACK |
117 i915->current.cbuf_bo = NULL;
132 i915->current.depth_bo = tex->buffer;
133 i915->current.depth_flags = BUF_3D_ID_DEPTH |
137 i915->current.depth_bo = NULL;
144 if (i915->current.draw_offset != draw_offset) {
145 i915->current.draw_offset = draw_offset;
149 if (i915->current.draw_size != draw_size) {
150 i915->current
[all...]
/external/v8/src/crankshaft/
H A Dhydrogen-infer-representation.cc11 void HInferRepresentationPhase::AddToWorklist(HValue* current) { argument
12 if (current->representation().IsTagged()) return;
13 if (!current->CheckFlag(HValue::kFlexibleRepresentation)) return;
14 if (in_worklist_.Contains(current->id())) return;
15 worklist_.Add(current, zone());
16 in_worklist_.Add(current->id());
125 HInstruction* current = it.Current(); local
126 AddToWorklist(current);
132 HValue* current = worklist_.RemoveLast(); local
133 current
149 HInstruction* current = it.Current(); local
[all...]
/external/skia/src/pathops/
H A DSkPathOpsOp.cpp106 SkOpSegment* current = span->segment(); local
111 if (current->activeOp(start, end, xorMask, xorOpMask, op)) {
113 if (!unsortable && current->done()) {
116 SkASSERT(unsortable || !current->done());
119 SkOpSegment* next = current->findNextOp(&chase, &nextStart, &nextEnd,
123 && current->verb() != SkPath::kLine_Verb
125 if (!current->addCurveTo(start, end, simple)) {
135 SkDebugf("%s current id=%d from=(%1.9g,%1.9g) to=(%1.9g,%1.9g)\n", __FUNCTION__,
136 current->debugID(), start->pt().fX, start->pt().fY,
139 if (!current
279 SkOpContour* current = contourList; local
[all...]
/external/skqp/src/pathops/
H A DSkPathOpsOp.cpp106 SkOpSegment* current = span->segment(); local
111 if (current->activeOp(start, end, xorMask, xorOpMask, op)) {
113 if (!unsortable && current->done()) {
116 SkASSERT(unsortable || !current->done());
119 SkOpSegment* next = current->findNextOp(&chase, &nextStart, &nextEnd,
123 && current->verb() != SkPath::kLine_Verb
125 if (!current->addCurveTo(start, end, simple)) {
135 SkDebugf("%s current id=%d from=(%1.9g,%1.9g) to=(%1.9g,%1.9g)\n", __FUNCTION__,
136 current->debugID(), start->pt().fX, start->pt().fY,
139 if (!current
279 SkOpContour* current = contourList; local
[all...]
/external/apache-http/src/org/apache/http/message/
H A DBasicHeaderIterator.java149 final int current = this.currentIndex;
150 if (current < 0) {
154 this.currentIndex = findNext(current);
156 return this.allHeaders[current];
/external/apache-xml/src/main/java/org/apache/xalan/extensions/
H A DObjectFactory.java84 // (cl == null) iff current ClassLoader == null
86 // Thus Class.forName(String) will use the current
94 // Fall back to current classloader
95 ClassLoader current = ObjectFactory.class.getClassLoader();
96 if (current == null) {
98 } else if (cl != current) {
99 cl = current;
/external/glide/library/src/main/java/com/bumptech/glide/request/animation/
H A DGlideAnimation.java30 * Returns the current drawable being displayed in the view, or null if no such drawable exists (or one cannot
36 * Sets the current drawable (usually an animated drawable) to display in the wrapped view.
47 * @param current The new resource that will be displayed in the view.
52 * needs to manually set the current resource on the view.
54 boolean animate(R current, ViewAdapter adapter); argument
/external/libchrome/base/
H A Dguid.cc28 char current = guid[i]; local
30 if (current != '-')
33 if ((strict && !IsLowerHexDigit(current)) || !IsHexDigit(current))

Completed in 1869 milliseconds

1234567891011>>