HomeSort by relevance Sort by last modified time
    Searched refs:index (Results 476 - 500 of 19608) sorted by null

<<11121314151617181920>>

  /external/skqp/src/pathops/
SkPathOpsRect.cpp 24 for (int index = 0; index < roots; ++index) {
25 double t = startT + (endT - startT) * tValues[index];
41 for (int index = 0; index < roots; ++index) {
42 double t = startT + (endT - startT) * tValues[index];
58 for (int index = 0; index < roots; ++index)
    [all...]
SkReduceOrder.cpp 56 int index, minX, maxX, minY, maxY; local
60 for (index = 1; index < 3; ++index) {
61 if (quad[minX].fX > quad[index].fX) {
62 minX = index;
64 if (quad[minY].fY > quad[index].fY) {
65 minY = index;
67 if (quad[maxX].fX < quad[index].fX) {
68 maxX = index;
189 int index, minX, maxX, minY, maxY; local
    [all...]
  /external/swiftshader/src/OpenGL/libGLESv2/
TransformFeedback.cpp 41 Buffer* TransformFeedback::getBuffer(GLuint index) const
43 return mBuffer[index].get();
51 GLuint TransformFeedback::getBufferName(GLuint index) const
53 return mBuffer[index].get().name();
56 int TransformFeedback::getOffset(GLuint index) const
58 return mBuffer[index].getOffset();
61 int TransformFeedback::getSize(GLuint index) const
63 return mBuffer[index].getSize();
116 void TransformFeedback::setBuffer(GLuint index, Buffer* buffer)
118 mBuffer[index].set(buffer)
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
batch_util.h 24 // Copies element into the index^th slice of parent (in the 0th dimension).
30 Status CopyElementToSlice(Tensor element, Tensor* parent, int64 index);
32 // Copies the index^th slice of parent (in the 0th dimension) into element.
33 Status CopySliceToElement(const Tensor& parent, Tensor* element, int64 index);
43 int index);
  /external/v8/src/compiler/
bytecode-liveness-map.h 28 bool RegisterIsLive(int index) const {
29 DCHECK_GE(index, 0);
30 DCHECK_LT(index, bit_vector_.length() - 1);
31 return bit_vector_.Contains(index);
42 void MarkRegisterLive(int index) {
43 DCHECK_GE(index, 0);
44 DCHECK_LT(index, bit_vector_.length() - 1);
45 bit_vector_.Add(index);
48 void MarkRegisterDead(int index) {
49 DCHECK_GE(index, 0)
    [all...]
js-frame-specialization.cc 35 int index = OsrValueIndexOf(node->op()); local
37 if (index == Linkage::kOsrContextSpillSlotIndex) {
39 } else if (index >= parameters_count) {
40 value = handle(frame()->GetExpression(index - parameters_count), isolate());
42 // The OsrValue index 0 is the receiver.
44 handle(index ? frame()->GetParameter(index - 1) : frame()->receiver(),
60 int const index = ParameterIndexOf(node->op()); local
62 if (index == Linkage::kJSCallClosureParamIndex) {
63 // The Parameter index references the closure
    [all...]
  /external/v8/src/crankshaft/arm/
lithium-gap-resolver-arm.h 27 // Perform the move at the moves_ index in question (possibly requiring
29 void PerformMove(int index);
34 void BreakCycle(int index);
41 void EmitMove(int index);
  /external/v8/src/crankshaft/mips/
lithium-gap-resolver-mips.h 27 // Perform the move at the moves_ index in question (possibly requiring
29 void PerformMove(int index);
34 void BreakCycle(int index);
41 void EmitMove(int index);
  /external/v8/src/crankshaft/mips64/
lithium-gap-resolver-mips64.h 27 // Perform the move at the moves_ index in question (possibly requiring
29 void PerformMove(int index);
34 void BreakCycle(int index);
41 void EmitMove(int index);
  /external/v8/src/crankshaft/ppc/
lithium-gap-resolver-ppc.h 27 // Perform the move at the moves_ index in question (possibly requiring
29 void PerformMove(int index);
34 void BreakCycle(int index);
41 void EmitMove(int index);
  /external/v8/src/crankshaft/s390/
lithium-gap-resolver-s390.h 27 // Perform the move at the moves_ index in question (possibly requiring
29 void PerformMove(int index);
34 void BreakCycle(int index);
41 void EmitMove(int index);
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
simple_lsf_quant.c 30 int16_t *index, /* (o) quantization index */
37 WebRtcIlbcfix_SplitVq( lsfdeq, index, lsf,
42 WebRtcIlbcfix_SplitVq( lsfdeq + LPC_FILTERORDER, index + LSF_NSPLIT,
  /external/webrtc/webrtc/modules/audio_processing/vad/
vad_circular_buffer.h 48 // Get previous values. |index = 0| corresponds to the most recent
49 // insertion. |index = 1| is the one before the most recent insertion, and
51 int Get(int index, double* value) const;
52 // Set a given position to |value|. |index| is interpreted as above.
53 int Set(int index, double value);
57 // Convert an index with the interpretation as get() method to the
58 // corresponding linear index.
59 int ConvertToLinearIndex(int* index) const;
  /external/webrtc/webrtc/modules/video_capture/ios/
device_info_ios_objc.h 20 + (AVCaptureDevice*)captureDeviceForIndex:(int)index;
22 + (NSString*)deviceNameForIndex:(int)index;
23 + (NSString*)deviceUniqueIdForIndex:(int)index;
  /frameworks/base/media/java/android/media/
AudioGainConfig.java 35 AudioGainConfig(int index, AudioGain gain, int mode, int channelMask,
37 mIndex = index;
46 * get the index of the parent gain.
49 int index() { method in class:AudioGainConfig
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
FrameValues.java 61 * Returns the value at the specified index.
63 * In case the value is null or not an array, the index must be 0, and the value itself is
66 * @param index The index to access.
67 * @return The value at that index.
69 public Object getValueAtIndex(int index) {
72 if (index != 0) {
73 throw new ArrayIndexOutOfBoundsException(index);
78 return Array.get(value, index);
83 * Returns the value as a FrameValue at the specified index
    [all...]
  /frameworks/base/tools/split-select/
RuleGenerator.h 31 static android::sp<Rule> generate(const android::SortedVector<SplitDescription>& group, size_t index);
33 static android::sp<Rule> generateAbi(const android::Vector<abi::Variant>& allVariants, size_t index);
34 static android::sp<Rule> generateDensity(const android::Vector<int>& allDensities, size_t index);
  /frameworks/support/persistence/db/src/main/java/androidx/sqlite/db/
SimpleSQLiteQuery.java 82 private static void bind(SupportSQLiteProgram statement, int index, Object arg) {
85 statement.bindNull(index);
87 statement.bindBlob(index, (byte[]) arg);
89 statement.bindDouble(index, (Float) arg);
91 statement.bindDouble(index, (Double) arg);
93 statement.bindLong(index, (Long) arg);
95 statement.bindLong(index, (Integer) arg);
97 statement.bindLong(index, (Short) arg);
99 statement.bindLong(index, (Byte) arg);
101 statement.bindString(index, (String) arg)
    [all...]
  /platform_testing/libraries/app-helpers/interfaces/auto/src/android/platform/helpers/
IAutoSettingHelper.java 92 * Checks if the toggle switch for the given index is checked.
93 * @param index of toggle switch.
94 * index should be passed as 0 if only one toggle switch is present on screen.
96 boolean isToggleSwitchChecked(int index);
101 * Clicks the toggle switch for the given index
102 * @param index of toggle switch.
103 * index should be passed as 0 if only one toggle switch is present on screen.
105 void clickToggleSwitch(int index);
126 * changes setting level of seekbar for the given index.
127 * @param index of seekbar. should be passed as 0 if only one seekbar is present on screen
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue7150.go 7 // issue 7150: array index out of bounds error off by one
12 _ = [0]int{-1: 50} // ERROR "index must be non-negative integer constant"
13 _ = [0]int{0: 0} // ERROR "index 0 out of bounds \[0:0\]"
14 _ = [0]int{5: 25} // ERROR "index 5 out of bounds \[0:0\]"
15 _ = [10]int{2: 10, 15: 30} // ERROR "index 15 out of bounds \[0:10\]"
16 _ = [10]int{5: 5, 1: 1, 12: 12} // ERROR "index 12 out of bounds \[0:10\]"
  /prebuilts/go/linux-x86/test/fixedbugs/
issue7150.go 7 // issue 7150: array index out of bounds error off by one
12 _ = [0]int{-1: 50} // ERROR "index must be non-negative integer constant"
13 _ = [0]int{0: 0} // ERROR "index 0 out of bounds \[0:0\]"
14 _ = [0]int{5: 25} // ERROR "index 5 out of bounds \[0:0\]"
15 _ = [10]int{2: 10, 15: 30} // ERROR "index 15 out of bounds \[0:10\]"
16 _ = [10]int{5: 5, 1: 1, 12: 12} // ERROR "index 12 out of bounds \[0:10\]"
  /system/chre/core/include/chre/core/
request_multiplexer.h 59 * @param index A non-null pointer to an index that is populated with the
68 bool addRequest(const RequestType& request, size_t *index,
75 * @param index The index of the request to be updated. This param must fall
83 void updateRequest(size_t index, const RequestType& request,
90 * @param index The index of the request to be removed. This index must fall
97 void removeRequest(size_t index, bool *maximalRequestChanged)
    [all...]
  /system/chre/util/include/chre/util/
fixed_size_blocking_queue.h 66 * Removes an element from the array queue given an index. It returns false if
67 * the index is out of bounds of the underlying array queue.
69 * @param index Requested index in range [0,size()-1]
72 bool remove(size_t index);
75 * Obtains an element of the array queue given an index. It is illegal to
76 * index this array queue out of bounds and the user of the API must check the
80 * @param index Requested index in range [0,size()-1]
83 ElementType& operator[](size_t index);
    [all...]
  /system/nvram/core/include/nvram/core/
storage.h 44 // Load NVRAM space data for a given index from storage.
55 Status LoadSpace(uint32_t index, Blob* blob);
57 // Write the NVRAM space data for the given index to storage.
74 Status StoreSpace(uint32_t index, const Blob& blob);
76 // Delete the stored NVRAM space data for the given index.
79 // space data associated with index. A subsequent read operation for the same
80 // index should return Status::kNotFound.
91 Status DeleteSpace(uint32_t index);
  /system/nvram/hal/
memory_storage.cpp 63 uint32_t index; member in struct:nvram::storage::__anon3674::__anon3675
67 // Find the storage slot in |g_spaces| that corresponds to |index|. Returns
69 StorageSlot* FindSpaceSlot(uint32_t index) {
71 if (g_spaces[i].slot.present() && g_spaces[i].index == index) {
89 Status LoadSpace(uint32_t index, Blob* blob) {
90 StorageSlot* slot = FindSpaceSlot(index);
94 Status StoreSpace(uint32_t index, const Blob& blob) {
95 StorageSlot* slot = FindSpaceSlot(index);
103 g_spaces[i].index = index
    [all...]

Completed in 471 milliseconds

<<11121314151617181920>>