HomeSort by relevance Sort by last modified time
    Searched defs:first (Results 251 - 275 of 3938) sorted by null

<<11121314151617181920>>

  /external/mesa3d/src/gallium/drivers/r600/sb/
sb_dump.cpp 304 bool first = true; local
307 if (!first)
310 first = false;
  /external/mesa3d/src/gallium/drivers/svga/
svga_tgsi_decl_sm30.c 571 unsigned first = decl->Range.First; local
575 for( idx = first; idx <= last; idx++ ) {
603 unsigned unit = decl->Range.First;
604 assert(decl->Range.First == decl->Range.Last);
  /external/mesa3d/src/gallium/state_trackers/wgl/
stw_ext_pbuffer.c 76 static boolean first = TRUE; local
168 if (first) {
178 first = FALSE;
  /external/oauth/core/src/main/java/net/oauth/
ConsumerProperties.java 82 OAuthConsumer first = pool.get(name); local
83 if (first == null) {
90 consumer = first;
  /external/parameter-framework/upstream/remote-processor/
Message.cpp 64 auto first = MAKE_ARRAY_ITERATOR(static_cast<const uint8_t *>(pvData), size); local
65 auto last = first + size;
68 std::copy(first, last, destFirst);
77 auto first = begin(mData) + _uiIndex; local
78 auto last = first + size;
81 std::copy(first, last, destFirst);
146 // First send sync word
190 // First read sync word
  /external/parameter-framework/upstream/utility/test/
utility.cpp 61 const auto &first = begin(test.input); variable
63 REQUIRE(join(first, last, test.binaryOpt, test.empty) == test.result);
64 REQUIRE(join<int>(first, last, test.binaryOpt) == test.resultNoEmpty);
  /external/pdfium/fxjs/xfa/
cjx_source.cpp 21 {"first", first_static},
55 CJS_Return CJX_Source::first(CJS_V8* runtime, function in class:CJX_Source
  /external/python/cpython2/Doc/includes/
noddy2.c 6 PyObject *first; /* first name */ member in struct:__anon32490
14 Py_XDECREF(self->first);
26 self->first = PyString_FromString("");
27 if (self->first == NULL)
49 PyObject *first=NULL, *last=NULL, *tmp; local
51 static char *kwlist[] = {"first", "last", "number", NULL};
54 &first, &last,
58 if (first) {
59 tmp = self->first;
    [all...]
noddy3.c 6 PyObject *first; member in struct:__anon32491
14 Py_XDECREF(self->first);
26 self->first = PyString_FromString("");
27 if (self->first == NULL)
49 PyObject *first=NULL, *last=NULL, *tmp; local
51 static char *kwlist[] = {"first", "last", "number", NULL};
54 &first, &last,
58 if (first) {
59 tmp = self->first;
60 Py_INCREF(first);
    [all...]
noddy4.c 6 PyObject *first; member in struct:__anon32492
16 if (self->first) {
17 vret = visit(self->first, arg);
35 tmp = self->first;
36 self->first = NULL;
60 self->first = PyString_FromString("");
61 if (self->first == NULL)
83 PyObject *first=NULL, *last=NULL, *tmp; local
85 static char *kwlist[] = {"first", "last", "number", NULL};
88 &first, &last,
    [all...]
  /external/python/cpython2/Lib/
shelve.py 179 This adds methods first(), next(), previous(), last() and
207 def first(self): member in class:BsdDbShelf
208 (key, value) = self.dict.first()
  /external/python/cpython2/Lib/test/
test_generators.py 84 This may be surprising at first:
336 ... first, rest = x[0], x[1:]
337 ... # A combination does or doesn't contain first.
340 ... c.insert(0, first)
342 ... # If it doesn't contain first, it's a k comb of rest.
529 in increasing order, where i,j,k >= 0. Trickier than it may look at first!
633 ... g.next() # throw first away
656 - produce at least a first element without presupposing the existence of
714 ... fibTail.next() # throw first away
1175 # Generate the first move
1176 def first(): function in function:Knights.__init__
    [all...]
  /external/python/cpython2/Modules/zlib/
gzwrite.c 78 /* allocate memory if this is the first time through */
137 int first; local
146 first = 1;
150 if (first) {
152 first = 0;
195 /* allocate memory if this is the first time through */
  /external/python/cpython3/Doc/includes/
noddy3.c 6 PyObject *first; member in struct:__anon33044
14 Py_XDECREF(self->first);
26 self->first = PyUnicode_FromString("");
27 if (self->first == NULL) {
47 PyObject *first=NULL, *last=NULL, *tmp; local
49 static char *kwlist[] = {"first", "last", "number", NULL};
52 &first, &last,
56 if (first) {
57 tmp = self->first;
58 Py_INCREF(first);
    [all...]
  /external/python/cpython3/Lib/
shelve.py 178 This adds methods first(), next(), previous(), last() and
207 def first(self): member in class:BsdDbShelf
208 (key, value) = self.dict.first()
  /external/python/cpython3/Modules/zlib/
gzwrite.c 81 /* allocate memory if this is the first time through */
149 int first; local
158 first = 1;
162 if (first) {
164 first = 0;
189 /* allocate memory if this is the first time through */
436 /* update buffer and position, compress first half if past that */
535 /* update buffer and position, compress first half if past that */
  /external/selinux/python/sepolgen/src/sepolgen/
util.py 71 def first(s, sorted=False): function
73 Return the first element of a set.
75 It sometimes useful to return the first element from a set but,
77 will return the first element from a set. If sorted is True, then
78 the set will first be sorted (making this an expensive operation).
171 def cmp(first, second):
172 return (first > second) - (second > first)
  /external/skia/src/core/
SkRecordPattern.h 16 // First, some matchers. These match a single command in the SkRecord,
84 // Matches if any of First or Rest... does. Stores nothing.
85 template <typename First, typename... Rest>
88 bool operator()(T* ptr) { return First()(ptr) || Or<Rest...>()(ptr); }
90 template <typename First>
91 struct Or<First> {
93 bool operator()(T* ptr) { return First()(ptr); }
108 // - first, second, third, ... return the data stored by their respective matchers in the pattern.
118 template <typename First, typename... Rest>
119 class Pattern<First, Rest...>
141 template <typename T> T* first() { return fFirst.get(); } function in class:SkRecords::Pattern
    [all...]
  /external/skia/src/pathops/
SkPathOpsQuad.h 16 const SkDQuad& first() const { return (const SkDQuad&) pts[0]; } function in struct:SkDQuadPair
  /external/skqp/src/core/
SkRecordPattern.h 16 // First, some matchers. These match a single command in the SkRecord,
84 // Matches if any of First or Rest... does. Stores nothing.
85 template <typename First, typename... Rest>
88 bool operator()(T* ptr) { return First()(ptr) || Or<Rest...>()(ptr); }
90 template <typename First>
91 struct Or<First> {
93 bool operator()(T* ptr) { return First()(ptr); }
108 // - first, second, third, ... return the data stored by their respective matchers in the pattern.
118 template <typename First, typename... Rest>
119 class Pattern<First, Rest...>
141 template <typename T> T* first() { return fFirst.get(); } function in class:SkRecords::Pattern
    [all...]
  /external/skqp/src/pathops/
SkPathOpsQuad.h 16 const SkDQuad& first() const { return (const SkDQuad&) pts[0]; } function in struct:SkDQuadPair
  /external/strace/
desc.c 149 int first = 1; local
160 if (first) {
168 first = 0;
  /external/tensorflow/tensorflow/contrib/boosted_trees/lib/learner/common/stats/
gradient-stats.h 118 // GradientStats holds first and second order gradient stats.
123 GradientStats(float g, float h) : first(g), second(h) {}
125 GradientStats(const Tensor& g, const Tensor& h) : first(g), second(h) {}
128 : first(g.Slice(example_index, example_index + 1)),
132 first += other.first;
138 first *= value;
144 first -= other.first;
149 bool IsZero() const { return first.IsZero() && second.IsZero();
162 TensorStat first; member in struct:tensorflow::boosted_trees::learner::stochastic::GradientStats
    [all...]
  /external/tensorflow/tensorflow/core/framework/
tensor_slice.cc 42 starts_.push_back(e.first);
126 bool first = true; local
128 if (!first) {
137 first = false;
144 // First, if two slices have different ranks, they obviously don't overlap
  /external/tensorflow/tensorflow/core/graph/
mkl_layout_pass_test.cc 219 // We will first rewrite Conv2D to _MklConv2D, and then merge _MklConv2D
1878 bool first = true; local
    [all...]

Completed in 878 milliseconds

<<11121314151617181920>>